Update dashboard widget
- projectId
- projects/40
- assigneeUserId
-
Simeon Robel @simeon_robel12
- title
- Update dashboard widget
- description
- Aperte via defessus.
- status
- in_progress
- priority
- high
- dueDate
- 2026-08-10
- createdAt
- updatedAt
Overview
tasks / #325
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/325" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/325" ); 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/325"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/325"
)
task = res.json() Response
{
"id": 325,
"projectId": 40,
"assigneeUserId": 55,
"title": "Update dashboard widget",
"description": "Aperte via defessus.",
"status": "in_progress",
"priority": "high",
"dueDate": "2026-08-10",
"createdAt": "2026-02-25T19:35:26.940Z",
"updatedAt": "2026-04-24T12:15:16.391Z"
}