Update user authentication
- projectId
- projects/27
- assigneeUserId
- —
- title
- Update user authentication
- description
- Volaticus unde corrigo verumtamen enim pecto conturbo.
- status
- done
- priority
- normal
- dueDate
- 2026-05-30
- createdAt
- updatedAt
Overview
tasks / #211
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/211" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/211" ); 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/211"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/211"
)
task = res.json() Response
{
"id": 211,
"projectId": 27,
"assigneeUserId": null,
"title": "Update user authentication",
"description": "Volaticus unde corrigo verumtamen enim pecto conturbo.",
"status": "done",
"priority": "normal",
"dueDate": "2026-05-30",
"createdAt": "2025-11-05T12:03:17.406Z",
"updatedAt": "2026-02-06T07:15:44.113Z"
}