todo-lists / #204
- userId
-
Mathilde Ziemann-Nienow @mathilde.ziemann-nienow6
- name
- Meeting Notes
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Meeting Notes
#204
Small
todo-lists/204 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/204" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/204"
);
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/204"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/204"
)
todo_list = res.json() {
"id": 204,
"userId": 202,
"name": "Meeting Notes",
"isArchived": false,
"createdAt": "2025-08-30T01:30:21.560Z",
"updatedAt": "2025-11-18T01:15:44.576Z"
}