This endpoint allows you to add events to subscriptions and to define which company id(s) or bank account(s) you would like to receive notifications for.
Here is a list of the events that you can subscribe to:
Event | Enum |
---|---|
IncomingPaymentProcessed | 1 |
OutgoingPaymentRejected | 2 |
OutgoingPaymentProcessed | 3 |
MissingFunding | 4 |
Reversed | 5 |
OutgoingPaymentBooked | 6 |
PaymentRouting | 7 |
IncomingPaymentBooked | 8 |
OutgoingDirectDebitPendingProcessing | 10 |
You need to create a new subscription before you can add any events
You can set up several events for each subscription. If you want to receive a notification for all five events, you must add each event separately to the subscription.
You can set up subscription events on company id(s) level (thereby receiving notifications for all bank accounts belonging to such company id(s)), or on bank account level (thereby only receiving notifications for the specified bank accounts).
Use GET/api/v1/accounts
to obtain the Company id guid(s) that maps to the ownedByCompanyId
field and the bank account guid(s) that maps to the accountId
field. These guid(s) needs to be populated to the targetId
parameter in this endpoint.
A subscription cannot be set up with a combination of companies and bank accounts
You cannot subscribe to the same event under the same subscription. You also can’t edit the subscribed event or targetIds
of an existing subscription event. If you wish to change the events and/or targetIds
, you must delete the event and add a new event to the subscription with the desired parameters.
Note, your endpoint should return a 2xx HTTP status code to acknowledge the receipt of a webhook. If we don’t receive a 2xx from you, we’ll consider it as a failed delivery, and we will retry sending the notification. After the tenth unsuccessful retry, we will stop sending notifications and deactivate the subscription.