example-data.com
Menu
Browse docs and collections

Overview

tasks / #485

Integrate webhook handler

projectId
projects/61
assigneeUserId
Tabitha McKenzie @tabitha_mckenzie
title
Integrate webhook handler
description
Vaco summopere terebro quisquam animadverto dens suppellex traho vox.
status
todo
priority
high
dueDate
2026-05-15
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/tasks/485" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tasks/485"
);
const task = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/tasks.d.ts https://example-data.com/types/tasks.d.ts
import type { Task } from "./types/tasks";

const res = await fetch(
  "https://example-data.com/api/v1/tasks/485"
);
const task = (await res.json()) as Task;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tasks/485"
)
task = res.json()

Response

{
  "id": 485,
  "projectId": 61,
  "assigneeUserId": 98,
  "title": "Integrate webhook handler",
  "description": "Vaco summopere terebro quisquam animadverto dens suppellex traho vox.",
  "status": "todo",
  "priority": "high",
  "dueDate": "2026-05-15",
  "createdAt": "2025-10-01T10:41:02.235Z",
  "updatedAt": "2025-11-12T22:11:18.425Z"
}