POST | /ach/verify | Verifies the ACH Details. |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
IsSuccessful | form | bool | No | |
ApiResultCode | form | int? | No | |
ApiCustomerResultCode | form | int? | No | |
ErrorCode | form | int | No | |
ErrorMessage | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /ach/verify HTTP/1.1
Host: devapi.billhighway.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<AchVerificationRq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common4.DTO.AchVerification">
<AccountNumber xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common.DTO.AchVerification">String</AccountNumber>
<AccountType xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common.DTO.AchVerification">String</AccountType>
<ChapId xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common.DTO.AchVerification">0</ChapId>
<Currency xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common.DTO.AchVerification">String</Currency>
<CustomerInfo xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common.DTO.AchVerification">
<BusinessName>String</BusinessName>
<FirstName>String</FirstName>
<LastName>String</LastName>
</CustomerInfo>
<IncludeCustomerVerification xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common.DTO.AchVerification">false</IncludeCustomerVerification>
<IsAchRef xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common.DTO.AchVerification">false</IsAchRef>
<RoutingNumber xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common.DTO.AchVerification">String</RoutingNumber>
<UseAlternateVerifyCodeMapping xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common.DTO.AchVerification">false</UseAlternateVerifyCodeMapping>
<UserId xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common.DTO.AchVerification">0</UserId>
</AchVerificationRq>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <AchVerificationRs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BH.CloudAPI.Common4.DTO.AchVerification"> <ApiCustomerResultCode>0</ApiCustomerResultCode> <ApiResultCode>0</ApiResultCode> <ErrorCode>0</ErrorCode> <ErrorMessage>String</ErrorMessage> </AchVerificationRs>