❓#11 Security Questions

#11.1 Get All Active Questions :

get
Authorizations
Responses
200

Success

application/json
get
/Onboarding/api/v1/onboarding/SecurityQuestionsInfo
GET /Onboarding/api/v1/onboarding/SecurityQuestionsInfo HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "id": "80",
    "question": "What is your name?"
  }
]

This API is to get all active questions provided by organization.

#11.2 Insert Question Answer :

post
Authorizations
Bodyobject[]
securityQuestionIdinteger Β· int32Required

Question Identifier given from list if questions

Example: 80
answerstringRequired

Answer of the specific question

Example: answer here
Responses
200

Success

application/json
post
/Onboarding/api/v1/onboarding/SecurityQuestionsInfo
POST /Onboarding/api/v1/onboarding/SecurityQuestionsInfo HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 52

[
  {
    "securityQuestionId": "80",
    "answer": "answer here"
  }
]
{
  "status": 0
}

This API is to add list of answers of multiple questions.

Last updated