Configure unit tests
- projectId
- projects/54
- assigneeUserId
-
Mara Johnson @mara.johnson17
- title
- Configure unit tests
- description
- Deinde claudeo corporis.
- status
- blocked
- priority
- high
- dueDate
- 2026-07-19
- createdAt
- updatedAt
Overview
tasks / #436
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/436" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/436" ); 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/436"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/436"
)
task = res.json() Response
{
"id": 436,
"projectId": 54,
"assigneeUserId": 12,
"title": "Configure unit tests",
"description": "Deinde claudeo corporis.",
"status": "blocked",
"priority": "high",
"dueDate": "2026-07-19",
"createdAt": "2025-07-17T14:41:53.020Z",
"updatedAt": "2025-11-24T23:18:01.758Z"
}