Review data export
- projectId
- projects/44
- assigneeUserId
-
Rosella Homenick @rosella.homenick
- title
- Review data export
- description
- Catena harum theatrum combibo celer.
- status
- todo
- priority
- urgent
- dueDate
- 2026-08-17
- createdAt
- updatedAt
Overview
tasks / #371
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/371" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/371" ); 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/371"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/371"
)
task = res.json() Response
{
"id": 371,
"projectId": 44,
"assigneeUserId": 27,
"title": "Review data export",
"description": "Catena harum theatrum combibo celer.",
"status": "todo",
"priority": "urgent",
"dueDate": "2026-08-17",
"createdAt": "2025-12-27T14:01:02.332Z",
"updatedAt": "2026-01-29T04:59:16.277Z"
}