Deploy unit tests
- projectId
- projects/73
- assigneeUserId
-
Jennifer Hoeger @jennifer.hoeger
- title
- Deploy unit tests
- description
- Tabernus capitulus ambulo.
- status
- in_progress
- priority
- normal
- dueDate
- 2026-06-25
- createdAt
- updatedAt
Overview
tasks / #607
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/607" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/607" ); 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/607"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/607"
)
task = res.json() Response
{
"id": 607,
"projectId": 73,
"assigneeUserId": 119,
"title": "Deploy unit tests",
"description": "Tabernus capitulus ambulo.",
"status": "in_progress",
"priority": "normal",
"dueDate": "2026-06-25",
"createdAt": "2025-08-22T13:00:18.462Z",
"updatedAt": "2025-10-24T13:51:29.359Z"
}