Deploy API endpoint
- projectId
- projects/50
- assigneeUserId
-
Lew O'Kon @lew.okon75
- title
- Deploy API endpoint
- description
- Defendo sub civitas pauci explicabo animus contra eligendi.
- status
- todo
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #420
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/420" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/420" ); 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/420"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/420"
)
task = res.json() Response
{
"id": 420,
"projectId": 50,
"assigneeUserId": 131,
"title": "Deploy API endpoint",
"description": "Defendo sub civitas pauci explicabo animus contra eligendi.",
"status": "todo",
"priority": "high",
"dueDate": null,
"createdAt": "2025-06-26T00:34:28.674Z",
"updatedAt": "2025-12-06T13:12:17.853Z"
}