progress / #66
- userId
-
Diana Murazik @diana.murazik31
- courseId
- courses/15
- lessonId
- —
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#66
#66
Small
progress/66 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/66" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/66"
);
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/66"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/66"
)
progres = res.json() {
"id": 66,
"userId": 125,
"courseId": 15,
"lessonId": null,
"state": "completed",
"completedAt": "2026-05-22T01:02:57.455Z",
"updatedAt": "2026-05-22T01:02:57.455Z",
"createdAt": "2026-05-21T01:02:57.455Z"
}