GET api/2.0/settings/security/password
Returns the portal password settings.
This method doesn't have any parameters.
GET api/2.0/settings/security/password
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": {
"MinLength": 1234,
"AllowedCharactersRegexStr": "some text",
"UpperCase": true,
"Digits": true,
"DigitsRegexStr": "some text",
"UpperCaseRegexStr": "some text",
"SpecSymbols": true,
"SpecSymbolsRegexStr": "some text"
}
}
text/xml
<result>
<status>0</status>
<response>
<MinLength>1234</MinLength>
<AllowedCharactersRegexStr>some text</AllowedCharactersRegexStr>
<UpperCase>True</UpperCase>
<Digits>True</Digits>
<DigitsRegexStr>some text</DigitsRegexStr>
<UpperCaseRegexStr>some text</UpperCaseRegexStr>
<SpecSymbols>True</SpecSymbols>
<SpecSymbolsRegexStr>some text</SpecSymbolsRegexStr>
</response>
</result>