--- layout: m1x_soap title: Attribute Set Group Remove ---
Allows you to remove a group from an attribute set.
Arguments:
| Type | Name | Description |
|---|---|---|
| string | sessionId |
Session ID |
| string |
attributeGroupId | Group ID |
Return:
| Type | Description |
|---|---|
| boolean\int | True (1) if the group is removed |
Faults:
| Fault Code | Fault Message |
|---|---|
| 108 | Attribute group with requested id does not exist. |
| 115 | Error while removing group from attribute set. Details in error message. |
| 116 | Group can not be removed as it contains system attributes. |
| 117 | Group can not be removed as it contains attributes, used in configurable products. |
$proxy = new SoapClient('http://magentohost/api/soap/?wsdl');
$sessionId = $proxy->login('apiUser', 'apiKey');
$groupId = 70;
$result = $proxy->call(
$sessionId,
"product_attribute_set.groupRemove",
array(
$groupId
)
);
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl'); // TODO : change url
$sessionId = $proxy->login('apiUser', 'apiKey'); // TODO : change login and pwd if necessary
$result = $proxy->catalogProductAttributeSetGroupRemove($sessionId, '70');
var_dump($result);
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl');
$sessionId = $proxy->login((object)array('username' => 'apiUser', 'apiKey' => 'apiKey'));
$result = $proxy->catalogProductAttributeSetGroupRemove((object)array('sessionId' => $sessionId->result, 'attributeGroupId' => '70'));
var_dump($result->result);