example-data.com

tasks / #322

projectId
projects/39
assigneeUserId
title
Optimize role-based access
description
Ab acquiro cogito.
status
in_review
priority
high
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/322"
)
task = res.json()
{
  "id": 322,
  "projectId": 39,
  "assigneeUserId": null,
  "title": "Optimize role-based access",
  "description": "Ab acquiro cogito.",
  "status": "in_review",
  "priority": "high",
  "dueDate": null,
  "createdAt": "2025-06-23T22:38:29.296Z",
  "updatedAt": "2026-02-18T12:13:57.019Z"
}
Draftbit