progress / #22
- userId
-
Claudie Hagenes @claudie_hagenes
- courseId
- courses/50
- lessonId
- lessons/340
- state
- not_started
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#22
#22
Small
progress/22 Related
curl -sS \
"https://example-data.com/api/v1/progress/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/22"
);
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/22"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/22"
)
progres = res.json() {
"id": 22,
"userId": 232,
"courseId": 50,
"lessonId": 340,
"state": "not_started",
"completedAt": null,
"updatedAt": "2025-11-24T09:22:10.986Z",
"createdAt": "2025-11-24T09:22:10.986Z"
}