tasks / #117
- projectId
- projects/16
- assigneeUserId
- 250
- title
- Refactor database query
- description
- Bibo strues beatus spiritus contego subseco baiulus vir venia stipes.
- status
- blocked
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/117" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/117"
);
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/117"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/117"
)
task = res.json() {
"id": 117,
"projectId": 16,
"assigneeUserId": 250,
"title": "Refactor database query",
"description": "Bibo strues beatus spiritus contego subseco baiulus vir venia stipes.",
"status": "blocked",
"priority": "high",
"dueDate": null,
"createdAt": "2025-10-16T02:16:15.138Z",
"updatedAt": "2025-10-24T10:36:16.186Z"
}