example-data.com

tasks / #60

projectId
projects/9
assigneeUserId
title
Remove logging
description
Verecundia cibo arx deserunt quas auctor.
status
todo
priority
normal
dueDate
2026-05-18
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/60"
)
task = res.json()
{
  "id": 60,
  "projectId": 9,
  "assigneeUserId": null,
  "title": "Remove logging",
  "description": "Verecundia cibo arx deserunt quas auctor.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-05-18",
  "createdAt": "2025-12-30T06:47:22.556Z",
  "updatedAt": "2026-02-19T11:12:30.532Z"
}
Draftbit