progress / #216
- userId
-
Merl Jenkins @merl.jenkins6
- courseId
- courses/38
- lessonId
- —
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#216
#216
Small
progress/216 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/216" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/216"
);
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/216"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/216"
)
progres = res.json() {
"id": 216,
"userId": 60,
"courseId": 38,
"lessonId": null,
"state": "completed",
"completedAt": "2026-03-14T20:19:26.230Z",
"updatedAt": "2026-03-14T20:19:26.230Z",
"createdAt": "2025-08-11T09:47:48.846Z"
}