Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Module: Product Attribute Set API

Resource: product_attribute_set

Method:
  • product_attribute_set.attributeRemove (SOAP V1)
  • catalogProductAttributeSetAttributeRemove (SOAP V2)

Allows you to remove an existing attribute from an attribute set.

Arguments:

TypeNameDescription
stringsessionIdSession ID
stringattributeIdAttribute ID
stringattributeSetIdAttribute set ID

Returns:

TypeNameDescription
booleanisRemovedTrue if the attribute is removed from an attribute set

Faults:

Fault CodeFault Message
104Attribute set with requested id does not exist.
106Attribute with requested id does not exist.
110Error while removing attribute from attribute set. Details in error message.
111Requested attribute is not in requested attribute set.

Examples

Request Example SOAP V1
$proxy = new SoapClient('http://magentohost/api/soap/?wsdl');
$sessionId = $proxy->login('apiUser', 'apiKey');

$setId = 5;
$attributeId = 83;

$result = $proxy->call(
    $sessionId,
    "product_attribute_set.attributeRemove",
    array(
         $attributeId,
         $setId
    )
);
Request Example SOAP V2
$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->catalogProductAttributeSetAttributeRemove($sessionId, '5', '83');
var_dump($result);
Request Example SOAP V2 (WS-I Compliance Mode)
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl');

$sessionId = $proxy->login((object)array('username' => 'apiUser', 'apiKey' => 'apiKey'));

$result = $proxy->catalogProductAttributeSetAttributeRemove((object)array('sessionId' => $sessionId->result, 'attributeId' => '5', 'attributeSetId' => '83'));
var_dump($result->result);