Show Menu

Bank Withdraw Types

Bank Withdraw Types

Retrieves a list of banks withdraw types.

post/API/v4/Bank/GetBankWithdrawTypes

Header Parameters

Authorizationstring

bearer access_token

Content-typestring

application/json

Request Parameters

IssuerAccountNumberstring

String length: inclusive between 1 and 25

CountryISO2string

String length: 2

Response Parameters

WithdrawTypesList

Returned if successful A structure that contains details for withdraw type that match the search criteria. WithdrawTypes—Details about the Types
ACH
WIRE

OperationStatusstring

Always returned Indicates the status of the operation. Allowed parameters are:
Errors - Displays an error message if the Property name Obligation Definition/value operation was unsuccessful. For more information, see API Error Message Appendix.
Success—Indicates whether the operation was successful. Returns True if the action was successful or False if it was not successful.

Sample Request:

sandbox.xapi.xtrm.com/API/v4/Bank/GetBankWithdrawTypes

{
	"GetBankWithdrawTypes":{
		"request":{
			"IssuerAccountNumber":"SPN1781760",
			"CountryISO2":"US"
		}
	}
}
						

Sample Response:


{
    "GetBankWithdrawTypesResponse": {
        "GetBankWithdrawTypesResult": {
            "WithdrawTypes": [
                "WIRE",
                "ACH"
            ],
            "OperationStatus": {
                "Errors": null,
                "Success": true
            }
        }
    }
}