❓Update Security Questions

  1. Verify Password

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

post
POST /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

get
GET /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

post
POST /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