example-data.com

tasks / #390

projectId
projects/47
assigneeUserId
234
title
Migrate API endpoint
description
Theologus centum conservo dicta.
status
in_progress
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/390"
)
task = res.json()
{
  "id": 390,
  "projectId": 47,
  "assigneeUserId": 234,
  "title": "Migrate API endpoint",
  "description": "Theologus centum conservo dicta.",
  "status": "in_progress",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2026-04-13T02:26:17.749Z",
  "updatedAt": "2026-05-03T14:06:10.041Z"
}
Draftbit