Add email notifications
- projectId
- projects/16
- assigneeUserId
-
Cruz Okuneva @cruz.okuneva
- title
- Add email notifications
- description
- Voluptate eaque certus.
- status
- done
- priority
- normal
- dueDate
- 2026-06-13
- createdAt
- updatedAt
Overview
tasks / #124
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/124" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/124" ); 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/124"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/124"
)
task = res.json() Response
{
"id": 124,
"projectId": 16,
"assigneeUserId": 239,
"title": "Add email notifications",
"description": "Voluptate eaque certus.",
"status": "done",
"priority": "normal",
"dueDate": "2026-06-13",
"createdAt": "2025-08-01T10:39:36.388Z",
"updatedAt": "2025-08-08T21:29:45.735Z"
}