todo-lists / #42
- userId
-
Edward Jacobson @edward_jacobson38
- name
- Meeting Notes
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Meeting Notes
#42
Small
todo-lists/42 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/42" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/42"
);
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/42"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/42"
)
todo_list = res.json() {
"id": 42,
"userId": 38,
"name": "Meeting Notes",
"isArchived": false,
"createdAt": "2025-07-02T02:00:43.105Z",
"updatedAt": "2025-11-25T06:33:52.307Z"
}