Investigate UI component
- projectId
- projects/30
- assigneeUserId
-
Matt Kuhic @matt_kuhic57
- title
- Investigate UI component
- description
- Decet officia compono.
- status
- todo
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #241
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/241" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/241" ); 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/241"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/241"
)
task = res.json() Response
{
"id": 241,
"projectId": 30,
"assigneeUserId": 226,
"title": "Investigate UI component",
"description": "Decet officia compono.",
"status": "todo",
"priority": "urgent",
"dueDate": null,
"createdAt": "2025-08-07T20:36:11.662Z",
"updatedAt": "2026-03-28T15:58:29.767Z"
}