tasks / #151
- projectId
- projects/20
- assigneeUserId
- 70
- title
- Configure analytics tracking
- description
- Cohaero accendo adeptio pel conturbo civitas.
- status
- blocked
- priority
- low
- dueDate
- 2026-07-25
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/151" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/151"
);
const task = await res.json();import type { Task } from "https://example-data.com/types/tasks.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tasks/151"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/151"
)
task = res.json() {
"id": 151,
"projectId": 20,
"assigneeUserId": 70,
"title": "Configure analytics tracking",
"description": "Cohaero accendo adeptio pel conturbo civitas.",
"status": "blocked",
"priority": "low",
"dueDate": "2026-07-25",
"createdAt": "2025-11-05T15:38:04.327Z",
"updatedAt": "2026-05-09T02:26:54.645Z"
}