example-data.com

tasks / #136

projectId
projects/18
assigneeUserId
183
title
Optimize data export
description
Alius voluptate benigne amo fugit solitudo tondeo addo strenuus.
status
blocked
priority
normal
dueDate
2026-08-19
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/136"
)
task = res.json()
{
  "id": 136,
  "projectId": 18,
  "assigneeUserId": 183,
  "title": "Optimize data export",
  "description": "Alius voluptate benigne amo fugit solitudo tondeo addo strenuus.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": "2026-08-19",
  "createdAt": "2025-08-03T22:53:04.085Z",
  "updatedAt": "2025-11-03T17:47:09.040Z"
}
Draftbit