progress / #39
- userId
-
Gerda Streich @gerda_streich
- courseId
- courses/34
- lessonId
- —
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#39
#39
Small
progress/39 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/39" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/39"
);
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/39"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/39"
)
progres = res.json() {
"id": 39,
"userId": 126,
"courseId": 34,
"lessonId": null,
"state": "completed",
"completedAt": "2026-05-01T17:41:29.763Z",
"updatedAt": "2026-05-01T17:41:29.763Z",
"createdAt": "2026-01-29T10:36:28.951Z"
}