Configure data validation
- projectId
- projects/72
- assigneeUserId
-
Casimir Smitham @casimir_smitham35
- title
- Configure data validation
- description
- Sortitus tamquam veniam utpote.
- status
- in_review
- priority
- normal
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #589
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/589" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/589" ); 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/589"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/589"
)
task = res.json() Response
{
"id": 589,
"projectId": 72,
"assigneeUserId": 16,
"title": "Configure data validation",
"description": "Sortitus tamquam veniam utpote.",
"status": "in_review",
"priority": "normal",
"dueDate": null,
"createdAt": "2025-07-01T23:12:02.694Z",
"updatedAt": "2025-11-22T13:40:04.995Z"
}