Review unit tests
- projectId
- projects/33
- assigneeUserId
-
Ryan Conroy @ryan_conroy
- title
- Review unit tests
- description
- Aegrotatio tui spargo carcer accommodo voco vere.
- status
- in_review
- priority
- low
- dueDate
- 2026-05-10
- createdAt
- updatedAt
Overview
tasks / #277
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/277" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/277" ); 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/277"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/277"
)
task = res.json() Response
{
"id": 277,
"projectId": 33,
"assigneeUserId": 73,
"title": "Review unit tests",
"description": "Aegrotatio tui spargo carcer accommodo voco vere.",
"status": "in_review",
"priority": "low",
"dueDate": "2026-05-10",
"createdAt": "2025-06-09T04:02:14.731Z",
"updatedAt": "2025-08-16T00:05:22.727Z"
}