progress / #231
- userId
-
Charity Crona @charity.crona12
- courseId
- courses/33
- lessonId
- lessons/225
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#231
#231
Small
progress/231 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/231" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/231"
);
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/231"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/231"
)
progres = res.json() {
"id": 231,
"userId": 100,
"courseId": 33,
"lessonId": 225,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2025-10-10T04:08:20.552Z",
"createdAt": "2025-09-29T16:10:18.789Z"
}