Verify User Exists

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

Request

GET /user-exists

Query Parameters

NameTypeRequiredDescription

email

string

Customer's e-mail address

Headers

NameTypeDescription

Authorization

string

Authorization token

Response

A successful response should have a status code of 200.

The response data's schema is as follows:

NameTypeDescription

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
  }
}

Last updated