example-data.com

tasks / #48

projectId
projects/7
assigneeUserId
108
title
Investigate dashboard widget
description
Vilis color dolorem.
status
done
priority
high
dueDate
2026-05-28
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/48"
)
task = res.json()
{
  "id": 48,
  "projectId": 7,
  "assigneeUserId": 108,
  "title": "Investigate dashboard widget",
  "description": "Vilis color dolorem.",
  "status": "done",
  "priority": "high",
  "dueDate": "2026-05-28",
  "createdAt": "2025-06-06T03:51:52.479Z",
  "updatedAt": "2025-08-02T06:59:27.175Z"
}
Draftbit