example-data.com

tasks / #228

projectId
projects/28
assigneeUserId
227
title
Test CI pipeline
description
Vorago aliquid desparatus amissio laudantium subiungo tribuo sperno contabesco vilis.
status
blocked
priority
normal
dueDate
2026-08-09
createdAt
updatedAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/tasks/228" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tasks/228"
);
const task = await res.json();
import type { Task } from "https://example-data.com/types/tasks.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/tasks/228"
);
const task = (await res.json()) as Task;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tasks/228"
)
task = res.json()
{
  "id": 228,
  "projectId": 28,
  "assigneeUserId": 227,
  "title": "Test CI pipeline",
  "description": "Vorago aliquid desparatus amissio laudantium subiungo tribuo sperno contabesco vilis.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": "2026-08-09",
  "createdAt": "2026-04-22T21:02:38.856Z",
  "updatedAt": "2026-05-10T01:26:13.165Z"
}
Draftbit