todo-lists / #197
- userId
-
Joseph Nitzsche @joseph_nitzsche
- name
- Meeting Notes
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Meeting Notes
#197
Small
todo-lists/197 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/197" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/197"
);
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/197"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/197"
)
todo_list = res.json() {
"id": 197,
"userId": 196,
"name": "Meeting Notes",
"isArchived": false,
"createdAt": "2025-10-27T04:19:03.947Z",
"updatedAt": "2025-11-18T16:37:36.020Z"
}