tasks / #436
- projectId
- projects/54
- assigneeUserId
- 12
- title
- Configure unit tests
- description
- Deinde claudeo corporis.
- status
- blocked
- priority
- high
- dueDate
- 2026-07-19
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/436" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/436"
);
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/436"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/436"
)
task = res.json() {
"id": 436,
"projectId": 54,
"assigneeUserId": 12,
"title": "Configure unit tests",
"description": "Deinde claudeo corporis.",
"status": "blocked",
"priority": "high",
"dueDate": "2026-07-19",
"createdAt": "2025-07-17T14:41:53.020Z",
"updatedAt": "2025-11-24T23:18:01.758Z"
}