This API allows you to update the status of a beneficiary, toggling between active and inactive status.When to use this API?
To prevent a whitelisted beneficiary from receiving future funds or from being used in payout instructions.
To resume a previously disabled beneficiary so they can start receiving funds again or be used in payout instructions.
Request
Header Params
Content-Type
string
required
Example:
application/json
Body Params application/json
request_time
string
required
Request date and time in UTC format as YYYYMMDDHHmmss.
merchant_id
string
required
A unique merchant key which provided by ABA Bank.
<= 20 characters
merchant_auth
string
required
The JSON-encoded object containing mc_id, payee, and status is encrypted using RSA public key encryption in chunks. The resulting encrypted data is then concatenated and encoded in Base64 format.mc_idstringmandatory A unique merchant key which provided by ABA Bank. Same value as merchant_idpayeestringmandatory Beneficiary identifier: It can be either a MID or an ABA account.statusintmandatory To disable the beneficiary, set the value to 0. To activate the beneficiary, set the value to 1.PHP Sample Code
hash
string
required
Base64 encode of hash hmac sha512 encryption of concatenates values request_time and merchant_auth with public_key.Here is an example code in PHP