Virtual Wallet Creation Webhook
Business clients receive real-time notifications when a virtual wallet (virtual bank account) is created for one of their customers. This client webhook is triggered automatically when a virtual wallet is successfully created through our system.
When is this webhook sent?
The virtual_bank_account webhook is sent when:
- A virtual wallet is successfully created for a customer that belongs to your business
- The virtual wallet creation is completed and the account details are available
- Your business API key has a webhook URL configured
Payload Schema
Payload Fields
Account Info Fields
The account_info object contains detailed information about the virtual bank account. All fields within account_info are optional and will only be included if available:
Status Values
Example Payloads
Example 1: USD Virtual Wallet
Example 2: GBP Virtual Wallet
Example 3: Minimal Payload (Account Info Not Yet Available)
Important Notes
-
Account Info Availability: The
account_infoobject may be omitted if account details are not yet available at the time the webhook is sent. In such cases, the webhook will still be sent with the basic wallet information, and you can query the wallet details later using the API. -
Status Values: Common status values include:
"ACTIVE": The wallet is fully active and ready to use"IN_PROGRESS": The wallet creation is still being processed"NOT_ACTIVE": The wallet is not currently active"DELETED": The wallet has been deleted
-
Webhook Security: This webhook uses the same security mechanism as transaction webhooks:
- Signed with HMAC-SHA256 using your API key's secret
- Includes
X-Transfaar-Signatureheader for verification - Same retry logic applies (up to 10 attempts with exponential backoff, only retries if response is not 200 OK)
-
Idempotency: You should implement idempotency handling in your webhook receiver. The same wallet creation event may be sent multiple times if retries occur, so use the
wallet_idto deduplicate.