GET api/2.0/modules/info This function requires authentication

Description

Returns a list of all the portal modules with their information.

Parameters

This method doesn't have any parameters.

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

List of modules with their information

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "Id": "9924256A-739C-462b-AF15-E652A3B1B6EB",
      "AppName": "some text",
      "Title": "some text",
      "Link": "some text",
      "IconUrl": "some text",
      "ImageUrl": "some text",
      "HelpUrl": "some text",
      "Description": "some text",
      "IsPrimary": true
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <Id>9924256A-739C-462b-AF15-E652A3B1B6EB</Id>
    <AppName>some text</AppName>
    <Title>some text</Title>
    <Link>some text</Link>
    <IconUrl>some text</IconUrl>
    <ImageUrl>some text</ImageUrl>
    <HelpUrl>some text</HelpUrl>
    <Description>some text</Description>
    <IsPrimary>True</IsPrimary>
  </response>
</result>