Migrate data validation
- projectId
- projects/79
- assigneeUserId
- —
- title
- Migrate data validation
- description
- Coniuratio ut synagoga acies cicuta optio caterva corroboro atqui.
- status
- done
- priority
- normal
- dueDate
- 2026-06-01
- createdAt
- updatedAt
Overview
tasks / #661
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/661" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/661" ); 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/661"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/661"
)
task = res.json() Response
{
"id": 661,
"projectId": 79,
"assigneeUserId": null,
"title": "Migrate data validation",
"description": "Coniuratio ut synagoga acies cicuta optio caterva corroboro atqui.",
"status": "done",
"priority": "normal",
"dueDate": "2026-06-01",
"createdAt": "2025-09-14T01:40:38.630Z",
"updatedAt": "2026-03-03T15:27:54.977Z"
}