progress / #178
- userId
-
Vincenza Zemlak-Collier @vincenza_zemlak-collier
- courseId
- courses/2
- lessonId
- lessons/13
- state
- not_started
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#178
#178
Small
progress/178 Related
curl -sS \
"https://example-data.com/api/v1/progress/178" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/178"
);
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/178"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/178"
)
progres = res.json() {
"id": 178,
"userId": 168,
"courseId": 2,
"lessonId": 13,
"state": "not_started",
"completedAt": null,
"updatedAt": "2025-12-24T04:08:09.368Z",
"createdAt": "2025-12-24T04:08:09.368Z"
}