Get Started
API backend
API system
More information

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

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>