example-data.com

tasks / #139

projectId
projects/19
assigneeUserId
218
title
Investigate data export
description
Casso non truculenter perferendis sunt socius ex.
status
in_review
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/139"
)
task = res.json()
{
  "id": 139,
  "projectId": 19,
  "assigneeUserId": 218,
  "title": "Investigate data export",
  "description": "Casso non truculenter perferendis sunt socius ex.",
  "status": "in_review",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2025-06-13T01:05:04.098Z",
  "updatedAt": "2026-03-08T11:24:17.712Z"
}
Draftbit