Implement file uploads
- projectId
- projects/4
- assigneeUserId
-
Rubye Emmerich @rubye.emmerich
- title
- Implement file uploads
- description
- Quasi deprecator curriculum demoror.
- status
- done
- priority
- normal
- dueDate
- 2026-04-27
- createdAt
- updatedAt
Overview
tasks / #30
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/30" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/30" ); 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/30"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/30"
)
task = res.json() Response
{
"id": 30,
"projectId": 4,
"assigneeUserId": 225,
"title": "Implement file uploads",
"description": "Quasi deprecator curriculum demoror.",
"status": "done",
"priority": "normal",
"dueDate": "2026-04-27",
"createdAt": "2025-06-01T15:45:45.077Z",
"updatedAt": "2026-01-19T19:29:46.780Z"
}