Review CI pipeline
- projectId
- projects/10
- assigneeUserId
-
Adan Weber @adan.weber61
- title
- Review CI pipeline
- description
- Decor decimus accendo acerbitas vulgaris.
- status
- blocked
- priority
- high
- dueDate
- 2026-06-13
- createdAt
- updatedAt
Overview
tasks / #70
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/70" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/70" ); 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/70"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/70"
)
task = res.json() Response
{
"id": 70,
"projectId": 10,
"assigneeUserId": 155,
"title": "Review CI pipeline",
"description": "Decor decimus accendo acerbitas vulgaris.",
"status": "blocked",
"priority": "high",
"dueDate": "2026-06-13",
"createdAt": "2025-07-28T01:56:52.761Z",
"updatedAt": "2026-01-13T18:00:21.841Z"
}