FlexShopper API
3.0-preview
FlexShopper API
3.0-preview
  • Integration Guides
    • Medusa
    • Payment Plugin
  • Customer
    • Verify User Exists
    • Deeply Verify User Exists
    • Create User
    • Get Users
    • Get User
    • Create Authorization Token
    • Add Payment Method
      • Get LoanPaymentPro Child Key
      • Get Clover PKMS Key
  • Decision
    • Apply for Spending Limit
  • Lease
    • Create Lease
    • Get Transactions
    • Get Lease By ID
    • Get Transaction By ID
    • Sign Lease
    • Finalize Lease
    • Cancel Items
    • Return Items
    • Confirm Shipment
    • Confirm Receipt
Powered by GitBook
On this page
  • Request
  • Headers
  • Body
  • Response
  • Samples
  • Schema

Was this helpful?

Export as PDF
  1. Customer

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 /v3/user/exists

Headers

Name
Type
Description

Authorization

string

Authorization token

Body

Name
Type
Required
Description

email

string

Customer's e-mail address

phone

string

Customer's phone number

address

object

Customer's address

address.street1

string

"Street 1" of customer address

address.street2

string

"Street 2" of customer address

address.city

string

City of customer address

address.region

string

Region of customer address

address.postalCode

string

Postal code of customer address

address.country

string

Country of customer address

Response

A successful response should have a status code of 200.

Samples

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

Schema

Key

Type

Description

emailExists

boolean

True if a user record exists with the given email

phoneExists

boolean

True if the found user has matching phone

addressExists

boolean

True if the found user has matching address

PreviousVerify User ExistsNextCreate User

Last updated 9 days ago

Was this helpful?