Validate Account Number
POST https://gateway-api.paycertify.com/api/checks/verify_account
In order to prevent fraudulent check transactions, we provide a simple way to check if a provided account number is valid. All you need is the account number.
Parameter | Type | Lenght | Presence | Description | Example |
---|---|---|---|---|---|
account_number |
integer |
Bank specific | required | This parameter is required in order to validate your account number and it must be numeric. | 1234567890 |
Parameter | Type | Presence | Description | Example |
---|---|---|---|---|
valid_account |
boolean |
required |
This parameter holds the validation result and it has only two possible values: trueor false. |
true |
error |
string |
optional |
If it's present, it means that there is an error with your request and it will contain a message to help you correct the problem. | Missing or invalid account number |
curl --request POST \
--url https://gateway-api.paycertify.com/api/checks/verify_account \
--header 'Authorization: Bearer YOUR_API_TOKEN' \
--form 'account_number=10000000000000'
Responds with:
{
"valid_account": true
}