todo-lists / #17
- userId
-
Zachariah Herzog @zachariah_herzog42
- name
- Meeting Notes
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Meeting Notes
#17
Small
todo-lists/17 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/17"
);
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/17"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/17"
)
todo_list = res.json() {
"id": 17,
"userId": 15,
"name": "Meeting Notes",
"isArchived": false,
"createdAt": "2025-10-23T06:22:30.515Z",
"updatedAt": "2026-04-20T11:36:49.991Z"
}