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
namedescription
checkinwhen 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
keydescription
webhookthe type of the hook related to the data
datathe content of the webhook
timestampthe 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"
}