tasks / #157
- projectId
- projects/20
- assigneeUserId
- 91
- title
- Test unit tests
- description
- Audacia defluo summisse.
- status
- in_review
- priority
- normal
- dueDate
- 2026-05-03
- createdAt
- updatedAt
Component variants
Small
tasks/157 Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/157" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/157"
);
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/157"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/157"
)
task = res.json() {
"id": 157,
"projectId": 20,
"assigneeUserId": 91,
"title": "Test unit tests",
"description": "Audacia defluo summisse.",
"status": "in_review",
"priority": "normal",
"dueDate": "2026-05-03",
"createdAt": "2025-06-09T05:31:23.601Z",
"updatedAt": "2025-10-30T22:26:44.849Z"
}