Update email notifications
- projectId
- projects/32
- assigneeUserId
- —
- title
- Update email notifications
- description
- Antepono adulatio certe stips.
- status
- todo
- priority
- low
- dueDate
- 2026-07-19
- createdAt
- updatedAt
Overview
tasks / #260
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/260" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/260" ); 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/260"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/260"
)
task = res.json() Response
{
"id": 260,
"projectId": 32,
"assigneeUserId": null,
"title": "Update email notifications",
"description": "Antepono adulatio certe stips.",
"status": "todo",
"priority": "low",
"dueDate": "2026-07-19",
"createdAt": "2026-05-20T09:43:36.080Z",
"updatedAt": "2026-05-20T21:51:06.822Z"
}