example-data.com

tasks / #219

projectId
projects/27
assigneeUserId
197
title
Deploy performance metrics
description
Ea bis auctor caterva viriliter casus at coma thymum.
status
blocked
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

curl -sS \
  "https://example-data.com/api/v1/tasks/219" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tasks/219"
);
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/219"
);
const task = (await res.json()) as Task;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tasks/219"
)
task = res.json()
{
  "id": 219,
  "projectId": 27,
  "assigneeUserId": 197,
  "title": "Deploy performance metrics",
  "description": "Ea bis auctor caterva viriliter casus at coma thymum.",
  "status": "blocked",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2025-10-24T06:55:04.865Z",
  "updatedAt": "2025-12-02T10:39:28.780Z"
}
Draftbit