todo-lists / #157
- userId
-
Sandrine Osinski @sandrine.osinski
- name
- Learning Objectives
- isArchived
- true
- createdAt
- updatedAt
Component variants
Medium
Learning Objectives
#157
Small
todo-lists/157 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/157" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/157"
);
const todoList = await res.json();import type { TodoList } from "https://example-data.com/types/todo-lists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/todo-lists/157"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/157"
)
todo_list = res.json() {
"id": 157,
"userId": 157,
"name": "Learning Objectives",
"isArchived": true,
"createdAt": "2026-03-06T09:37:50.940Z",
"updatedAt": "2026-04-22T07:11:48.259Z"
}