User Profile›User Password
User Profile
User Password
User Password
curl --request PATCH \
--url "https://auth.lambdatest.com//api/user/password" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"new_password": "<new_password>",
"password": "<password>"
}'
{
"message": "Password changed successfully, Please login again!",
"type": "success"
}
Authorizations
Authorizationstringheaderrequired
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response
application/jsonUser Password Success
curl --request PATCH \
--url "https://auth.lambdatest.com//api/user/password" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"new_password": "<new_password>",
"password": "<password>"
}'
{
"message": "Password changed successfully, Please login again!",
"type": "success"
}