FlexShopper API
3.0-preview
FlexShopper API
3.0-preview
  • Introduction
  • 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
  • Body
  • Response
  • Samples
  • Schema

Was this helpful?

Export as PDF
  1. Customer

Deeply Verify User Exists

Verify if a user already exists via email, address, or phone number

POST /v3/users/exists

Request

The details below help you form your HTTP requests to this endpoint.

Body

You must provide a JSON payload.

Name
Type
Required
Description

email

string

user email

address.street1

string

The first line of the address

address.street2

string

The second line of the address

address.city

string

The city of the address

address.region

string

The ISO 3166-2 state/province code of the address

address.postalCode

string

The postal code of the address

address.country

string

The ISO 3166-2 / 3166-3 country code of the address

phone

phone

user phone

Response

The details below help you understand the responses you could get from this endpoint.

Samples

Below are samples of responses, with tabs corresponding to returned status code.

{
    "data": {}
}
{
    "error": {
        "statusCode": 400,
        "code": "UserAlreadyExists",
        "message": "User already exists with email ex@example.com",
        "data": {}
    }
}

Schema

The response's schema is outlined below.

Name
Type
Required
Description

data.addressExists

boolean

N/A

data.emailExists

boolean

N/A

data.phoneExists

boolean

N/A

PreviousVerify User ExistsNextCreate User

Last updated 1 day ago

Was this helpful?