Merchant Account: Create
See also the Merchant Account response object.
- C#
MerchantAccountRequest request = new MerchantAccountRequest
{
Individual = new IndividualRequest
{
FirstName = "Jane",
LastName = "Doe",
Email = "jane@14ladders.com",
Phone = "5553334444",
DateOfBirth = "1981-11-19",
Ssn = "456-45-4567",
Address = new AddressRequest
{
StreetAddress = "111 Main St",
Locality = "Chicago",
Region = "IL",
PostalCode = "60622"
}
},
Business = new BusinessRequest
{
LegalName = "Jane's Ladders",
DbaName = "Jane's Ladders",
TaxId = "98-7654321",
Address = new AddressRequest
{
StreetAddress = "111 Main St",
Locality = "Chicago",
Region = "IL",
PostalCode = "60622"
}
},
Funding = new FundingRequest
{
Descriptor = "Blue Ladders",
Destination = FundingDestination.BANK,
Email = "funding@blueladders.com",
MobilePhone = "5555555555",
AccountNumber = "1123581321",
RoutingNumber = "071101307"
},
TosAccepted = true,
MasterMerchantAccountId = "14ladders_marketplace",
Id = "blue_ladders_store"
};
Result<MerchantAccount> result = gateway.MerchantAccount.Create(request);Parameters
AccountNumberstringExtendedAddressstringLocalitystringPostalCodestringRegionstringStreetAddressstringCompanyNamestringDateOfBirthstringEmailstringFirstNamestringLastNamestringPhonestringRoutingNumberstringSsnstringTaxIdstringAddressstringLocalitystringPostalCodestringRegionstringStreetAddressstringDbaNamestringThe "Doing Business As" name. The company name must contain only letters, numbers, ampersands (&) hyphens (-), exclamation marks (!), at symbols (@), hashtag (#), dollar sign ($), beginning and end parentheses ( '(' and ')' ), single quotation mark ('), period (.), forward slash (/), plus symbol (+), comma (,) and double quotation mark ("). 40 character maximum.
LegalNamestringThe legal name. The applicant's legal name must contain only letters, numbers, ampersands (&) hyphens (-), exclamation marks (!), at symbols (@), hashtag (#), dollar sign ($), beginning and end parentheses ( '(' and ')' ), single quotation mark ('), period (.), forward slash (/), plus symbol (+), comma (,) and double quotation mark ("). 40 character maximum. Required if business information has been provided.
TaxIdstringAccountNumberstringThe value representing a checking account number. Required if the request's funding destination is Bank, prohibited otherwise.
DescriptorstringDestinationstringThe way in which funds will be delivered to a specific sub-merchant. Specify Bank to disburse funds into the checking account associated with the provided account and routing numbers. Venmo funding destinations, Email and MobilePhone, are no longer supported for new merchants. Contact us with questions or concerns.
EmailstringThe email address composed of ASCII characters. Must be in the format email_name@email_domain.domain. 64 character maximum for email_name. Required if the request's funding destination is Email.
MobilePhonestringThe mobile phone number. Phone must be 10 - 14 characters and can only contain numbers, hyphens and parentheses. Required if the request's funding destination is MobilePhone.
RoutingNumberstringThe numeric value representing a specific bank. Required if funding destination is Bank, prohibited otherwise.
IdstringSpecifies the ID of the sub-merchant, which can be referenced when creating transactions with service fees. 32 character maximum; must be unique, can't be 'all' or 'new', and must contain only letters, numbers, _ and -. If not provided, we will automatically generate one.
AddressstringLocalitystringPostalCodestringRegionstringStreetAddressstringDateOfBirthstringYYYYMMDD or YYYY-MM-DD.EmailstringFirstNamestringLastNamestringPhonestringSsnstringMasterMerchantAccountIdstringSpecifies the merchant account that service fees are sent to. Merchant account IDs can be viewed in the Control Panel; learn how in our support articles.
TosAcceptedboolWhether the sub-merchant has read and agreed to the Terms of Service (TOS). See the terms of service accepted parameter for more information.