Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.repixa.io/llms.txt

Use this file to discover all available pages before exploring further.

Register Webhook

Registers a webhook endpoint to receive Repixa events.

Request

POST https://api.repixa.io/v1/webhooks
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Body

{
  "url": "https://yourapp.com/webhooks/repixa",
  "events": ["demo.completed", "lead.hot", "meeting.booked"]
}
FieldTypeRequiredDescription
urlstringYour HTTPS endpoint that will receive the events
eventsarrayList of event types to subscribe to

Available event types

  • demo.completed
  • demo.abandoned
  • lead.hot
  • meeting.booked
  • contact.created

Response 201

{
  "id": "wh_01hx...",
  "url": "https://yourapp.com/webhooks/repixa",
  "events": ["demo.completed", "lead.hot", "meeting.booked"],
  "secret": "whsec_xxxxxxxxxxxxxx",
  "created_at": "2026-05-20T10:00:00Z"
}
The secret field is only returned once on creation. Store it securely — you’ll use it to verify webhook signatures.