Update logging
- projectId
- projects/68
- assigneeUserId
-
Vincenza Zemlak-Collier @vincenza_zemlak-collier
- title
- Update logging
- description
- Addo adeo decretum.
- status
- blocked
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #551
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/551" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/551" ); 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/551"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/551"
)
task = res.json() Response
{
"id": 551,
"projectId": 68,
"assigneeUserId": 168,
"title": "Update logging",
"description": "Addo adeo decretum.",
"status": "blocked",
"priority": "high",
"dueDate": null,
"createdAt": "2026-05-03T16:30:45.764Z",
"updatedAt": "2026-05-13T15:02:40.481Z"
}