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
  • Query Parameters
  • Headers
  • Response

Was this helpful?

Export as PDF
  1. Customer

Verify User Exists

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

GET /v3/user-exists

Request

Query Parameters

Name
Type
Required
Description

email

string

Customer's e-mail address

Headers

Name
Type
Description

Authorization

string

Authorization token

Response

A successful response should have a status code of 200.

The response data's schema is as follows:

Name
Type
Description

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
  }
}
PreviousCustomerNextDeeply Verify User Exists

Last updated 9 days ago

Was this helpful?