Remove user authentication
- projectId
- projects/49
- assigneeUserId
- —
- title
- Remove user authentication
- description
- Explicabo clam desolo cernuus.
- status
- in_progress
- priority
- normal
- dueDate
- 2026-06-03
- createdAt
- updatedAt
Overview
tasks / #415
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/415" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/415" ); 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/415"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/415"
)
task = res.json() Response
{
"id": 415,
"projectId": 49,
"assigneeUserId": null,
"title": "Remove user authentication",
"description": "Explicabo clam desolo cernuus.",
"status": "in_progress",
"priority": "normal",
"dueDate": "2026-06-03",
"createdAt": "2026-03-02T14:23:13.445Z",
"updatedAt": "2026-04-05T09:39:25.758Z"
}