Remove unit tests
- projectId
- projects/17
- assigneeUserId
-
Mia Renner @mia.renner47
- title
- Remove unit tests
- description
- Ars abbas caelestis ocer acquiro pariatur.
- status
- in_progress
- priority
- low
- dueDate
- 2026-06-30
- createdAt
- updatedAt
Overview
tasks / #130
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/130" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/130" ); 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/130"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/130"
)
task = res.json() Response
{
"id": 130,
"projectId": 17,
"assigneeUserId": 212,
"title": "Remove unit tests",
"description": "Ars abbas caelestis ocer acquiro pariatur.",
"status": "in_progress",
"priority": "low",
"dueDate": "2026-06-30",
"createdAt": "2026-05-18T04:54:20.820Z",
"updatedAt": "2026-05-18T05:25:01.869Z"
}