example-data.com

tasks / #229

projectId
projects/28
assigneeUserId
80
title
Fix search functionality
description
Casso alter deprecator alveus tempora ipsam necessitatibus beatae.
status
todo
priority
normal
dueDate
2026-05-06
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/229"
)
task = res.json()
{
  "id": 229,
  "projectId": 28,
  "assigneeUserId": 80,
  "title": "Fix search functionality",
  "description": "Casso alter deprecator alveus tempora ipsam necessitatibus beatae.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-05-06",
  "createdAt": "2025-09-17T09:11:19.181Z",
  "updatedAt": "2026-01-28T10:39:50.292Z"
}
Draftbit