Additional webhooks
The following are additional webhooks that will provide notifications around authorizations,
authorization/update webhook
On every new Authorization or Authorization status change, you will receive a webhook notification to your server.
The body will include the AuthorizationResult object:
Parameter | Always Available | Type | Description |
---|---|---|---|
authorizationId | Yes | String | Unique ID of the Object |
authorizationStatus | Yes | Enum | The status of the Authorization. See below detailed information |
paymentOptionResult | Yes | Enum | The payment Option details |
currency | Yes | String | The Currency of the payment |
amount | Yes | Number | The Amount of the payment |
orderId | Yes | String | Unique ID form the merchant system |
processor | Yes | Object | Additional data from the acquirer. |
items | Yes | Object | The items of the order per item per vendor |
transactionId | Yes | String | The transaction ID of the specific payment operation |
payout/update webhook
Payout notifications notify you of every newly created payout and any change in the status of a payout. The webhook notification gets sent to your server.
The body will include the PayoutResult object:
Parameter | Always Available | Type | Description |
---|---|---|---|
payoutId | yes | string | |
status | yes | Enum | |
amount | yes | number | |
currency | yes | string | |
createdDate | yes | date | |
updatedDate | yes | date | |
targetReferenceId | no | string |
ewallet/create webhook
Account notifications are created to notify you when your vendor receives money for the first time - creating an automatic account in the accepted currency. Each time an account balance is created or disabled, you'll get a webhook notification to your server, indicating its current status.
The body will include the following object:
Parameter | Always Available | Type | Description |
---|---|---|---|
eWalletId | yes | string | Account unique identifier |
vendorId | no | string | The unique ID of the vendor's Account. If the Account belongs to the platform, it will return null |
platformId | yes | string | Unique ID of the platform |
currency | yes | enum | USD, GBP, EUR |
Updated about 1 year ago