Returns a list of all the groups by the group name specified in the request.
Name | Description | Type | Example |
groupName
sent in body
|
Group name | string | some text |
GET api/2.0/group/search Host: yourportal.onlyoffice.com Content-Type: application/json Accept: application/json { "groupName": "some text" }
List of groups
application/json
{ "status": 0, "response": [ { "Id": "9924256A-739C-462b-AF15-E652A3B1B6EB", "Name": "some text", "Manager": "some text" } ] }
text/xml
<result> <status>0</status> <response> <Id>9924256A-739C-462b-AF15-E652A3B1B6EB</Id> <Name>some text</Name> <Manager>some text</Manager> </response> </result>