βUpdate Security Questions
post
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional
ex: Bearer <Replace Token From Third Step (Select Step)>
Body
passwordstring | nullableOptional
updateStepIdinteger Β· enumOptionalPossible values:
Responses
200
Success
400
Bad Request
post
/api/v1/update/UpdateRequest/VerifyPasswordPOST /api/v1/update/UpdateRequest/VerifyPassword HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"password": "text",
"updateStepId": 1
}{
"status": 0
}Get All Active Questions :
get
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional
ex: Bearer <Replace Token From Third Step (Select Step)>
Responses
200
Success
400
Bad Request
get
/api/v1/update/UpdateSecurityQuestionsInfo/GetActiveSecurityQuestionsDropdownGET /api/v1/update/UpdateSecurityQuestionsInfo/GetActiveSecurityQuestionsDropdown HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": 1,
"question": "text"
}
]Update Question Answer :
post
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional
ex: Bearer <Replace Token From Third Step (Select Step)>
Bodyobject[]
securityQuestionIdinteger Β· int32Optional
answerstring | nullableOptional
Responses
200
Success
400
Bad Request
post
/api/v1/update/UpdateSecurityQuestionsInfo/UpdatePOST /api/v1/update/UpdateSecurityQuestionsInfo/Update HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 42
[
{
"securityQuestionId": 1,
"answer": "text"
}
]{
"status": 0
}Last updated