Payment Validator Resource

The Payment Validator resource allow the caller to query Convera's current requirements to submit cross-border payments.

Country codes are accepted in ISO 3166-1 alpha-2 format (2 characters), and currency codes are accepted in ISO 4217 3-character format.

Valid values for paymentMethod are WIRE and ACH. Valid values for entityType are INDIVIDUAL and BUSINESS.

{
    "totalItemsFound": string,
    "responseContents": [
        {
            "datapointName": string,
            "description": string
        }
    ]
}
{
    "beneBankCountryCode": "CA",
    "currencyCode": "CAD",
    "countryCode": "CA",
    "paymentMethod":["ACH"],
    "entityType": "INDIVIDUAL"
}
{
    "totalItemsFound": "14",
    "responseContents": [
        {
            "datapointName": "bankAccount.accountNumber",
            "description": "Enter the beneficiary's bank account number."
        },
        {
            "datapointName": "bankAccount.address.countryCode",
            "description": "Select the country where the beneficiary's bank branch is located."
        },
        {
            "datapointName": "bankAccount.bankBranchCode",
            "description": "Enter a valid 9-digit transit code.  4 digit bank number followed by 5 digit branch number."
        },
        {
            "datapointName": "bankAccount.bankName",
            "description": "Enter the name of the beneficiary bank."
        },
        {
            "datapointName": "beneficiary.address.city",
            "description": "Enter the beneficiary's city."
        },
        {
            "datapointName": "beneficiary.address.countryCode",
            "description": "Select the country of the beneficiary."
        },
        {
            "datapointName": "beneficiary.address.line1",
            "description": "Enter the beneficiary's full street address.  PO Boxes not allowed. Max length is 70 characters."
        },
        {
            "datapointName": "beneficiary.address.stateOrProv",
            "description": "Enter the beneficiary's province."
        },
        {
            "datapointName": "beneficiary.address.zipOrPostal",
            "description": "Enter the beneficiary's postal code."
        },
        {
            "datapointName": "beneficiary.firstName",
            "description": "Enter the beneficiary's first name."
        },
        {
            "datapointName": "beneficiary.lastName",
            "description": "Enter the beneficiary's last name."
        },
        {
            "datapointName": "beneficiary.type",
            "description": "Select if the beneficiary is an individual or a business."
        },
        {
            "datapointName": "payments.currencyCode",
            "description": "Select the currency to pay the beneficiary."
        },
        {
            "datapointName": "payments.paymentMethod",
            "description": "Select which methods may be used to pay this beneficiary."
        }
    ]
}