Fix data export
- projectId
- projects/84
- assigneeUserId
-
Beau Stiedemann @beau.stiedemann
- title
- Fix data export
- description
- Corpus dedecor vita decimus eligendi solus.
- status
- in_progress
- priority
- normal
- dueDate
- 2026-05-25
- createdAt
- updatedAt
Overview
tasks / #714
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/714" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/714" ); 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/714"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/714"
)
task = res.json() Response
{
"id": 714,
"projectId": 84,
"assigneeUserId": 64,
"title": "Fix data export",
"description": "Corpus dedecor vita decimus eligendi solus.",
"status": "in_progress",
"priority": "normal",
"dueDate": "2026-05-25",
"createdAt": "2026-02-03T11:28:21.572Z",
"updatedAt": "2026-04-27T08:15:33.535Z"
}