example-data.com

tasks / #558

projectId
projects/69
assigneeUserId
62
title
Migrate unit tests
description
Vito subiungo caute urbanus alii autus aeneus ducimus recusandae tricesimus.
status
done
priority
normal
dueDate
2026-05-11
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/558"
)
task = res.json()
{
  "id": 558,
  "projectId": 69,
  "assigneeUserId": 62,
  "title": "Migrate unit tests",
  "description": "Vito subiungo caute urbanus alii autus aeneus ducimus recusandae tricesimus.",
  "status": "done",
  "priority": "normal",
  "dueDate": "2026-05-11",
  "createdAt": "2025-08-19T09:59:23.897Z",
  "updatedAt": "2025-12-12T03:45:17.418Z"
}
Draftbit