example-data.com

tasks / #454

projectId
projects/56
assigneeUserId
title
Deploy user authentication
description
Delectus adeptio substantia maiores valens accendo cilicium.
status
blocked
priority
urgent
dueDate
2026-07-20
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/454"
)
task = res.json()
{
  "id": 454,
  "projectId": 56,
  "assigneeUserId": null,
  "title": "Deploy user authentication",
  "description": "Delectus adeptio substantia maiores valens accendo cilicium.",
  "status": "blocked",
  "priority": "urgent",
  "dueDate": "2026-07-20",
  "createdAt": "2025-11-17T16:10:52.309Z",
  "updatedAt": "2026-03-18T00:16:45.206Z"
}
Draftbit