example-data.com

tasks / #62

projectId
projects/9
assigneeUserId
12
title
Update role-based access
description
Eaque nam nulla.
status
in_review
priority
low
dueDate
2026-07-24
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/62"
)
task = res.json()
{
  "id": 62,
  "projectId": 9,
  "assigneeUserId": 12,
  "title": "Update role-based access",
  "description": "Eaque nam nulla.",
  "status": "in_review",
  "priority": "low",
  "dueDate": "2026-07-24",
  "createdAt": "2025-10-10T17:25:11.270Z",
  "updatedAt": "2025-12-14T06:22:02.322Z"
}
Draftbit