Webhooks
BaaS Webhooks
Documentation of Banking as a Service Webhooks
The B2B API provides a webhook mechanism for notifying events that occur asynchronously. For BaaS, there are two types of notifications sent via webhooks.
Completed Verification Submission Webhook
For the KYC flow, a notification will be sent once the verification process has been completed. The payload will be as follows:
Key | Type | Description |
---|---|---|
event_type | string | Indicate which type of event the currently sent webhook corresponds to, in this case KYC.COMPLETED |
issued_datetime | string | Indicate the datetime the webhook was sent. |
payload | string | Payload with the information about the completed verification submission. |
submission_id | string | KYC Submission unique identifier. |
provider_url | string or null | URL to redirect users in order for them upload or fulfill extra information. E.g: ID photo, proof of life, etc. May be null if no further information is required. |
status | string | KYC Submission status. |
created_at | string | ISO datetime indicating Verification Submission creation date. |
Fiat Account Creation Webhook
In the Fiat Account creation flow, a notification will be sent once the Fiat Account creation has been completed. The payload will be as follows:
Key | Type | Description |
---|---|---|
event_type | string | Indicate which type of event the currently sent webhook corresponds to, in this case FIAT_ACCOUNT.ENABLED |
issued_datetime | string | Indicate the datetime the webhook was sent. |
payload | string | Payload with the information about the enabled fiat account. |
fiat_account_id | string | UUID4 formated unique id. |
payment_method_type | string | It indicates the account type. Usually bank_transfer . |
currency | string | It defines the currency that the FiatAccount accepts. |
status | string | Indicates the Fiat Account status. Only when “ENABLED”, the fiat payment instructions will be provided. |
fiat_payment_instructions | string | JSON fields with account identification details. It varies based on the account type. |
cvu | string | Accunt identifier number for AR Fiat Accounts. |
created_at | string | ISO datetime indicating Fiat Account creation date. |
end_user_id | string | End user’s external ref |
Was this page helpful?