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

{
  "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.

Last updated