Review performance metrics
- projectId
- projects/65
- assigneeUserId
-
Myrtie Daniel @myrtie_daniel33
- title
- Review performance metrics
- description
- Vereor virgo auxilium trado.
- status
- in_review
- priority
- low
- dueDate
- 2026-08-13
- createdAt
- updatedAt
Overview
tasks / #525
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/525" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/525" ); 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/525"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/525"
)
task = res.json() Response
{
"id": 525,
"projectId": 65,
"assigneeUserId": 45,
"title": "Review performance metrics",
"description": "Vereor virgo auxilium trado.",
"status": "in_review",
"priority": "low",
"dueDate": "2026-08-13",
"createdAt": "2025-12-03T13:23:36.649Z",
"updatedAt": "2026-01-04T04:51:52.018Z"
}