Test analytics tracking
- projectId
- projects/70
- assigneeUserId
- —
- title
- Test analytics tracking
- description
- Vacuus auctus asperiores iste.
- status
- blocked
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #575
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/575" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/575" ); 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/575"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/575"
)
task = res.json() Response
{
"id": 575,
"projectId": 70,
"assigneeUserId": null,
"title": "Test analytics tracking",
"description": "Vacuus auctus asperiores iste.",
"status": "blocked",
"priority": "high",
"dueDate": null,
"createdAt": "2025-11-23T18:26:05.965Z",
"updatedAt": "2025-12-24T06:45:17.208Z"
}