example-data.com

tasks / #707

projectId
projects/83
assigneeUserId
4
title
Test webhook handler
description
Careo sursum vesco attero vir.
status
blocked
priority
normal
dueDate
2026-07-01
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/707"
)
task = res.json()
{
  "id": 707,
  "projectId": 83,
  "assigneeUserId": 4,
  "title": "Test webhook handler",
  "description": "Careo sursum vesco attero vir.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": "2026-07-01",
  "createdAt": "2025-08-02T02:11:59.408Z",
  "updatedAt": "2026-04-19T12:35:39.226Z"
}
Draftbit