tasks / #120
- projectId
- projects/16
- assigneeUserId
- 58
- title
- Configure webhook handler
- description
- Vulariter ustilo sponte curo tempora.
- status
- in_progress
- priority
- low
- dueDate
- 2026-05-21
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/120" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/120"
);
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/120"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/120"
)
task = res.json() {
"id": 120,
"projectId": 16,
"assigneeUserId": 58,
"title": "Configure webhook handler",
"description": "Vulariter ustilo sponte curo tempora.",
"status": "in_progress",
"priority": "low",
"dueDate": "2026-05-21",
"createdAt": "2025-07-07T12:44:48.418Z",
"updatedAt": "2025-11-09T04:49:10.062Z"
}