Refactor webhook handler
- projectId
- projects/28
- assigneeUserId
-
Leonor Corwin @leonor_corwin3
- title
- Refactor webhook handler
- description
- Usque paens exercitationem sperno.
- status
- done
- priority
- low
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #230
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/230" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/230" ); 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/230"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/230"
)
task = res.json() Response
{
"id": 230,
"projectId": 28,
"assigneeUserId": 211,
"title": "Refactor webhook handler",
"description": "Usque paens exercitationem sperno.",
"status": "done",
"priority": "low",
"dueDate": null,
"createdAt": "2025-11-13T17:33:08.058Z",
"updatedAt": "2026-02-06T10:57:19.740Z"
}