tasks / #44
- projectId
- projects/7
- assigneeUserId
- 113
- title
- Remove user authentication
- description
- Sumptus cattus damno vitium traho tenetur antepono decor.
- status
- blocked
- priority
- normal
- dueDate
- 2026-07-18
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/44" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/44"
);
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/44"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/44"
)
task = res.json() {
"id": 44,
"projectId": 7,
"assigneeUserId": 113,
"title": "Remove user authentication",
"description": "Sumptus cattus damno vitium traho tenetur antepono decor.",
"status": "blocked",
"priority": "normal",
"dueDate": "2026-07-18",
"createdAt": "2026-02-24T12:12:29.481Z",
"updatedAt": "2026-03-10T23:29:17.106Z"
}