Manage real-time event notifications for your business.
Webhooks allow Oquira to send real-time notifications to your server when specific events occur in your organization.
| Event | Description |
|---|---|
ticket.created | A new ticket has been issued in any queue. |
ticket.called | A ticket has been called to a counter. |
ticket.present | A customer has been marked as present. |
ticket.completed | A service has been successfully finished. |
queue.opened | A queue has been opened. |
queue.closed | A queue has been closed. |
Oquira signs every webhook request with your secret to ensure authenticity. The signature is sent in the X-Oquira-Signature header.
X-Oquira-Signature: t=1710936000,v1=sha256_hash_here
t and the signature v1.v1.timestamp field in the payload to handle ordering if necessary.{
"id": "evt_abc123",
"type": "ticket.called",
"organizationId": "org_xyz789",
"data": {
"ticketId": "clsh8a2b3000208l2bh3z6p9k",
"ticketLabel": "A-045",
"queueId": "clsh7z8m1000008l2bh3z6p9k",
"counter": "Counter 1",
"status": "called",
"calledAt": "2024-03-15T11:15:00.000Z"
},
"timestamp": "2024-03-15T11:15:00.000Z"
}