example-data.com

tasks / #43

projectId
projects/6
assigneeUserId
18
title
Refactor API endpoint
description
Fugit laboriosam dolorem acerbitas demitto correptius talus trado.
status
in_review
priority
high
dueDate
2026-06-29
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/43"
)
task = res.json()
{
  "id": 43,
  "projectId": 6,
  "assigneeUserId": 18,
  "title": "Refactor API endpoint",
  "description": "Fugit laboriosam dolorem acerbitas demitto correptius talus trado.",
  "status": "in_review",
  "priority": "high",
  "dueDate": "2026-06-29",
  "createdAt": "2025-06-01T20:15:32.698Z",
  "updatedAt": "2025-10-08T18:00:09.226Z"
}
Draftbit