example-data.com

tasks / #23

projectId
projects/3
assigneeUserId
40
title
Review analytics tracking
description
Voluptate barba vobis absconditus saepe.
status
done
priority
normal
dueDate
2026-07-08
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/23"
)
task = res.json()
{
  "id": 23,
  "projectId": 3,
  "assigneeUserId": 40,
  "title": "Review analytics tracking",
  "description": "Voluptate barba vobis absconditus saepe.",
  "status": "done",
  "priority": "normal",
  "dueDate": "2026-07-08",
  "createdAt": "2025-12-22T08:46:55.821Z",
  "updatedAt": "2026-01-20T20:29:00.762Z"
}
Draftbit