Document pagination
- projectId
- projects/48
- assigneeUserId
-
Chyna Kozey @chyna_kozey80
- title
- Document pagination
- description
- Vapulus admitto aspicio.
- status
- blocked
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #397
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/397" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/397" ); 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/397"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/397"
)
task = res.json() Response
{
"id": 397,
"projectId": 48,
"assigneeUserId": 140,
"title": "Document pagination",
"description": "Vapulus admitto aspicio.",
"status": "blocked",
"priority": "urgent",
"dueDate": null,
"createdAt": "2025-12-17T03:10:53.881Z",
"updatedAt": "2026-03-25T15:13:53.971Z"
}