Bavindo
  1. Payment
Bavindo
Webhook
  • API
  • Webhook
  • v1
    • Payment
      • POS Payment event webhook
        POST
      • POS Payment display webhook
        POST
    • NFC
      • NFC Transaction event webhook
  1. Payment

POS Payment display webhook

Developing
POST
https://api.bavindo.comhttps://your.domain.com/your/endpoint

Recieving display updates#

When using the asynchronous or synchronous method this webhook can be used.

Event types#

Please refer to the Adyen docs.
NOTE
Our event is the same as Adyen's event but lowercased. (TENDER_FINAL -> tender_final)

Payload#

The Adyen payload is wrapped in our own payload, for extra information on these payloads please refer to the Adyen docs.
INFO
Please refer to Responses -> Webhook payload for a detailed scheme of the payload of the event webhook

Request

None

Responses

🟢200Webhook payload
application/json
Body
event_type
string 
required
event
string 
required
payment_id
string 
required
store_id
string 
required
terminal_id
string 
required
pos_id
string 
required
metadata
object  | null 
required
your_info
string 
required
adyen_payload
object 
required
SaleToPOIRequest
object 
required
environment
string 
required
Example
{
    "event_type": "device.display.request",
    "event": "card_presented",
    "payment_id": "bfbdee4f-4172-4a1f-8879-85454ce4",
    "store_id": "3294V22322755KZ6TWHGPRJ",
    "terminal_id": "P400Plus-00000000",
    "pos_id": "willekeurig",
    "metadata": {
        "your_info": "123456789"
    },
    "adyen_payload": {
        "SaleToPOIRequest": {
            "DisplayRequest": {
                "DisplayOutput": [
                    {
                        "Device": "CashierDisplay",
                        "InfoQualify": "Status",
                        "OutputContent": {
                            "OutputFormat": "MessageRef",
                            "PredefinedContent": {
                                "ReferenceID": "CARD_PRESENTED"
                            }
                        },
                        "ResponseRequiredFlag": false
                    }
                ]
            },
            "MessageHeader": {
                "DeviceID": "72",
                "MessageCategory": "Display",
                "MessageClass": "Device",
                "MessageType": "Request",
                "POIID": "P400Plus-00000000",
                "ProtocolVersion": "3.0",
                "SaleID": "willekeurig",
                "ServiceID": "31131923"
            }
        }
    },
    "environment": "test"
}
Modified at 2024-10-21 12:24:26
Previous
POS Payment event webhook
Next
NFC Transaction event webhook
Built with