tasks / #509
- projectId
- projects/64
- assigneeUserId
- 59
- title
- Deploy file uploads
- description
- Aranea crur degero ea tergo comburo cito patior solium.
- status
- blocked
- priority
- low
- dueDate
- 2026-06-27
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/509" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/509"
);
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/509"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/509"
)
task = res.json() {
"id": 509,
"projectId": 64,
"assigneeUserId": 59,
"title": "Deploy file uploads",
"description": "Aranea crur degero ea tergo comburo cito patior solium.",
"status": "blocked",
"priority": "low",
"dueDate": "2026-06-27",
"createdAt": "2025-06-17T00:00:05.764Z",
"updatedAt": "2025-11-10T01:04:33.538Z"
}