Deploy logging
- projectId
- projects/39
- assigneeUserId
-
Earnestine Dickinson @earnestine_dickinson
- title
- Deploy logging
- description
- Crapula animus comis carus.
- status
- in_progress
- priority
- urgent
- dueDate
- 2026-05-30
- createdAt
- updatedAt
Overview
tasks / #314
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/314" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/314" ); 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/314"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/314"
)
task = res.json() Response
{
"id": 314,
"projectId": 39,
"assigneeUserId": 110,
"title": "Deploy logging",
"description": "Crapula animus comis carus.",
"status": "in_progress",
"priority": "urgent",
"dueDate": "2026-05-30",
"createdAt": "2026-04-03T15:11:30.024Z",
"updatedAt": "2026-05-09T11:18:20.478Z"
}