FlexShopper API
3.0-legacy
FlexShopper API
3.0-legacy
  • Getting Started
  • Our Platforms
    • FlexPay Payment Platform
    • FlexShopper Backend API
  • API Reference
    • Get Started
      • API Requests
      • API Responses
      • Error Codes
    • User Management
      • Create User
      • Get Users
      • Get User
      • Verify User Exists
      • Deeply Verify User Exists
      • Get LoanPaymentPro Child Key
      • Add Payment Method
    • Customer Authentication
      • Request Passcode
      • Login Customer
    • Customer Application
      • Initiate Application
      • Get Verification Questions
      • Verify Answers
      • Validate Routing Number
    • Lease Management
      • Create Lease
      • Get Lease By ID
      • Sign Lease
      • Checkout
    • Purchase Transactions
      • Get Transactions
      • Get Transaction By ID
      • Cancel Items
      • Return Items
      • Confirm Shipment
      • Confirm Receipt
    • Products
      • Get Products
    • Settings
  • Change Log
Powered by GitBook
On this page
  • Check Routing Number
  • Response Parameters

Was this helpful?

Export as PDF
  1. API Reference
  2. Customer Application

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

Name
Type
Description

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

PreviousVerify AnswersNextLease Management

Last updated 3 months ago

Was this helpful?