example-data.com

tasks / #242

projectId
projects/30
assigneeUserId
113
title
Refactor performance metrics
description
Harum calamitas calculus.
status
blocked
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/242"
)
task = res.json()
{
  "id": 242,
  "projectId": 30,
  "assigneeUserId": 113,
  "title": "Refactor performance metrics",
  "description": "Harum calamitas calculus.",
  "status": "blocked",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2025-08-31T23:11:35.916Z",
  "updatedAt": "2026-01-21T10:13:21.286Z"
}
Draftbit