You can delete a group by sending the DELETE request to the following URL: /group/<group_id>.

Permission to run the request: Account Owner, Administrator, Organization Administrator. 


Request Headers

ParameterDescription
X-Auth-Account-Url (required)Base URL of the account, e.g. http://myaccount.ispringlearn.com
X-Auth-Email (required)Administrator e-mail address.
X-Auth-Password (required)Administrator password.

After the request has been completed, the system returns the response with Code 204.

 

Possible Response Codes

CodeTextDescription
404Unknown groupThe group with the specified ID was not found.
403Permission deniedYou have no permissions to delete the specified group.
204No ContentThe group has been deleted.

Sample Request

DELETE /group/1 HTTP/1.1
Host: api.ispringonline.com
X-Auth-Account-Url: http://myaccount.ispringlearn.com
X-Auth-Email: email@email.com
X-Auth-Password: password
XML

Sample Response

HTTP/1.1 204 No Content
Connection: close
XML