tasks / #168
- projectId
- projects/22
- assigneeUserId
- 241
- title
- Optimize analytics tracking
- description
- Alienus ars adulescens cubo vociferor creta tempore spargo confido.
- status
- done
- priority
- normal
- dueDate
- 2026-08-10
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/168" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/168"
);
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/168"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/168"
)
task = res.json() {
"id": 168,
"projectId": 22,
"assigneeUserId": 241,
"title": "Optimize analytics tracking",
"description": "Alienus ars adulescens cubo vociferor creta tempore spargo confido.",
"status": "done",
"priority": "normal",
"dueDate": "2026-08-10",
"createdAt": "2026-02-10T01:12:55.425Z",
"updatedAt": "2026-05-10T15:56:38.603Z"
}