Group related paths
- GET /api/v4/teams/{team_id}/groups
Get all groups in the team.
- DELETE /api/v4/teams/{team_id}/groups
Delete the group.
- Parameters:
team_id – ID of the team.
- Response JSON Object:
ok (boolean) – True if no error occured.
- Status Codes:
200 OK – No error.
- GET /api/v4/teams/{team_id}/groups/{group_id}/members
Get the list of group members.
- Parameters:
team_id – ID of the team.
group_id – ID of the group.
- Response JSON Object:
ok (boolean) – True if no error occured.
result (array) – List of GroupMembership objects.
- Status Codes:
200 OK – No error.
- DELETE /api/v4/teams/{team_id}/groups/{group_id}/members/{contact_id}
Remove member from the group.
- Parameters:
team_id – ID of the team.
contact_id – ID of the contact.
group_id – ID of the group.
- Response JSON Object:
ok (boolean) – True if no error occured.
result (object) – The GroupMembership object.
- Status Codes:
200 OK – No error.