example-data.com

tasks / #207

projectId
projects/26
assigneeUserId
67
title
Test file uploads
description
Denique vulpes atrox tactus.
status
in_progress
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/207"
)
task = res.json()
{
  "id": 207,
  "projectId": 26,
  "assigneeUserId": 67,
  "title": "Test file uploads",
  "description": "Denique vulpes atrox tactus.",
  "status": "in_progress",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2025-12-04T07:31:45.103Z",
  "updatedAt": "2026-04-17T06:53:44.215Z"
}
Draftbit