Test error handling
- projectId
- projects/76
- assigneeUserId
-
Britney Haag @britney.haag
- title
- Test error handling
- description
- Abscido usus talio.
- status
- todo
- priority
- normal
- dueDate
- 2026-05-14
- createdAt
- updatedAt
Overview
tasks / #635
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/635" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/635" ); 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/635"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/635"
)
task = res.json() Response
{
"id": 635,
"projectId": 76,
"assigneeUserId": 133,
"title": "Test error handling",
"description": "Abscido usus talio.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-05-14",
"createdAt": "2025-08-03T02:02:51.072Z",
"updatedAt": "2025-10-02T10:36:46.126Z"
}