Configure data export
- projectId
- projects/41
- assigneeUserId
- —
- title
- Configure data export
- description
- Modi aperio vulticulus culpo tamisium.
- status
- in_review
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #338
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/338" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/338" ); 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/338"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/338"
)
task = res.json() Response
{
"id": 338,
"projectId": 41,
"assigneeUserId": null,
"title": "Configure data export",
"description": "Modi aperio vulticulus culpo tamisium.",
"status": "in_review",
"priority": "high",
"dueDate": null,
"createdAt": "2025-07-15T04:04:05.941Z",
"updatedAt": "2025-07-28T01:05:36.004Z"
}