Deploy API endpoint
- projectId
- projects/35
- assigneeUserId
-
Beau Stiedemann @beau.stiedemann
- title
- Deploy API endpoint
- description
- Avaritia alioqui ipsum canto cumque.
- status
- in_progress
- priority
- normal
- dueDate
- 2026-06-23
- createdAt
- updatedAt
Overview
tasks / #295
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/295" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/295" ); 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/295"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/295"
)
task = res.json() Response
{
"id": 295,
"projectId": 35,
"assigneeUserId": 64,
"title": "Deploy API endpoint",
"description": "Avaritia alioqui ipsum canto cumque.",
"status": "in_progress",
"priority": "normal",
"dueDate": "2026-06-23",
"createdAt": "2026-03-13T22:01:37.325Z",
"updatedAt": "2026-03-17T06:11:47.590Z"
}