Configure analytics tracking
- projectId
- projects/21
- assigneeUserId
-
Matilde Beahan @matilde_beahan
- title
- Configure analytics tracking
- description
- Aegrus crastinus sulum totam depulso.
- status
- todo
- priority
- low
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #163
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/163" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/163" ); 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/163"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/163"
)
task = res.json() Response
{
"id": 163,
"projectId": 21,
"assigneeUserId": 96,
"title": "Configure analytics tracking",
"description": "Aegrus crastinus sulum totam depulso.",
"status": "todo",
"priority": "low",
"dueDate": null,
"createdAt": "2025-08-21T16:05:47.649Z",
"updatedAt": "2025-10-04T04:02:13.449Z"
}