Validate Routing Number

Checks if the given routing number is valid or blacklisted.

Check Routing Number

GET https://apis.sandbox.flexshopper.com/routing-number/validate/{routingNumber}

Path Parameters

NameTypeDescription

routingNumber

string

Routing number

{
  "data": {
    "valid": false,
    "message": "Routing number is invalid.",
    "code": "InvalidRoutingNumber"
  }
}

Response Parameters

A successful request returns the HTTP 200 OK status code and a JSON response body that shows the routing number whether is valid or not.

Key

Type

Description

valid

Boolean

True or False

message

String

Response description

code

String

Possible code: InvalidRoutingNumber , BlacklistedRoutingNumber and null

Last updated