Skip to main content
User ProfileUser Password
TestMu AI
StatusCommunityBlog
User Profile

User Password

User Password

PATCH
/api/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.

Body

application/json
new_passwordstring
passwordstring

Response

application/json

User Password Success

messagestring
typestring
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"
}