Get Started
API backend
API system
More information

GET api/2.0/capabilities This function requires authentication

Description

Returns the information about portal capabilities.

Parameters

This method doesn't have any parameters.

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

Portal capabilities

Example Response

application/json

{
  "status": 0,
  "response": {
    "LdapEnabled": true,
    "Providers": [
      "some text"
    ],
    "SsoLabel": "some text",
    "OauthEnabled": true,
    "SsoUrl": "some text"
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <LdapEnabled>True</LdapEnabled>
    <Providers>[
  "some text"
]</Providers>
    <SsoLabel>some text</SsoLabel>
    <OauthEnabled>True</OauthEnabled>
    <SsoUrl>some text</SsoUrl>
  </response>
</result>