Refactor email notifications
- projectId
- projects/55
- assigneeUserId
- —
- title
- Refactor email notifications
- description
- Apparatus sursum cupiditas.
- status
- blocked
- priority
- normal
- dueDate
- 2026-04-23
- createdAt
- updatedAt
Overview
tasks / #446
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/446" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/446" ); 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/446"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/446"
)
task = res.json() Response
{
"id": 446,
"projectId": 55,
"assigneeUserId": null,
"title": "Refactor email notifications",
"description": "Apparatus sursum cupiditas.",
"status": "blocked",
"priority": "normal",
"dueDate": "2026-04-23",
"createdAt": "2025-11-11T02:56:05.838Z",
"updatedAt": "2026-04-09T15:01:18.628Z"
}