Users › User Password by admin
Users
User Password by admin User Password by admin
curl -- request PATCH \
-- url "https://auth.lambdatest.com/api/organization/users/{user_id}/password" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"confirm_password" : "password1" ,
"new_password" : "password1"
} '
{
"message" : "Password changed successfully, for user - Pawan" ,
"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.
Path Parameters user_id integer required
user id of member
Response 200▼
application/json User Password by admin Success
curl -- request PATCH \
-- url "https://auth.lambdatest.com/api/organization/users/{user_id}/password" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"confirm_password" : "password1" ,
"new_password" : "password1"
} '
{
"message" : "Password changed successfully, for user - Pawan" ,
"type" : "success"
}