Add users to group
Description
Adds one or more users to a given group.
HTTP method
POST
Request

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

Example header format:
Authorization: Basic <authorization token returned from the login method>
Content-Type: application/json
Parameter | Description/Comments |
---|---|
ID |
(string) Group's ID. Can be retrieved via Get all groups. |

Parameter | Description/Comments |
---|---|
Id | (string) User's id. Can be retrieved via Get all users. |

{
"Users": [
{
"Id": 0
}
]
}
Response

{
"Errors": []
}

200 OK