Webhooks

Subscribe to real-time events. Repull sends HTTP POST requests to your URL when things happen — new reservations, messages, sync status changes.

curl -X POST /v1/webhooks \
  -H "Authorization: Bearer sk_live_KEY" \
  -H "X-Workspace-Id: WS_ID" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://your-app.com/webhooks", "events": ["reservation.created", "reservation.updated"]}'
AI