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
  • Request
  • Response

Was this helpful?

Export as PDF
  1. API Reference
  2. User Management

Verify User Exists

Verifies whether FlexShopper already has record of a user with the given email.

Request

GET /user-exists

Query Parameters

Name
Type
Required
Description

email

string

Customer's e-mail address

Headers

Name
Type
Description

Authorization

string

Authorization token

Response

A successful response should have a status code of 200.

The response data's schema is as follows:

Name
Type
Description

exists

boolean

Whether a user was found with the given email

userId

string

The found user's id

Sample

{
  "data": {
    "userId": "1234-asdf-4321-fdsa",
    "exists": true
  }
}
PreviousGet UserNextDeeply Verify User Exists

Last updated 10 months ago

Was this helpful?