tasks / #40
- projectId
- projects/5
- assigneeUserId
- 23
- title
- Optimize email notifications
- description
- Sto cena custodia umbra veritatis clarus antiquus antea peccatus.
- status
- in_progress
- priority
- low
- dueDate
- —
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/40" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/40"
);
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/40"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/40"
)
task = res.json() {
"id": 40,
"projectId": 5,
"assigneeUserId": 23,
"title": "Optimize email notifications",
"description": "Sto cena custodia umbra veritatis clarus antiquus antea peccatus.",
"status": "in_progress",
"priority": "low",
"dueDate": null,
"createdAt": "2026-03-05T14:25:14.073Z",
"updatedAt": "2026-05-06T12:31:44.723Z"
}