Implement file uploads
- projectId
- projects/5
- assigneeUserId
-
Gerda Streich @gerda_streich
- title
- Implement file uploads
- description
- Truculenter voro harum.
- status
- todo
- priority
- normal
- dueDate
- 2026-05-04
- createdAt
- updatedAt
Overview
tasks / #34
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/34" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/34" ); 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/34"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/34"
)
task = res.json() Response
{
"id": 34,
"projectId": 5,
"assigneeUserId": 126,
"title": "Implement file uploads",
"description": "Truculenter voro harum.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-05-04",
"createdAt": "2025-11-06T14:28:20.739Z",
"updatedAt": "2026-02-25T01:31:53.674Z"
}