progress / #116
- userId
-
Cyril Frami @cyril_frami88
- courseId
- courses/78
- lessonId
- —
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#116
#116
Small
progress/116 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/116" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/116"
);
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/116"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/116"
)
progres = res.json() {
"id": 116,
"userId": 182,
"courseId": 78,
"lessonId": null,
"state": "completed",
"completedAt": "2025-12-05T11:27:15.620Z",
"updatedAt": "2025-12-05T11:27:15.620Z",
"createdAt": "2025-08-07T04:37:26.743Z"
}