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

NameTypeDescription

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"
          }
        ]
      }
    ]
  }
}

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

Last updated