Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save netzkollektiv/51ab5ab6ba7b92bf476c717fb295023b to your computer and use it in GitHub Desktop.
Save netzkollektiv/51ab5ab6ba7b92bf476c717fb295023b to your computer and use it in GitHub Desktop.
<?php
$client->catalogProductTypeConfigurableAssign($session, $configurableProductIdOrSku, $simpleProductIdsOrSkus,
array('color','size'),
array(array(
'key'=>'color',
'value'=>'Color'
),array(
'key'=>'size',
'value'=>'Size'
)),
array(
array(
'key' => 'yellow',
'value' => array(
'pricing_value' => 35,
'is_percent' =>0
),
),
array(
'key' => 'XL',
'value' => array(
'pricing_value' => 20,
'is_percent' => 1
)
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment