example-data.com

tasks / #239

projectId
projects/30
assigneeUserId
197
title
Investigate data validation
description
Apparatus adinventitias vel volaticus.
status
todo
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/239"
)
task = res.json()
{
  "id": 239,
  "projectId": 30,
  "assigneeUserId": 197,
  "title": "Investigate data validation",
  "description": "Apparatus adinventitias vel volaticus.",
  "status": "todo",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-10-24T12:51:06.709Z",
  "updatedAt": "2025-11-09T07:03:06.646Z"
}
Draftbit