FlexShopper API
3.0-legacy
FlexShopper API
3.0-legacy
  • Getting Started
  • Our Platforms
    • FlexPay Payment Platform
    • FlexShopper Backend API
  • API Reference
    • Get Started
      • API Requests
      • API Responses
      • Error Codes
    • User Management
      • Create User
      • Get Users
      • Get User
      • Verify User Exists
      • Deeply Verify User Exists
      • Get LoanPaymentPro Child Key
      • Add Payment Method
    • Customer Authentication
      • Request Passcode
      • Login Customer
    • Customer Application
      • Initiate Application
      • Get Verification Questions
      • Verify Answers
      • Validate Routing Number
    • Lease Management
      • Create Lease
      • Get Lease By ID
      • Sign Lease
      • Checkout
    • Purchase Transactions
      • Get Transactions
      • Get Transaction By ID
      • Cancel Items
      • Return Items
      • Confirm Shipment
      • Confirm Receipt
    • Products
      • Get Products
    • Settings
  • Change Log
Powered by GitBook
On this page
  • /users/{userId}/send-passcode
  • Payload Example

Was this helpful?

Export as PDF
  1. API Reference
  2. Customer Authentication

Request Passcode

Sends a validation passcode to a user via one of the supported transport methods.The current supported methods are 'email' and 'sms'.

/users/{userId}/send-passcode

POST https://apis.sandbox.flexshopper.com/v3/users/{userId}/send-passcode

Path Parameters

Name
Type
Description

userId

string

The user's id

Headers

Name
Type
Description

Authorization

string

Authorization token

Request Body

Name
Type
Description

transport

string

One of the methods for sending the passcode to the customer. The available options are sms , email and all(This option send the passcode to all available transport for the customer)

{
    "status": 200,
    "data":{}
}

Payload Example

{
  "transport": "email"
}
PreviousCustomer AuthenticationNextLogin Customer

Last updated 6 years ago

Was this helpful?