Test webhook handler
- projectId
- projects/83
- assigneeUserId
-
Cayla Farrell @cayla_farrell
- title
- Test webhook handler
- description
- Careo sursum vesco attero vir.
- status
- blocked
- priority
- normal
- dueDate
- 2026-07-01
- createdAt
- updatedAt
Overview
tasks / #707
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/707" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/707" ); 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/707"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/707"
)
task = res.json() Response
{
"id": 707,
"projectId": 83,
"assigneeUserId": 4,
"title": "Test webhook handler",
"description": "Careo sursum vesco attero vir.",
"status": "blocked",
"priority": "normal",
"dueDate": "2026-07-01",
"createdAt": "2025-08-02T02:11:59.408Z",
"updatedAt": "2026-04-19T12:35:39.226Z"
}