For AI agents and LLMs: a machine-readable index is available at llms.txt. A plain-Markdown version of any documentation page is available by appending .md to its URL.
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": "password3",
"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": "password3",
"password": "password"
}'
{
"message": "Password changed successfully, Please login again!",
"type": "success"
}