Test unit tests
- projectId
- projects/20
- assigneeUserId
-
Ruben Terry @ruben.terry
- title
- Test unit tests
- description
- Audacia defluo summisse.
- status
- in_review
- priority
- normal
- dueDate
- 2026-05-03
- createdAt
- updatedAt
Overview
tasks / #157
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/157" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/157" ); 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/157"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/157"
)
task = res.json() Response
{
"id": 157,
"projectId": 20,
"assigneeUserId": 91,
"title": "Test unit tests",
"description": "Audacia defluo summisse.",
"status": "in_review",
"priority": "normal",
"dueDate": "2026-05-03",
"createdAt": "2025-06-09T05:31:23.601Z",
"updatedAt": "2025-10-30T22:26:44.849Z"
}