Get Started
API backend
API system
More information

PUT api/2.0/group/{groupid}/members/{newgroupid} This function requires authentication

Description

Moves all the members from the selected group to another one specified in the request.

Parameters
Name Description Type Example
groupid
sent in url
Group ID to move from guid 9924256A-739C-462b-AF15-E652A3B1B6EB
newgroupid
sent in url
Group ID to move to guid 9924256A-739C-462b-AF15-E652A3B1B6EB
Example
PUT api/2.0/group/%229924256A-739C-462b-AF15-E652A3B1B6EB%22/members/%229924256A-739C-462b-AF15-E652A3B1B6EB%22
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

Group with the following parameters

Example Response

application/json

{
  "status": 0,
  "response": {
    "Description": "some text",
    "Name": "some text",
    "Category": "9924256A-739C-462b-AF15-E652A3B1B6EB",
    "Id": "9924256A-739C-462b-AF15-E652A3B1B6EB"
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <Description>some text</Description>
    <Name>some text</Name>
    <Category>9924256A-739C-462b-AF15-E652A3B1B6EB</Category>
    <Id>9924256A-739C-462b-AF15-E652A3B1B6EB</Id>
  </response>
</result>