progress / #205
- userId
-
Oma Franecki-Johnson @oma.franecki-johnson
- courseId
- courses/29
- lessonId
- lessons/205
- state
- not_started
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#205
#205
Small
progress/205 Related
curl -sS \
"https://example-data.com/api/v1/progress/205" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/205"
);
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/205"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/205"
)
progres = res.json() {
"id": 205,
"userId": 242,
"courseId": 29,
"lessonId": 205,
"state": "not_started",
"completedAt": null,
"updatedAt": "2025-12-24T20:12:57.244Z",
"createdAt": "2025-12-24T20:12:57.244Z"
}