Deeply Verify User Exists

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

This endpoint performs a more comprehensive user existence check than Verify User Exists. It does so by verifying that a user record exists in our system and that the user has a phone number and address matching the given parameters.

We standardize the incoming and the on-file addresses before attempting to match them.

Request

POST /user/exists

Request Body

Headers

Response

A successful response should have a status code of 200.

The response data's schema is as follows:

Sample

{
  "data": {
    "emailExists": true,
    "phoneExists": true,
    "addressExists": false
  }
}

Last updated