Add dashboard widget
- projectId
- projects/41
- assigneeUserId
-
Santa Corwin @santa.corwin59
- title
- Add dashboard widget
- description
- Distinctio sponte adstringo arto denuo degero.
- status
- todo
- priority
- low
- dueDate
- 2026-07-23
- createdAt
- updatedAt
Overview
tasks / #334
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/334" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/334" ); 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/334"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/334"
)
task = res.json() Response
{
"id": 334,
"projectId": 41,
"assigneeUserId": 247,
"title": "Add dashboard widget",
"description": "Distinctio sponte adstringo arto denuo degero.",
"status": "todo",
"priority": "low",
"dueDate": "2026-07-23",
"createdAt": "2025-05-28T21:11:20.576Z",
"updatedAt": "2026-02-15T08:47:51.850Z"
}