❓#11 Security Questions

#11.1 Get All Active Questions :

get
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional

ex: Bearer

Responses
200
Success
get
GET /api/v1/onboarding/SecurityQuestionsInfo HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "id": 1,
    "question": "text"
  }
]

#11.2 Insert Question Answer :

post
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional

ex: Bearer

Body
securityQuestionIdinteger Β· int32Optional
answerstring | nullableOptional
Responses
200
Success
post
POST /api/v1/onboarding/SecurityQuestionsInfo HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 42

[
  {
    "securityQuestionId": 1,
    "answer": "text"
  }
]

No content

Last updated