Fix role-based access
- projectId
- projects/3
- assigneeUserId
-
Brycen Bayer @brycen_bayer60
- title
- Fix role-based access
- description
- Stella non admoveo stips timidus.
- status
- done
- priority
- high
- dueDate
- 2026-06-21
- createdAt
- updatedAt
Overview
tasks / #27
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/27" ); 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/27"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/27"
)
task = res.json() Response
{
"id": 27,
"projectId": 3,
"assigneeUserId": 6,
"title": "Fix role-based access",
"description": "Stella non admoveo stips timidus.",
"status": "done",
"priority": "high",
"dueDate": "2026-06-21",
"createdAt": "2026-02-24T22:05:43.991Z",
"updatedAt": "2026-05-20T17:20:10.239Z"
}