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/me/verify-questions
  • Response Parameters

Was this helpful?

Export as PDF
  1. API Reference
  2. Customer Application

Get Verification Questions

After a customer successful application, it might need to verify the identity, find below the necessary endpoints to complete

/users/me/verify-questions

GET https://apis.sandbox.flexshopper.com/v3/users/me/verify-questions

This endpoint get verification questions for a customer

Headers

Name
Type
Description

customer-token

string

Customer's authentication token

Authorization

string

Authorization token

{
  "data": {
    "id": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVC...",
    "questions": [
      {
        "id": "1374041563",
        "label": "Which team nickname is associated with a college you attended?",
        "choices": [
          {
            "id": "7249609723",
            "label": "7249609723"
          }
        ]
      }
    ]
  }
}
{
  "error": {
    "statusCode": 400,
    "code": "InvalidCustomerVerificationStatus",
    "message": "There is no pending verification question for the customer",
    "data": {}
  }
}

Response Parameters

A successful request returns the HTTP 200 OK status code and a JSON response body that shows user id and whether exists or not.

Key

Type

Description

id

String

A unique identifier to signify this individual verification transaction.

questions

Array

The verification questions.

questions[].id

String

Question's Id

questions[].label

String

Question's label

questions[].choices

Array

The question's choices.

questions[].choices[].id

String

Question choice id

questions[].choices[].label

String

Question choice label

PreviousInitiate ApplicationNextVerify Answers

Last updated 3 months ago

Was this helpful?