Refactor CI pipeline
- projectId
- projects/58
- assigneeUserId
-
Matt Kuhic @matt_kuhic57
- title
- Refactor CI pipeline
- description
- Tenax vilicus curso capillus cilicium numquam.
- status
- done
- priority
- normal
- dueDate
- 2026-08-04
- createdAt
- updatedAt
Overview
tasks / #461
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/461" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/461" ); 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/461"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/461"
)
task = res.json() Response
{
"id": 461,
"projectId": 58,
"assigneeUserId": 226,
"title": "Refactor CI pipeline",
"description": "Tenax vilicus curso capillus cilicium numquam.",
"status": "done",
"priority": "normal",
"dueDate": "2026-08-04",
"createdAt": "2025-09-07T13:28:35.252Z",
"updatedAt": "2026-05-12T06:28:49.037Z"
}