/
API v4.0.0 - Reset User Password

API v4.0.0 - Reset User Password

Convertr uses OAuth for it's API authentication. All end points (unless explicitly detailed) require anĀ access_token to be passed through with each request. Tokens expire after 60minutes and need to either be refreshed or a new one generated.
In order to get an access token, we will require your username and password. API access follows the Password Policies configured in your enterprise - If your password has expired access to the API endpoints will return an error.

You can use the following API endpoints to reset your password programmatically. In the following example, the USER_ID and ACCESS_TOKEN values are returned when creating your access_token

Changing your password

Request:

Access Token
POST /api/v4/users/{USER_ID}/change-password?access_token={ACCESS_TOKEN} HTTP/1.1
Host: {enterprise}.cvtr.io
Content-Type: application/json

{
    "currentPassword": "YOUR_CURRENT_PASSWORD",
    "newPassword": "YOUR_NEW_PASSWORD"
}

Response:

Response
202 HTTP Response

Related content