Skip to content

Latest commit

 

History

History
76 lines (53 loc) · 1.04 KB

File metadata and controls

76 lines (53 loc) · 1.04 KB
sidebar_position 27

Remove users from group

Description

Removes one or more users from a group.

URL

http://{Admin API IP}:{port#}/api/v1/groups/{id}/Users

Parameter Description/Comments
id (string) Group's id. Can be retrieved via Get all groups.

HTTP method

DELETE

Request

Headers

Example header format:

Authorization: Basic <authorization token returned from the login method>

Content-Type: application/json

Request body
Parameter Description/Comments
Id (string) User's id. Can be retrieved via Get group's users.
Request example
{
  "Users": [
    {
      "Id": 0
    }
  ]
}

Response

Response example
{
    "Errors": []
}
Response code
200 OK