Fix file uploads
- projectId
- projects/81
- assigneeUserId
- —
- title
- Fix file uploads
- description
- Audacia chirographum creber defetiscor.
- status
- in_progress
- priority
- high
- dueDate
- 2026-08-11
- createdAt
- updatedAt
Overview
tasks / #679
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/679" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/679" ); 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/679"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/679"
)
task = res.json() Response
{
"id": 679,
"projectId": 81,
"assigneeUserId": null,
"title": "Fix file uploads",
"description": "Audacia chirographum creber defetiscor.",
"status": "in_progress",
"priority": "high",
"dueDate": "2026-08-11",
"createdAt": "2025-07-14T11:38:10.820Z",
"updatedAt": "2025-08-17T15:40:46.825Z"
}