Add data export
- projectId
- projects/85
- assigneeUserId
-
Gwendolyn Wyman @gwendolyn.wyman87
- title
- Add data export
- description
- Animi suggero vulnero despecto tertius.
- status
- blocked
- priority
- normal
- dueDate
- 2026-08-01
- createdAt
- updatedAt
Overview
tasks / #717
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/717" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/717" ); 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/717"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/717"
)
task = res.json() Response
{
"id": 717,
"projectId": 85,
"assigneeUserId": 40,
"title": "Add data export",
"description": "Animi suggero vulnero despecto tertius.",
"status": "blocked",
"priority": "normal",
"dueDate": "2026-08-01",
"createdAt": "2025-10-26T16:43:13.213Z",
"updatedAt": "2026-03-21T09:01:40.817Z"
}