Document pagination
- projectId
- projects/49
- assigneeUserId
-
Edward Jacobson @edward_jacobson38
- title
- Document pagination
- description
- Sortitus annus in.
- status
- blocked
- priority
- normal
- dueDate
- 2026-06-07
- createdAt
- updatedAt
Overview
tasks / #404
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/404" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/404" ); const task = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tasks.d.ts https://example-data.com/types/tasks.d.ts
import type { Task } from "./types/tasks";
const res = await fetch(
"https://example-data.com/api/v1/tasks/404"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/404"
)
task = res.json() Response
{
"id": 404,
"projectId": 49,
"assigneeUserId": 38,
"title": "Document pagination",
"description": "Sortitus annus in.",
"status": "blocked",
"priority": "normal",
"dueDate": "2026-06-07",
"createdAt": "2026-02-11T23:08:15.816Z",
"updatedAt": "2026-03-10T03:42:53.406Z"
}