Skip to main content

Webhook Message

info

In this section, you will find an example of a standardized webhook message, designed to notify your system of payment events. Each field in the webhook message provides essential details for confirming transaction outcomes and ensuring data integrity.

Webhook Example

{
"checkoutReference": null,
"payfacReference": "21135253156",
"merchantReference": "9990QQAZ1221",
"amount": "48900",
"currency": "ISK",
"reason": null,
"success": "true",
"hmacSignature": "oH4Sgo4cZ/O8489HQU7TbcvohJkH4eHbz50Q3G+VXfk=",
"additionalData": {
"eventType": "Authorization",
"cardUsage": "Debit",
"cardNumber": "411111******1142",
"threeDAuthenticated": "false",
"cardSummary": "1142",
"paymentMethod": "VI",
"authCode": "123456",
}
}

Headers

In the Authorization header, we will set the matching Api key for your webhook.

Fields

You will always get these fields.

FieldTypeDescription
checkoutReferencenullable stringUnique identifier for the payment that was done through a hosted checkout.
payfacReferencestringUnique identifier for the transaction generated by the payment service provider.
merchantReferencenullable stringThe identifier for the transaction provided by you, the merchant, allowing for correlation with the merchant’s system.
amountstringThe transaction amount in the minor currency unit.
currencystringThe three-letter ISO currency code.
reasonnullable stringA field that provides additional context in case of transaction errors or declines, helping diagnose specific issues.
successstringIndicates the transaction status (true/false).
hmacSignaturestringA cryptographic signature generated using a secret, enabling verification of the message authenticity and ensuring it hasn’t been tampered with.
additionalDataobjectAn object for the additional details included in the event.

Additional Data Fields

Fields you will get depend on the event type of the webhook.

FieldTypeDescription
eventTypestringA string representing the type of event that occurred. (Authorization/Capture/Adjustment/Refund)
cardUsagenullable stringThe source of funds used for a transaction.
cardNumbernullable stringA partially masked PAN.
threeDAuthenticatednullable stringIndicates if 3D Secure authentication was completed for this payment.
originalPayfacReferencenullable stringThis field indicates the payment request associated with the original payment.
paymentMethodnullable stringThe payment method used in the transaction.
cardSummarynullable stringLast 4 digits of PAN.
authCodenullable stringAn authorization code is a unique series of letters or numbers generated by a card issuer or bank to validate a card transaction.
tokennullable stringA payment token you can use for future payments through API. You will only get this field through the Tokenization event.

Event types

These event types are commonly used in payment processing and refer to different stages of a transaction:

Event TypeDescription
AuthorizationThis event indicates that funds have been reserved from the customer's account for a specific amount. If no specific capture action is set, the system will automatically capture the authorized funds after a short period. In that case we will not send Capture event.
CaptureThis event confirms that the authorized funds have been withdrawn from the customer's account.
AdjustmentThis event represents a modification to the authorized amount, either increasing or decreasing it.
RefundThis event represents a notification that the refund is processed. It can take up to 40 business days for the funds to be returned to the customer's account, depending on the payment method.
TokenizationThis event represents a notification for when a tokenization request has been successfully completed.