Update the tickets
- todoListId
- todo-lists/29
- title
- Update the tickets
- isDone
- true
- dueDate
- 2026-06-10
- completedAt
- createdAt
- updatedAt
Overview
todos / #364
Update the tickets
#364
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/364" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/364" ); const todo = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/todos.d.ts https://example-data.com/types/todos.d.ts
import type { Todo } from "./types/todos";
const res = await fetch(
"https://example-data.com/api/v1/todos/364"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/364"
)
todo = res.json() Response
{
"id": 364,
"todoListId": 29,
"title": "Update the tickets",
"isDone": true,
"dueDate": "2026-06-10",
"completedAt": "2025-10-17T02:37:41.171Z",
"createdAt": "2025-07-04T14:10:49.087Z",
"updatedAt": "2025-11-30T06:33:10.438Z"
}