get
GET /api/v1/update/UpdateSecurityQuestionsInfo/GetActiveSecurityQuestionsDropdown HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "id": 1,
    "question": "text"
  }
]
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
}
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
}