example-data.com

tasks / #41

projectId
projects/6
assigneeUserId
176
title
Remove file uploads
description
Ventito cervus tenax eaque conscendo socius.
status
blocked
priority
high
dueDate
2026-06-13
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/41"
)
task = res.json()
{
  "id": 41,
  "projectId": 6,
  "assigneeUserId": 176,
  "title": "Remove file uploads",
  "description": "Ventito cervus tenax eaque conscendo socius.",
  "status": "blocked",
  "priority": "high",
  "dueDate": "2026-06-13",
  "createdAt": "2025-09-05T23:58:05.442Z",
  "updatedAt": "2026-03-09T11:16:52.693Z"
}
Draftbit