example-data.com

tasks / #363

projectId
projects/43
assigneeUserId
182
title
Update data export
description
Autem iure sub.
status
in_progress
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/363"
)
task = res.json()
{
  "id": 363,
  "projectId": 43,
  "assigneeUserId": 182,
  "title": "Update data export",
  "description": "Autem iure sub.",
  "status": "in_progress",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-10-20T14:00:21.736Z",
  "updatedAt": "2025-12-21T04:18:11.128Z"
}
Draftbit