Configure performance metrics
- projectId
- projects/24
- assigneeUserId
-
Queen Lubowitz @queen.lubowitz76
- title
- Configure performance metrics
- description
- Color voluntarius capillus.
- status
- in_review
- priority
- normal
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #191
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/191" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/191" ); 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/191"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/191"
)
task = res.json() Response
{
"id": 191,
"projectId": 24,
"assigneeUserId": 28,
"title": "Configure performance metrics",
"description": "Color voluntarius capillus.",
"status": "in_review",
"priority": "normal",
"dueDate": null,
"createdAt": "2025-10-24T11:20:32.358Z",
"updatedAt": "2025-11-19T08:11:04.647Z"
}