Bank
- Method
- ExampleRequest
- ExampleResponse
Example BankRequest
Input Method: XML
<xml>
<custServProviderId>######</custServProviderId>
<entity_id>######</entity_id>
<customer_name>Sample Test</customer_name>
<request_email>none@example.com</request_email>
<case_reason>I have a new bank account</case_reason>
<location_id>########</location_id>
<location_name>Test Location</location_name>
<merchant_first_name></merchant_first_name>
<merchant_last_name></merchant_last_name>
<merchant_email></merchant_email>
<merchant_phone></merchant_phone>
<routing_number>#########</routing_number>
<account_type>savings</account_type>
<account_number>#####</account_number>
<legal_name></legal_name>
<dba_name></dba_name>
<federal_tax_id></federal_tax_id>
<address_1></address_1>
<address_2></address_2>
<city></city>
<state_or_region></state_or_region>
<postal_code></postal_code>
<case_reason></case_reason>
<subject></subject>
<description></description>
</xml>
Input Method: JSON
{
"custServProviderId": "######",
"entity_id": "######",
"customer_name": "Sample Test",
"request_email": "none@example.com",
"location_id": "#######",
"location_name": "Test Location",
"routing_number": "#########",
"account_type": "checking",
"account_number": "#####",
"merchant_first_name": "",
"merchant_last_name": "",
"merchant_email": "",
"merchant_phone": "",
"legal_name": "",
"dba_name": "",
"federal_tax_id": "",
"address_1": "",
"address_2": "",
"city": "",
"state_or_region": "",
"postal_code": "",
"case_reason": "",
"subject": "",
"description": ""
}
Example BankResponse
Auto-Approval Response: XML
<BankRequestResponse>
<CaseNumber>########</CaseNumber>
<Success>true</Success>
<UpdateStatus>Location successfully updated.</UpdateStatus>
</BankRequestResponse>
Non-Auto-Approval Response: XML
<BankRequestResponse>
<CaseNumber>########</CaseNumber>
<Success>true</Success>
<UpdateStatus>Pending manual review.</UpdateStatus>
</BankRequestResponse>
Auto-Approval Response: JSON
{
"CaseNumber": "########",
"Success": "true",
"UpdateStatus": "Location successfully updated."
}
Non-Auto-Approval Response: JSON
{
"CaseNumber": "########",
"Success": "true",
"UpdateStatus": "Pending manual review."
}