Update file uploads
- projectId
- projects/37
- assigneeUserId
- —
- title
- Update file uploads
- description
- Vilitas velociter accusantium patria ante adversus denego confero pel asperiores.
- status
- in_progress
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #302
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/302" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/302" ); 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/302"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/302"
)
task = res.json() Response
{
"id": 302,
"projectId": 37,
"assigneeUserId": null,
"title": "Update file uploads",
"description": "Vilitas velociter accusantium patria ante adversus denego confero pel asperiores.",
"status": "in_progress",
"priority": "high",
"dueDate": null,
"createdAt": "2026-02-01T22:22:41.853Z",
"updatedAt": "2026-03-13T14:29:57.180Z"
}