Fetch User Security Questions
POST/fetchSavUserQuestions
This API can be used to fetch the security questions selected by user during registration
Mandatory params:
username
OR
propertytosearch- Any user property like email, manager, username, firstname, lastname, preferedFirstName, customproperty
The Authorization must have Bearer followed by Token.
Request
Path Parameters
path stringrequired
- application/json
Body
email string
propertytosearch string
Responses
- 200
Fetch User Security Questions Example2 / Fetch User Security Questions Example1
Response Headers
- Date - string 
- Server - string 
- Set-Cookie - string 
- Transfer-Encoding - string 
- X-Content-Type-Options - string 
- X-Frame-Options - string 
- application/json
- Schema
- Example (from schema)
- Fetch User Security Questions Example1
- Fetch User Security Questions Example2
Schema
errorCode string
questions string[]
{
  "errorCode": "0",
  "questions": [
    "What is your favorite food?",
    "What is your pet's name?",
    "What is your mother's maiden name?",
    "What is your favorite color?"
  ]
}
{
  "errorCode": "0",
  "questions": [
    "What is your first Pet's name?",
    "What is your favorite food?"
  ]
}
{
  "errorCode": "0",
  "questions": [
    "What is your favorite food?",
    "What is your pet's name?",
    "What is your mother's maiden name?",
    "What is your favorite color?"
  ]
}
Loading...