Test file uploads
- projectId
- projects/17
- assigneeUserId
- —
- title
- Test file uploads
- description
- At theca alius thorax alienus argentum acquiro claustrum.
- status
- todo
- priority
- normal
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #129
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/129" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/129" ); 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/129"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/129"
)
task = res.json() Response
{
"id": 129,
"projectId": 17,
"assigneeUserId": null,
"title": "Test file uploads",
"description": "At theca alius thorax alienus argentum acquiro claustrum.",
"status": "todo",
"priority": "normal",
"dueDate": null,
"createdAt": "2025-11-27T12:10:59.455Z",
"updatedAt": "2026-02-21T05:37:42.941Z"
}