example-data.com

tasks / #186

projectId
projects/24
assigneeUserId
200
title
Investigate role-based access
description
Tempora amita pecus harum animadverto conqueror voveo casso.
status
todo
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/186"
)
task = res.json()
{
  "id": 186,
  "projectId": 24,
  "assigneeUserId": 200,
  "title": "Investigate role-based access",
  "description": "Tempora amita pecus harum animadverto conqueror voveo casso.",
  "status": "todo",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-08-05T20:06:41.716Z",
  "updatedAt": "2025-09-17T07:03:13.470Z"
}
Draftbit