example-data.com

tasks / #488

projectId
projects/61
assigneeUserId
177
title
Document role-based access
description
Tempora certus anser cupiditas claudeo labore.
status
todo
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/488"
)
task = res.json()
{
  "id": 488,
  "projectId": 61,
  "assigneeUserId": 177,
  "title": "Document role-based access",
  "description": "Tempora certus anser cupiditas claudeo labore.",
  "status": "todo",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-07-11T19:17:49.886Z",
  "updatedAt": "2026-02-16T09:12:31.130Z"
}
Draftbit