Fix unit tests
- projectId
- projects/29
- assigneeUserId
-
Alanna Kilback @alanna_kilback31
- title
- Fix unit tests
- description
- Magni teneo hic adhaero acidus abundans rem ademptio.
- status
- in_progress
- priority
- low
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #232
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/232" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/232" ); 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/232"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/232"
)
task = res.json() Response
{
"id": 232,
"projectId": 29,
"assigneeUserId": 14,
"title": "Fix unit tests",
"description": "Magni teneo hic adhaero acidus abundans rem ademptio.",
"status": "in_progress",
"priority": "low",
"dueDate": null,
"createdAt": "2025-07-08T14:05:50.125Z",
"updatedAt": "2026-02-03T16:40:59.996Z"
}