Deploy caching layer
- projectId
- projects/45
- assigneeUserId
-
Cyril Frami @cyril_frami88
- title
- Deploy caching layer
- description
- Teres amplus verumtamen vix pauper dicta depulso.
- status
- done
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #376
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/376" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/376" ); 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/376"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/376"
)
task = res.json() Response
{
"id": 376,
"projectId": 45,
"assigneeUserId": 182,
"title": "Deploy caching layer",
"description": "Teres amplus verumtamen vix pauper dicta depulso.",
"status": "done",
"priority": "high",
"dueDate": null,
"createdAt": "2025-09-06T14:14:40.221Z",
"updatedAt": "2026-05-14T12:31:55.789Z"
}