Test CI pipeline
- projectId
- projects/64
- assigneeUserId
-
Beau Stiedemann @beau.stiedemann
- title
- Test CI pipeline
- description
- Supra creber pel quidem credo agnitio pax.
- status
- done
- priority
- normal
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #517
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/517" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/517" ); 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/517"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/517"
)
task = res.json() Response
{
"id": 517,
"projectId": 64,
"assigneeUserId": 64,
"title": "Test CI pipeline",
"description": "Supra creber pel quidem credo agnitio pax.",
"status": "done",
"priority": "normal",
"dueDate": null,
"createdAt": "2025-12-07T10:55:58.755Z",
"updatedAt": "2026-03-01T15:29:24.075Z"
}