Add CI pipeline
- projectId
- projects/77
- assigneeUserId
- —
- title
- Add CI pipeline
- description
- Amicitia celer deserunt stabilis tutamen.
- status
- done
- priority
- normal
- dueDate
- 2026-08-14
- createdAt
- updatedAt
Overview
tasks / #642
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/642" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/642" ); 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/642"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/642"
)
task = res.json() Response
{
"id": 642,
"projectId": 77,
"assigneeUserId": null,
"title": "Add CI pipeline",
"description": "Amicitia celer deserunt stabilis tutamen.",
"status": "done",
"priority": "normal",
"dueDate": "2026-08-14",
"createdAt": "2025-07-22T10:58:15.153Z",
"updatedAt": "2025-10-10T06:08:08.373Z"
}