progress / #104
- userId
-
Virginie O'Connell @virginie.oconnell55
- courseId
- courses/67
- lessonId
- lessons/453
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#104
#104
Small
progress/104 Related
curl -sS \
"https://example-data.com/api/v1/progress/104" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/104"
);
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/104"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/104"
)
progres = res.json() {
"id": 104,
"userId": 70,
"courseId": 67,
"lessonId": 453,
"state": "completed",
"completedAt": "2026-05-16T15:42:47.633Z",
"updatedAt": "2026-05-16T15:42:47.633Z",
"createdAt": "2026-05-14T05:32:57.972Z"
}