tasks / #196
- projectId
- projects/25
- assigneeUserId
- 200
- title
- Optimize database query
- description
- Valetudo valens tametsi attollo.
- status
- in_progress
- priority
- high
- dueDate
- 2026-05-18
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/tasks/196" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/196"
);
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/196"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/196"
)
task = res.json() {
"id": 196,
"projectId": 25,
"assigneeUserId": 200,
"title": "Optimize database query",
"description": "Valetudo valens tametsi attollo.",
"status": "in_progress",
"priority": "high",
"dueDate": "2026-05-18",
"createdAt": "2026-02-26T00:11:46.609Z",
"updatedAt": "2026-03-05T14:06:26.229Z"
}