Configures, modifies, or retrieves character restriction configurations.
| URI | Description |
|---|---|
| <base_URI>/config/running/password-attributes/character-restriction | Restriction on various types of characters. |
GET, PATCH, DELETE, OPTIONS, and HEAD operations are supported.
The following example uses the GET option to retrieve the configuration details.
http://host:80/rest/config/running/password-attributes/character-restriction
None
<character-restriction y:self="/rest/config/running/password-attributes/character-restriction"> <upper>1</upper> <lower>1</lower> <numeric>1</numeric> <special-char>1</special-char> </character-restriction>
The following is an example of the PATCH operation to modify the character restriction parameters.
http://host:80/rest/config/running/password-attributes
<password-attributes>
<character-restriction>
<upper>2</upper>
<lower>2</lower>
<numeric>2</numeric>
<special-char>1</special-char>
</character-restriction>
</password-attributes>
None
The following is an example of the DELETE operation to change to the default setting.
http://host:80/rest/config/running/password-attributes
None
None