tasks / #130
- projectId
- projects/17
- assigneeUserId
- 212
- title
- Remove unit tests
- description
- Ars abbas caelestis ocer acquiro pariatur.
- status
- in_progress
- priority
- low
- dueDate
- 2026-06-30
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/tasks/130" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tasks/130"
);
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/130"
);
const task = (await res.json()) as Task;import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/130"
)
task = res.json() {
"id": 130,
"projectId": 17,
"assigneeUserId": 212,
"title": "Remove unit tests",
"description": "Ars abbas caelestis ocer acquiro pariatur.",
"status": "in_progress",
"priority": "low",
"dueDate": "2026-06-30",
"createdAt": "2026-05-18T04:54:20.820Z",
"updatedAt": "2026-05-18T05:25:01.869Z"
}