Account Owner, Account Administrators, Department Administrators, or custom roles.
| Parameter | Type | Description |
|---|---|---|
| token (required) | string | Access token. You can obtain a token by making a request. |
| groupId (required) | string | The ID of a group you want to delete. |
After the request has been successfully processed, the system returns an object with the following properties:
| Параметр | Тип | Описание |
|---|---|---|
| success | bool | True if the group has been deleted. |
Error | Description |
|---|---|
| Permission denied | The user has no permissions to delete groups. |
| Wrong parameters | The group with the given ID wasn't found. |
<?xml version="1.0" encoding="utf-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="https://schemas.xmlsoap.org/soap/envelope/"
xmlns="https://ispringlearn.com/go/services/api/soap">
<SOAP-ENV:Body>
<RemoveGroupRequest>
<credentials>
<token>p-1sJDjmULL5DdpXPJTcbm4jVIaWVHvNmrjAxATRbNE</token>
</credentials>
<groupId>string</groupId>
</RemoveGroupRequest>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope> |
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="https://schemas.xmlsoap.org/soap/envelope/"
xmlns="https://ispringlearn.com/go/services/api/soap">
<SOAP-ENV:Body>
<successResult>
<success>true</success>
</successResult>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope> |