Forgot Password - Challenge Security Questions

Once the user completes the first step Validate Username or Email or Mobile Number by providing the valid username or email or mobile number, the user is prompted to answer the security questions.

Description

The validateUserSecurityAnswers endpoint is used to validate the user's security answers with the provided questions in order to retrieve the forgotten password of the user with the VELA application.

Request

Endpoint

    /ui/v1/validateUserSecurityAnwers  

Method

POST  

Header

Content-Type: application/json

Attributes

ELEMENT DESCRIPTION
Security Answer Required

Must be at least 2 characters

Request Body

{
    "id": 919,
    "userId": 514,
    "securityQuestionId": 1,
    "answer": "11",
    "createdDateTime": 1582315180000,
    "lastUpdatedDateTime": null,
    "securityQuestion": "What was your childhood nickname?",
    "message": null,
    "email": null,
    "mobile": null

}

Response

[
    {
        "id": null,
        "userId": 514,
        "securityQuestionId": null,
        "answer": null,
        "createdDateTime": null,
        "lastUpdatedDateTime": null,
        "securityQuestion": null,
        "message": {
            "code": "102",
            "type": {
                "value": "Informational",
                "name": "INFORMATIONAL"
            },
            "text": null,
            "include_i_icon": false,
            "description": "Please choose your delivery method."
        },
        "email": "nxxxxxxr@gxxxl.com",
        "mobile": "+1 23xxxxxx44"
    }
]

Updated As Of Version 4.6.0.3