tasks / #138
- projectId
- projects/19
- assigneeUserId
- 248
- title
- Deploy database query
- description
- Virtus acies tego cattus vilis explicabo.
- status
- done
- priority
- normal
- dueDate
- 2026-05-13
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/138" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/138"
);
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/138"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/138"
)
task = res.json() {
"id": 138,
"projectId": 19,
"assigneeUserId": 248,
"title": "Deploy database query",
"description": "Virtus acies tego cattus vilis explicabo.",
"status": "done",
"priority": "normal",
"dueDate": "2026-05-13",
"createdAt": "2025-11-20T11:10:10.336Z",
"updatedAt": "2026-02-09T13:41:48.627Z"
}