❓Check Security Questions

#1 Get Random Questions :

get
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional

ex: Bearer

Responses
200

Success

get
GET /api/v1/authentication/CheckSecurityQuestions/GetRandomQuestion HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
{
  "id": 1,
  "question": "text"
}

#11.2 Validate Question Answer :

post
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional

ex: Bearer

Body
securityQuestionIdinteger Β· int32Optional
answerstring | nullableOptional
Responses
200

Success

post
POST /api/v1/authentication/CheckSecurityQuestions/Validate HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "securityQuestionId": 1,
  "answer": "text"
}
{
  "status": 0
}

Last updated