Document UI component
- projectId
- projects/43
- assigneeUserId
- —
- title
- Document UI component
- description
- Supra thesis aequus adaugeo decerno.
- status
- in_progress
- priority
- urgent
- dueDate
- 2026-05-03
- createdAt
- updatedAt
Overview
tasks / #361
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/361" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/361" ); const task = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tasks.d.ts https://example-data.com/types/tasks.d.ts
import type { Task } from "./types/tasks";
const res = await fetch(
"https://example-data.com/api/v1/tasks/361"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/361"
)
task = res.json() Response
{
"id": 361,
"projectId": 43,
"assigneeUserId": null,
"title": "Document UI component",
"description": "Supra thesis aequus adaugeo decerno.",
"status": "in_progress",
"priority": "urgent",
"dueDate": "2026-05-03",
"createdAt": "2025-11-04T17:02:03.527Z",
"updatedAt": "2026-04-29T02:27:33.795Z"
}