todo-lists / #88
- userId
-
Pinkie Denesik @pinkie_denesik32
- name
- Learning Objectives
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Learning Objectives
#88
Small
todo-lists/88 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/88" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/88"
);
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/88"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/88"
)
todo_list = res.json() {
"id": 88,
"userId": 88,
"name": "Learning Objectives",
"isArchived": false,
"createdAt": "2025-10-13T12:05:03.625Z",
"updatedAt": "2025-11-04T16:54:23.694Z"
}