todo-lists / #57
- userId
-
Green Kozey @green_kozey22
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Backlog
#57
Small
todo-lists/57 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/57" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/57"
);
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/57"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/57"
)
todo_list = res.json() {
"id": 57,
"userId": 49,
"name": "Backlog",
"isArchived": false,
"createdAt": "2025-08-04T18:55:06.435Z",
"updatedAt": "2026-02-23T15:19:13.715Z"
}