example-data.com

tasks / #609

projectId
projects/74
assigneeUserId
136
title
Remove file uploads
description
Modi statim theca venustas decimus accusamus alveus caste denego adipisci.
status
todo
priority
high
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/609"
)
task = res.json()
{
  "id": 609,
  "projectId": 74,
  "assigneeUserId": 136,
  "title": "Remove file uploads",
  "description": "Modi statim theca venustas decimus accusamus alveus caste denego adipisci.",
  "status": "todo",
  "priority": "high",
  "dueDate": null,
  "createdAt": "2025-08-08T12:16:32.664Z",
  "updatedAt": "2026-03-17T02:57:08.592Z"
}
Draftbit