🔴DELETE groups/users
Add a user to an organisation group.
URL
POST https://training.tapintosafety.com.au/api/v2/groups/{Group Id}/users/{User Id}Parameters
URL Parameters
Name
Description
Group Id*
The Id of the group to remove the given user from. Formatted as a GUID. A list of groups can be found using GET groups.
User Id*
The Id of the user to remove from the given group. Formatted as a GUID. A list of users can be found using GET users.
* required
curl https://training.tapintosafety.com.au/api/v2/groups/00000000-0000-0000-0000-000000000000/users/00000000-0000-0000-0000-000000000000 \
-X DELETE \
-H "Authorization: Bearer $APIKey"Responses
204 - OK
No response body.
400 - Bad Request
Error Code: GROUP_NOT_FOUND
A group could not be found with the specified Group Id.
400 - Bad Request
Error Code: USER_NOT_FOUND
A user could not be found with the specified userId.
Last updated