User Exists

Determines if FlexShopper already has a user for a given e-mail address.

user-exists

GET https://apis.sandbox.flexshopper.com/v3/user-exists

Query Parameters

NameTypeDescription

email

string

Customer's e-mail address to be checked.

Headers

NameTypeDescription

Authorization

string

Authorization token

{
  "data": {
    "userId": "1234-asdf-4321-fdsa",
    "exists": true
  }
}

Response Parameters

A successful request returns the HTTP 200 OK status code and a JSON response body that shows user id and whether exists or not.

Key

Type

Description

exists

Boolean

Whether the provided e-mail address was found.

userId

String

User's id

Last updated