UserForcePasswordChange
Trigger this action to force a user to change their password the next time they log in to the appliance.
Use the HTTP POST method with the resource
/mgmt/actionqueue/default
, specifying
a request payload with the following
format:{
"UserForcePasswordChange": {
"User": "user_id"
}
}
- User
- String
Example
To force the user appliance_support
to change their password, post the following
payload to https://yourhost:5554/mgmt/actionqueue/default:
{
"UserForcePasswordChange": {
"User": "appliance_support"
}
}