GET api/2.0/settings/security/password This function requires authentication

Description

Returns the portal password settings.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/settings/security/password
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

Password settings

Example Response
{
  "status": 0,
  "response": {
    "MinLength": 1234,
    "AllowedCharactersRegexStr": "some text",
    "UpperCase": true,
    "Digits": true,
    "DigitsRegexStr": "some text",
    "UpperCaseRegexStr": "some text",
    "SpecSymbols": true,
    "SpecSymbolsRegexStr": "some text"
  }
}