Class UpdateActualAccountRequest
Properties
| Field/Tag Name | Value | Required | Notes |
|---|---|---|---|
| custServProviderId | Y | Partner Id | |
| entity_id | Y | Merchant Id | |
| request_email | Y | Registered at ProfitStars; email format | |
| actual_account_id | Y | ||
| account_description | Y | ||
| account_number | Y | ||
| routing_number | Y | ||
| account_type | Checking Savings | Y | |
| subject | N | text(255) | |
| description | N | text (long) | |
| case_reason | Application Special Circumstances, Update Bank Account Information, Update Business Information, | N |
Example UpdateActualAccountRequest(Risk Management Approval Required)
Input Method: XML
<xml>
<request_email>none@example.com</request_email>
<custServProviderId>######</custServProviderId>
<entity_id>######</entity_id>
<actual_account_id>#######</actual_account_id>
<account_description>Acct Description 1</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",
"actual_account_id": "#######",
"account_description": "Acct Description 2",
"account_number": "####",
"routing_number": "#########",
"account_type": "Savings",
"case_reason": "",
"subject": "",
"description": ""
}