Test API endpoint
- projectId
- projects/85
- assigneeUserId
-
Lacy Gusikowski @lacy.gusikowski
- title
- Test API endpoint
- description
- Cunabula suggero explicabo.
- status
- in_review
- priority
- normal
- dueDate
- 2026-07-26
- createdAt
- updatedAt
Overview
tasks / #715
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/715" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/715" ); 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/715"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/715"
)
task = res.json() Response
{
"id": 715,
"projectId": 85,
"assigneeUserId": 47,
"title": "Test API endpoint",
"description": "Cunabula suggero explicabo.",
"status": "in_review",
"priority": "normal",
"dueDate": "2026-07-26",
"createdAt": "2025-08-30T08:47:28.049Z",
"updatedAt": "2026-01-17T22:36:17.570Z"
}