example-data.com

tasks / #172

projectId
projects/22
assigneeUserId
131
title
Investigate file uploads
description
Temperantia tergiversatio voro apostolus adulescens.
status
in_progress
priority
normal
dueDate
2026-05-07
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/172"
)
task = res.json()
{
  "id": 172,
  "projectId": 22,
  "assigneeUserId": 131,
  "title": "Investigate file uploads",
  "description": "Temperantia tergiversatio voro apostolus adulescens.",
  "status": "in_progress",
  "priority": "normal",
  "dueDate": "2026-05-07",
  "createdAt": "2026-03-08T06:24:04.859Z",
  "updatedAt": "2026-05-07T21:24:09.139Z"
}
Draftbit