todo-lists / #196
- userId
-
Oliver Mitchell @oliver_mitchell50
- name
- Work Tasks
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Work Tasks
#196
Small
todo-lists/196 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/196" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/196"
);
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/196"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/196"
)
todo_list = res.json() {
"id": 196,
"userId": 194,
"name": "Work Tasks",
"isArchived": false,
"createdAt": "2025-06-21T06:17:29.719Z",
"updatedAt": "2025-09-02T21:12:01.352Z"
}