progress / #137
- userId
-
Adrain Kris-Hermiston @adrain.kris-hermiston
- courseId
- courses/75
- lessonId
- lessons/509
- state
- completed
- completedAt
- updatedAt
- createdAt
Component variants
Medium
#137
#137
Small
progress/137 Related
curl -sS \
"https://example-data.com/api/v1/progress/137" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/progress/137"
);
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/137"
);
const progress = (await res.json()) as Progress;import requests
res = requests.get(
"https://example-data.com/api/v1/progress/137"
)
progres = res.json() {
"id": 137,
"userId": 206,
"courseId": 75,
"lessonId": 509,
"state": "completed",
"completedAt": "2025-07-16T18:03:45.366Z",
"updatedAt": "2025-07-16T18:03:45.366Z",
"createdAt": "2025-05-06T20:03:03.962Z"
}