progress / #199
- userId
-
Tiara Wilderman @tiara_wilderman
- courseId
- courses/4
- lessonId
- lessons/30
- state
- not_started
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#199
#199
Small
progress/199 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/199" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/199"
);
const progress = await res.json();import type { Progress } from "https://example-data.com/types/progress.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/progress/199"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/199"
)
progres = res.json() {
"id": 199,
"userId": 66,
"courseId": 4,
"lessonId": 30,
"state": "not_started",
"completedAt": null,
"updatedAt": "2025-07-11T00:02:44.069Z",
"createdAt": "2025-07-11T00:02:44.069Z"
}