progress / #128
- userId
-
Kenya Abshire @kenya.abshire
- courseId
- courses/51
- lessonId
- lessons/347
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#128
#128
Small
progress/128 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/128" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/128"
);
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/128"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/128"
)
progres = res.json() {
"id": 128,
"userId": 18,
"courseId": 51,
"lessonId": 347,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2026-01-28T05:45:00.002Z",
"createdAt": "2025-10-31T10:33:43.526Z"
}