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.create (SOAP V1)
  • catalogProductAttributeSetCreate (SOAP V2)

Allows you to create a new attribute set based on another attribute set.

Arguments:

TypeNameDescription
stringsessionIdSession ID
stringattributeSetNameAttribute set name
stringskeletonSetIdAttribute set ID basing on which the new attribute set will be created

Return:

TypeNameDescription
intsetIdID of the created attribute set

Faults:

Fault CodeFault Message
100Attribute set with requested id does not exist.
101Invalid data given.
102Error while creating attribute set. Details in error message.

Examples

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

$setName = "New Attribute Set";
$skeletonId = 4;

$newSetId = $proxy->call(
    $sessionId,
    "product_attribute_set.create",
    array(
         $setName,
         $skeletonId
    )
);
Request Example SOAP V2
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl');
$sessionId = $proxy->login('apiUser', 'apiKey');

$attributeSetName = 'New Attribute Set';
$skeletonId = 4;

$result = $client->catalogProductAttributeSetCreate(
    $sessionId,
    $attributeSetName,
    $skeletonId
);
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->catalogProductAttributeSetCreate((object)array('sessionId' => $sessionId->result, 'attributeSetName' => 'New Attribute Set', 'skeletonSetId' => '4'));
var_dump($result->result);