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

Description

Returns the information about the Documents module.

Parameters

This method doesn't have any parameters.

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

Module information: ID, product class name, title, description, icon URL, large icon URL, start URL, primary or nor, help URL

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>