todo-lists / #161
- userId
-
Brock Hackett @brock.hackett
- name
- Learning Objectives
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Learning Objectives
#161
Small
todo-lists/161 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/161" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/161"
);
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/161"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/161"
)
todo_list = res.json() {
"id": 161,
"userId": 161,
"name": "Learning Objectives",
"isArchived": false,
"createdAt": "2025-09-28T20:50:02.983Z",
"updatedAt": "2025-11-30T07:39:09.245Z"
}