Optimize unit tests
- projectId
- projects/85
- assigneeUserId
-
Clementine Nicolas @clementine_nicolas
- title
- Optimize unit tests
- description
- Alius argentum depereo aestus.
- status
- todo
- priority
- normal
- dueDate
- 2026-06-04
- createdAt
- updatedAt
Overview
tasks / #716
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/716" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/716" ); 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/716"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/716"
)
task = res.json() Response
{
"id": 716,
"projectId": 85,
"assigneeUserId": 164,
"title": "Optimize unit tests",
"description": "Alius argentum depereo aestus.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-06-04",
"createdAt": "2026-01-11T14:23:05.942Z",
"updatedAt": "2026-02-22T17:38:47.901Z"
}