Sub Organization - User›Update User Password By Admin
Sub Organization - User
Update User Password By Admin
Update User Password By Admin
Update User Password By Admin curl --request PATCH \
--url "https://auth.lambdatest.com//api/organization/sub-org/{sub_org_id}/users/{user_id}/password" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"confirm_password": "<confirm_password>",
"new_password": "<new_password>"
}'
{
"message": "Password changed successfully",
"type": "success"
}
Authorizations
Authorizationstringheaderrequired
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters
sub_org_idintegerrequired
Sub Organization ID
user_idintegerrequired
Sub Org User ID
Response
application/jsonUpdate User Password By Admin
Update User Password By Admin curl --request PATCH \
--url "https://auth.lambdatest.com//api/organization/sub-org/{sub_org_id}/users/{user_id}/password" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"confirm_password": "<confirm_password>",
"new_password": "<new_password>"
}'
{
"message": "Password changed successfully",
"type": "success"
}