todo-lists / #148
- userId
-
Rickie Sporer @rickie.sporer50
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Backlog
#148
Small
todo-lists/148 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/148" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/148"
);
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/148"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/148"
)
todo_list = res.json() {
"id": 148,
"userId": 149,
"name": "Backlog",
"isArchived": false,
"createdAt": "2025-05-25T03:18:29.212Z",
"updatedAt": "2025-08-24T16:17:01.074Z"
}