progress / #197
- userId
-
April Kihn @april.kihn55
- courseId
- courses/62
- lessonId
- lessons/419
- state
- not_started
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#197
#197
Small
progress/197 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/197" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/197"
);
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/197"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/197"
)
progres = res.json() {
"id": 197,
"userId": 137,
"courseId": 62,
"lessonId": 419,
"state": "not_started",
"completedAt": null,
"updatedAt": "2026-05-04T12:14:31.267Z",
"createdAt": "2026-05-04T12:14:31.267Z"
}