todo-lists / #92
- userId
-
Filiberto Fay @filiberto.fay59
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Backlog
#92
Small
todo-lists/92 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/92" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/92"
);
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/92"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/92"
)
todo_list = res.json() {
"id": 92,
"userId": 92,
"name": "Backlog",
"isArchived": false,
"createdAt": "2025-08-09T06:39:04.195Z",
"updatedAt": "2026-02-19T02:53:39.600Z"
}