Test data validation
- projectId
- projects/61
- assigneeUserId
-
Clementine Nicolas @clementine_nicolas
- title
- Test data validation
- description
- Degero ustulo valens damnatio summisse.
- status
- done
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #492
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/492" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/492" ); 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/492"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/492"
)
task = res.json() Response
{
"id": 492,
"projectId": 61,
"assigneeUserId": 164,
"title": "Test data validation",
"description": "Degero ustulo valens damnatio summisse.",
"status": "done",
"priority": "high",
"dueDate": null,
"createdAt": "2025-06-15T19:37:32.374Z",
"updatedAt": "2025-08-30T00:12:05.907Z"
}