example-data.com

tasks / #449

projectId
projects/55
assigneeUserId
236
title
Test CI pipeline
description
Demo deinde aestivus appositus aliquid tamisium coepi cruciamentum aegrotatio deputo.
status
todo
priority
normal
dueDate
2026-08-17
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/449"
)
task = res.json()
{
  "id": 449,
  "projectId": 55,
  "assigneeUserId": 236,
  "title": "Test CI pipeline",
  "description": "Demo deinde aestivus appositus aliquid tamisium coepi cruciamentum aegrotatio deputo.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-08-17",
  "createdAt": "2025-07-16T17:16:52.509Z",
  "updatedAt": "2025-11-11T07:27:10.502Z"
}
Draftbit