Merchant Account

Merchant Account: All

Returns a collection of Merchant Account objects.

  1. C#
var gateway = new BraintreeGateway
{
  Environment = Braintree.Environment.SANDBOX,
  MerchantId = "MERCHANT_ID",
  PublicKey = "PUBLIC_KEY",
  PrivateKey = "PRIVATE_KEY"
};

PaginatedCollection<MerchantAccount> merchantAccountResults = gateway.MerchantAccount.All();

foreach (var merchantAccount in merchantAccountResults)
{
  Console.Out.WriteLine(merchantAccount.CurrencyIsoCode);
}