Forgot Password

The following are the steps related to Forgot Password functionality.

  1. Validate Username or Email or Mobile Number

  2. Challenge Security Questions

  3. Pick Your Delivery Method

Step 1: Validate Username or Email or Mobile Number

Description

The validateUsernameOrEmailOrMobileNumber endpoint is used to retrieve the forgotten password of the user with the VELA application by providing the username or email or mobile number.

|

Request

Endpoint

/ui/v1/validateUsernameOrEmailOrMobileNumber  

Method

POST  

Header

Content-Type: application/json  

Attributes

ELEMENT DESCRIPTION
Username or Email or Mobile Number Required

Either Username or Email or Mobile Number is required

Request Body

{
    "id":"",
    "userName":"merchant.user1",
    "currentPassword":"",
    "password":"",
    "reEnterPassword":"",
    "firstName":"",
    "lastName":"",
    "mobile":"",
    "email":"",
    "reEnterEmail":"",
    "user_name":"**************",
    "mobile_number":"",
    "merchantCode":"VELA"

}

Response

[
    {
        "id": 301,
        "userId": 213,
        "securityQuestionId": 1,
        "answer": "",
        "createdDateTime": 1571353292000,
        "lastUpdatedDateTime": null,
        "securityQuestion": "What was your childhood nickname?",
        "message": null,
        "email": null,
        "mobile": null
    }
]

Updated As Of Version 4.6.0.3