tasks / #429
- projectId
- projects/52
- assigneeUserId
- 83
- title
- Review unit tests
- description
- Tabella sopor colo expedita subiungo.
- status
- blocked
- priority
- urgent
- dueDate
- 2026-07-19
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/429" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/429"
);
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/429"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/429"
)
task = res.json() {
"id": 429,
"projectId": 52,
"assigneeUserId": 83,
"title": "Review unit tests",
"description": "Tabella sopor colo expedita subiungo.",
"status": "blocked",
"priority": "urgent",
"dueDate": "2026-07-19",
"createdAt": "2025-08-03T12:37:16.487Z",
"updatedAt": "2026-02-06T20:08:36.275Z"
}