Optimize analytics tracking
- projectId
- projects/30
- assigneeUserId
- —
- title
- Optimize analytics tracking
- description
- Tergeo ullus tum cinis combibo adhaero vindico trucido tum defetiscor.
- status
- todo
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #244
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/244" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/244" ); 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/244"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/244"
)
task = res.json() Response
{
"id": 244,
"projectId": 30,
"assigneeUserId": null,
"title": "Optimize analytics tracking",
"description": "Tergeo ullus tum cinis combibo adhaero vindico trucido tum defetiscor.",
"status": "todo",
"priority": "urgent",
"dueDate": null,
"createdAt": "2025-12-10T18:18:07.986Z",
"updatedAt": "2026-01-28T15:36:27.483Z"
}