example-data.com

tasks / #451

projectId
projects/56
assigneeUserId
60
title
Test logging
description
Amita spectaculum aestas demonstro.
status
in_progress
priority
low
dueDate
2026-08-04
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/451"
)
task = res.json()
{
  "id": 451,
  "projectId": 56,
  "assigneeUserId": 60,
  "title": "Test logging",
  "description": "Amita spectaculum aestas demonstro.",
  "status": "in_progress",
  "priority": "low",
  "dueDate": "2026-08-04",
  "createdAt": "2025-05-24T02:32:22.500Z",
  "updatedAt": "2025-12-10T09:09:33.859Z"
}
Draftbit