--- layout: m1x_soap title: Attribute Set Create ---
Allows you to create a new attribute set based on another attribute set.
Arguments:
| Type | Name | Description |
|---|---|---|
| string | sessionId |
Session ID |
| string | attributeSetName | Attribute set name |
| string |
skeletonSetId | Attribute set ID basing on which the new attribute set will be created |
Return:
| Type | Name | Description |
|---|---|---|
| int | setId | ID of the created attribute set |
Faults:
| Fault Code | Fault Message |
|---|---|
| 100 | Attribute set with requested id does not exist. |
| 101 | Invalid data given. |
| 102 | Error while creating attribute set. Details in error message. |
$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
)
);
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl');
$sessionId = $proxy->login('apiUser', 'apiKey');
$attributeSetName = 'New Attribute Set';
$skeletonId = 4;
$result = $client->catalogProductAttributeSetCreate(
$session,
$attributeSetName,
$skeletonId
);
$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);