Migrate search functionality
- projectId
- projects/85
- assigneeUserId
- —
- title
- Migrate search functionality
- description
- Arbor capitulus colligo arca aggero constans repudiandae ex.
- status
- todo
- priority
- normal
- dueDate
- 2026-04-30
- createdAt
- updatedAt
Overview
tasks / #720
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/720" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/720" ); 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/720"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/720"
)
task = res.json() Response
{
"id": 720,
"projectId": 85,
"assigneeUserId": null,
"title": "Migrate search functionality",
"description": "Arbor capitulus colligo arca aggero constans repudiandae ex.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-04-30",
"createdAt": "2025-06-07T08:13:49.306Z",
"updatedAt": "2026-01-15T02:26:59.001Z"
}