Deploy data export
- projectId
- projects/31
- assigneeUserId
-
Melba Collier @melba.collier
- title
- Deploy data export
- description
- Vel supellex est reprehenderit thymum.
- status
- in_progress
- priority
- normal
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #252
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/252" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/252" ); 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/252"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/252"
)
task = res.json() Response
{
"id": 252,
"projectId": 31,
"assigneeUserId": 19,
"title": "Deploy data export",
"description": "Vel supellex est reprehenderit thymum.",
"status": "in_progress",
"priority": "normal",
"dueDate": null,
"createdAt": "2026-04-02T00:17:17.177Z",
"updatedAt": "2026-04-17T03:58:53.510Z"
}