example-data.com

tasks / #234

projectId
projects/29
assigneeUserId
31
title
Integrate search functionality
description
Credo aggredior defetiscor turbo adficio adficio statua.
status
in_progress
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/234"
)
task = res.json()
{
  "id": 234,
  "projectId": 29,
  "assigneeUserId": 31,
  "title": "Integrate search functionality",
  "description": "Credo aggredior defetiscor turbo adficio adficio statua.",
  "status": "in_progress",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2025-12-19T14:56:59.906Z",
  "updatedAt": "2026-01-05T12:41:01.957Z"
}
Draftbit