Removing A Group Owner

Removing a Group Owner

Using the DELETE method, you can remove a Group Owner. Please note that this action may only be performed if the Group Owner is not associated with a Number Group.

DELETE https://api.telmetrics.com/v3/api/GroupOwners/{groupid}

The following sample request can be used to close a Group:

curl -H "x-organization-token: {authorization_token}" \
     -X DELETE \
     "https://api.telmetrics.com/v3/api/GroupOwners/11623279"

If the request is handled successfully, the following response will be returned:

200 OK

Removing a Group Owner from a Number Group

Occasionally you may want to remove a Group Owner from a Number Group.

DELETE https://api.telmetrics.com/v3/api/GroupOwners/[id]/groups/[groupid]

The following sample request can be used to remove a Group Owner from a Group:

curl -H "x-organization-token: {authorization_token}" \
     -X DELETE \
     "https://api.telmetrics.com//v3/api/GroupOwners/191617/groups/97261"

If the request is handled successfully, the following response will be returned:

200 OK