Test UI component
- projectId
- projects/33
- assigneeUserId
- —
- title
- Test UI component
- description
- Arceo spero ulterius tolero calcar thermae tumultus demergo.
- status
- blocked
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #273
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/273" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/273" ); 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/273"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/273"
)
task = res.json() Response
{
"id": 273,
"projectId": 33,
"assigneeUserId": null,
"title": "Test UI component",
"description": "Arceo spero ulterius tolero calcar thermae tumultus demergo.",
"status": "blocked",
"priority": "urgent",
"dueDate": null,
"createdAt": "2025-09-20T17:10:00.035Z",
"updatedAt": "2025-10-03T18:54:52.589Z"
}