Investigate dashboard widget
- projectId
- projects/7
- assigneeUserId
-
Abdul Rau @abdul.rau
- title
- Investigate dashboard widget
- description
- Vilis color dolorem.
- status
- done
- priority
- high
- dueDate
- 2026-05-28
- createdAt
- updatedAt
Overview
tasks / #48
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/48" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/48" ); 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/48"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/48"
)
task = res.json() Response
{
"id": 48,
"projectId": 7,
"assigneeUserId": 108,
"title": "Investigate dashboard widget",
"description": "Vilis color dolorem.",
"status": "done",
"priority": "high",
"dueDate": "2026-05-28",
"createdAt": "2025-06-06T03:51:52.479Z",
"updatedAt": "2025-08-02T06:59:27.175Z"
}