Update logging
- projectId
- projects/70
- assigneeUserId
-
Maria Senger @maria.senger
- title
- Update logging
- description
- Compello deprecator summa venio dolores cognatus fuga tego terror.
- status
- todo
- priority
- normal
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #567
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/567" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/567" ); 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/567"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/567"
)
task = res.json() Response
{
"id": 567,
"projectId": 70,
"assigneeUserId": 120,
"title": "Update logging",
"description": "Compello deprecator summa venio dolores cognatus fuga tego terror.",
"status": "todo",
"priority": "normal",
"dueDate": null,
"createdAt": "2025-08-29T01:04:03.357Z",
"updatedAt": "2025-09-25T12:50:04.087Z"
}