Configure email notifications
- projectId
- projects/37
- assigneeUserId
- —
- title
- Configure email notifications
- description
- Totidem decor volaticus ratione tumultus doloribus verumtamen vos commodi.
- status
- todo
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #305
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/305" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/305" ); 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/305"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/305"
)
task = res.json() Response
{
"id": 305,
"projectId": 37,
"assigneeUserId": null,
"title": "Configure email notifications",
"description": "Totidem decor volaticus ratione tumultus doloribus verumtamen vos commodi.",
"status": "todo",
"priority": "high",
"dueDate": null,
"createdAt": "2025-11-22T11:31:28.408Z",
"updatedAt": "2025-12-23T19:53:44.530Z"
}