Refactor webhook handler
- projectId
- projects/82
- assigneeUserId
-
Aaron Fritsch @aaron.fritsch
- title
- Refactor webhook handler
- description
- Usus odio usque.
- status
- blocked
- priority
- normal
- dueDate
- 2026-06-26
- createdAt
- updatedAt
Overview
tasks / #683
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/683" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/683" ); 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/683"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/683"
)
task = res.json() Response
{
"id": 683,
"projectId": 82,
"assigneeUserId": 124,
"title": "Refactor webhook handler",
"description": "Usus odio usque.",
"status": "blocked",
"priority": "normal",
"dueDate": "2026-06-26",
"createdAt": "2025-11-19T07:16:48.909Z",
"updatedAt": "2026-04-15T18:42:35.167Z"
}