Update logging
- projectId
- projects/41
- assigneeUserId
-
Charlene Roberts @charlene_roberts
- title
- Update logging
- description
- Fugit conitor uter demulceo saepe canto tubineus.
- status
- done
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #337
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/337" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/337" ); 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/337"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/337"
)
task = res.json() Response
{
"id": 337,
"projectId": 41,
"assigneeUserId": 1,
"title": "Update logging",
"description": "Fugit conitor uter demulceo saepe canto tubineus.",
"status": "done",
"priority": "urgent",
"dueDate": null,
"createdAt": "2026-01-03T00:28:56.997Z",
"updatedAt": "2026-04-14T17:52:58.008Z"
}