Class AddActualAccountRequest
Properties
| Field/Tag Name | Value | Required | Notes |
|---|---|---|---|
| custServProviderId | Y | Partner Id | |
| entity_id | Y | Merchant Id | |
| request_email | Y | registered at ProfitStars; email format | |
| routing_number | Y | ||
| account_number | Y | ||
| account_type | Checking Savings | Y | |
| account_description | Y | ||
| subject | N | text(255) | |
| description | N | text (long) | |
| case_reason | Application Special Circumstances, Update Bank Account Information, Update Business Information, | N |
Example AddActualAccountRequest
Input Method: XML
<xml>
<request_email>none@example.com</request_email>
<custServProviderId>######</custServProviderId>
<entity_id>######</entity_id>
<account_description>Test Account1</account_description>
<account_number>#####</account_number>
<routing_number>#########</routing_number>
<account_type>Checking</account_type>
<subject></subject>
<description></description>
<case_reason></case_reason>
</xml>
Input Method: JSON
{
"custServProviderId": "######",
"entity_id": "######",
"request_email": "none@example.com",
"account_description": "Test Account2",
"account_number": "#####",
"routing_number": "#########",
"account_type": "Checking",
"case_reason": "",
"subject": "",
"description": ""
}