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" : "password3" ,
"password" : "password"
} '
{
"message" : "Password changed successfully, Please login again!" ,
"type" : "success"
}
Authorizations Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response 200▼
application/json User 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" : "password3" ,
"password" : "password"
} '
{
"message" : "Password changed successfully, Please login again!" ,
"type" : "success"
}