progress / #6
- userId
-
Adelia Roberts @adelia_roberts0
- courseId
- courses/52
- lessonId
- lessons/356
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Component variants
Medium
#6
#6
Small
progress/6 Related
References
curl -sS \
"https://example-data.com/api/v1/progress/6" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/6"
);
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/6"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/6"
)
progres = res.json() {
"id": 6,
"userId": 231,
"courseId": 52,
"lessonId": 356,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2025-08-28T23:19:42.568Z",
"createdAt": "2024-12-21T19:47:10.110Z"
}