Merchants should provide a VA registration callback URL. We will send you a POST request with this payload to notify on your side about the registration result, which will indicate either 'FAILED' or 'APPROVED'. If the status is 'APPROVED', you may proceed to create a payin using the VA.The account_bank, account_number, and account_holder values may differ from those sent in the VA request. Therefore, please make sure to use the account_bank, account_number, and account_holder provided in this callback.Each POST/PATCH Request requires a Signature in the header, you can follow the following code to create the Signature: const crypto = require('crypto');
const signature = crypto.createHmac('sha256', signatureKey) .update(JSON.stringify(data)).digest('hex');