Update role-based access
- projectId
- projects/9
- assigneeUserId
-
Mara Johnson @mara.johnson17
- title
- Update role-based access
- description
- Eaque nam nulla.
- status
- in_review
- priority
- low
- dueDate
- 2026-07-24
- createdAt
- updatedAt
Overview
tasks / #62
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/62" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/62" ); 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/62"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/62"
)
task = res.json() Response
{
"id": 62,
"projectId": 9,
"assigneeUserId": 12,
"title": "Update role-based access",
"description": "Eaque nam nulla.",
"status": "in_review",
"priority": "low",
"dueDate": "2026-07-24",
"createdAt": "2025-10-10T17:25:11.270Z",
"updatedAt": "2025-12-14T06:22:02.322Z"
}