GET api/2.0/group This function requires authentication

Description

Returns the general information about all the groups, such as group ID and group manager.

Parameters

This method doesn't have any parameters.

Remark

This method returns partial group information.

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

List of groups

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "Id": "00000000-0000-0000-0000-000000000000",
      "Name": "Group Name",
      "Manager": "Jake.Zazhitski"
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <Id>00000000-0000-0000-0000-000000000000</Id>
    <Name>Group Name</Name>
    <Manager>Jake.Zazhitski</Manager>
  </response>
</result>