/session/changePassword/

Changes the session user’s password as specified in the request.

Request

POST {{server}}/VPE/session/changePassword/
Content-Type: application/json
Tid-Api-Key: xxx-xxx-xx
{
    "DeviceId": "device-id",
    "SessionId": "...",
    "CurrentPassword": "********",
    "NewPassword": "********"
}
ChangePasswordRequest.CurrentPassword

= CurrentPassword

Current account password (clear text).

ChangePasswordRequest.NewPassword

= NewPassword

If successful the account will be updated with this new password (clear text).

Response

{
    "Success": true,
    "Message": "Operation executed successfully.",

    "Configuration": [...],

    "User": { ... },

    "VpeName": "Local Server"
}
ChangePasswordResponse.Configuration

The configuration data of the TrustID Cloud.

See also

Configuration for more information about configuration data.

ChangePasswordResponse.User

Information about the user who authenticated against the system.

See also

User for more information about user details.