Checkin
Receiving notifications for checkin and checkout.
It is possible to be notified every time a ticket is checked in or checked out in your Whitelabel.
You just need to request Ingresse to add your webhook address into the system.
Checkin Webhook
name | description |
---|---|
checkin | when a sale is created or change status |
Once it is registered, every time one of those actions is performed, Ingresse will send a POST
request with the following body message:
Webhook body message
key | description |
---|---|
webhook | the type of the hook related to the data |
data | the content of the webhook |
timestamp | the timestamp when the message was posted to destination |
Checkin Example
{
"webhook": "checkin",
"data": {
"action": "checkin",
"saleTicket": {
"id": 45678,
"code": "34234324.684764684"
},
"event": {
"id": 21323
}
},
"timestamp": "2019-06-25T10:48:01.603309"
}
Checkout Example
{
"webhook": "checkin",
"data": {
"action": "checkout",
"saleTicket": {
"id": 45678,
"code": "34234324.684764684"
},
"event": {
"id": 21323
}
},
"timestamp": "2019-06-25T10:48:01.603309"
}
Updated over 5 years ago