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

Description

Returns the security settings for the modules specified in the request.

Parameters
Name Description Type Example
ids
sent in url
List of module IDs Collection of strings
collection
some text
Example
GET api/2.0/settings/security
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "ids": [
    "some text"
  ]
}
Returns

Security settings

Example Response
{
  "status": 0,
  "response": [
    {
      "WebItemId": "some text",
      "Enabled": true,
      "IsSubItem": true
    }
  ]
}