example-data.com

tasks / #575

projectId
projects/70
assigneeUserId
title
Test analytics tracking
description
Vacuus auctus asperiores iste.
status
blocked
priority
high
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/575"
)
task = res.json()
{
  "id": 575,
  "projectId": 70,
  "assigneeUserId": null,
  "title": "Test analytics tracking",
  "description": "Vacuus auctus asperiores iste.",
  "status": "blocked",
  "priority": "high",
  "dueDate": null,
  "createdAt": "2025-11-23T18:26:05.965Z",
  "updatedAt": "2025-12-24T06:45:17.208Z"
}
Draftbit