Test logging
- projectId
- projects/56
- assigneeUserId
-
Merl Jenkins @merl.jenkins6
- title
- Test logging
- description
- Amita spectaculum aestas demonstro.
- status
- in_progress
- priority
- low
- dueDate
- 2026-08-04
- createdAt
- updatedAt
Overview
tasks / #451
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/451" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/451" ); 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/451"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/451"
)
task = res.json() Response
{
"id": 451,
"projectId": 56,
"assigneeUserId": 60,
"title": "Test logging",
"description": "Amita spectaculum aestas demonstro.",
"status": "in_progress",
"priority": "low",
"dueDate": "2026-08-04",
"createdAt": "2025-05-24T02:32:22.500Z",
"updatedAt": "2025-12-10T09:09:33.859Z"
}