CreateNewMerchantAccount
This function allows for a new merchant to be synched up to the Everyware system, which will generate credentials specific to that merchant. These credentials can be used moving forward to process transactions of varying types against that merchant.
When setting up a site for which a New Merchant Account application will be submitted, it is necessary to provide the business owner’s information as the Main Business Contact.
The business' main point of contact (the Owner) address, email, and phone number will be used to create a site.
Access URL: https://rest.everyware.com/api/Default/CreateNewMerchantAccount
INBOUND PARAMETERS
Optional: BusinessTypeID
The BusinessTypeID will determine the default services, invoice fields and other feature settings throughout the site. If blank, the industry will default to the Master Site’s Business Type. If blank at the Master Site level and business level, sites will default to the most generic site type, “Other.”
Parameter | Description | Required |
---|---|---|
FirstName | First name of Main Business Contact (Owner) | REQUIRED |
LastName | Last name of Main Business Contact (Owner) | REQUIRED |
DateOfBirth | Date of Birth for Main Business Contact (Owner). Format as mm-dd-yyyy | REQUIRED |
SSN | Social Security Number for Main Business Contact (Owner). Format with no hyphens. | REQUIRED |
Email Address of for the Main Business Contact (Owner) This appears on your email receipts and invoices!! | REQUIRED | |
Phone | Phone Number for the Main Business Contact (Owner). 10 digits and numbers only. | REQUIRED |
Address1 | Line One of the Main Contact's Street Address | REQUIRED |
Address2 | Line two of the Main Contact's Street Address | Optional |
City | City for Main Contact's Street Address | REQUIRED |
State | State code of Main Contact's Street Address. Use 2 letter state code, “TX”, “FL”) | REQUIRED |
PostalCode | Zipcode of Main Contact's Address | REQUIRED |
BusinessLegalName | Legal name of the company | REQUIRED |
DBA | Doing Business As name of company | REQUIRED |
EIN | Tax Identification Number | REQUIRED |
BusinessPhone | Phone number of business. 10 digits and numbers only. | Optional |
BusinessEmail | Primary email address of business. | Optional |
BusinessAddress | Line one of business street address This appears on invoices and receipts. | Optional |
BusinessCity | City of business street address | Optional |
BusinessState | State code of main business contact (please use 2 letter state code, “TX”, “FL”) | Optional |
BusinessPostalCode | Zip/postal code of business street address | Optional |
BankName | Name of Company’s Bank This is the bank to which Everyware will deposit funds. | REQUIRED |
AccountName | Name of Company’s Bank Account This is the account to which Everyware will deposit funds. | REQUIRED |
AccountNumber | Company's Bank Account Number This is the number of the account to which everyware will deposit funds. | REQUIRED |
RoutingNumber | Company’s Bank Routing Number This is the bank to which Everyware will deposit funds. | REQUIRED |
BusinessTypeID | The type of business or industry. Business Type Name & ID:
| Optional |
URL | Website address for the business. Format without http/https prefix. | REQUIRED |
ExternalAPIKey | Enter only if you want an External Key defined by you to override the key that is assigned by Everyware. | Optional |
APIKey | When creating a sub-location, use the parent API key you wish for this location to be associated with. | Optional |
Username | When creating a sub-location, use the parent Username you wish for this location to be associated with. | Optional |
OUTBOUND PARAMETERS
Parameter | Description |
---|---|
Mobile Number | Unique messaging phone number assigned for the business. |
SalesSiteID | The unique identifier in Everyware for the business. |
API Key | The API Key for the newly created business. |
Username | The username generated for the newly created business, which will usually be the same as a SalesSiteID. |
CREATE NEW BUSINESS SAMPLE CODES
{
"FirstName": "John",
"LastName": "Doe",
"DateOfBirth": "12-12-1976",
"SSN": "111223333",
"Email": "[email protected]",
"Phone": "5551112222",
"Address1": "100 Main St",
"Address2": "",
"City": "Townsville",
"State": "FL",
"PostalCode": "33111",
"BusinessLegalName": "Company, Inc.",
"DBA": "Company, Inc.",
"EIN": "123456789",
"URL": "mycompany.com",
"BusinessAddress": "200 Main St",
"BusinessCity": "Townsville",
"BusinessState": "FL",
"BusinessPostalCode": "33111",
"AccountName": "My Bank Account",
"AccountNumber": "123456789",
"BankName": "Chase Bank",
"RoutingNumber": "987654321",
"ExternalAPIKey": "",
"APIKey": "abcd123456789",
"Username": "myparentcompany"
}
PREVIEW IMAGE
In Everyware a newly created business profile page looks like this:


Updated about 1 year ago