Merchant Account

Merchant Account: Create For Currency

See also the Merchant Account response object.

availability

This method is only supported for merchants using Braintree Auth.

  1. Callback
  2. Promise
const gateway = new braintree.BraintreeGateway({
  accessToken: merchantAccessToken
});

gateway.merchantAccount.createForCurrency({
  currency: 'USD'
}, (err, result) => {
  if (result.success) {
    console.log(result.merchantAccount.currencyIsoCode);
  }
});

If called with an unsupported currency, returns a validation error . For more information see currency support .

Parameters
currencyString

Currency code of a supported currency. See the ISO 4217 codes.

idString
The ID of the merchant account, referenced when creating transactions.

See also