example-data.com

tasks / #70

projectId
projects/10
assigneeUserId
155
title
Review CI pipeline
description
Decor decimus accendo acerbitas vulgaris.
status
blocked
priority
high
dueDate
2026-06-13
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/70"
)
task = res.json()
{
  "id": 70,
  "projectId": 10,
  "assigneeUserId": 155,
  "title": "Review CI pipeline",
  "description": "Decor decimus accendo acerbitas vulgaris.",
  "status": "blocked",
  "priority": "high",
  "dueDate": "2026-06-13",
  "createdAt": "2025-07-28T01:56:52.761Z",
  "updatedAt": "2026-01-13T18:00:21.841Z"
}
Draftbit