Document CI pipeline
- projectId
- projects/14
- assigneeUserId
- —
- title
- Document CI pipeline
- description
- Illo coniecto animi delectatio vaco.
- status
- todo
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #97
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/97" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/97" ); 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/97"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/97"
)
task = res.json() Response
{
"id": 97,
"projectId": 14,
"assigneeUserId": null,
"title": "Document CI pipeline",
"description": "Illo coniecto animi delectatio vaco.",
"status": "todo",
"priority": "urgent",
"dueDate": null,
"createdAt": "2025-08-07T20:20:27.522Z",
"updatedAt": "2025-09-14T22:34:17.090Z"
}