Update user authentication
- projectId
- projects/27
- assigneeUserId
-
Norbert Jacobi @norbert_jacobi92
- title
- Update user authentication
- description
- Sufficio tempus comparo eveniet.
- status
- in_review
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #217
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/217" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/217" ); 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/217"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/217"
)
task = res.json() Response
{
"id": 217,
"projectId": 27,
"assigneeUserId": 101,
"title": "Update user authentication",
"description": "Sufficio tempus comparo eveniet.",
"status": "in_review",
"priority": "urgent",
"dueDate": null,
"createdAt": "2026-04-30T16:02:06.550Z",
"updatedAt": "2026-05-02T17:25:15.631Z"
}