Delete SKU codes
Last updated: 27-Sep-2021
Rate this article:
Overview
Use the deleteSku method to remove product SKU codes through an API call using the below parameters.
Request Parameters
Parameters | Required | Type/Description |
---|---|---|
ProductCode | Required | String. The product code that you can define for each of your offerings. Needs to be unique. |
PriceConfigurations | Required | String. |
PriceConfigurationCode | Required | String. Unique identifier of the pricing configuration. |
SkuCode | Required | String. Unique identifier of the SKU schema. |
Request Example
<?php
require ('PATH_TO_AUTH');
$product = new \stdClass();
$product->ProductCode= '6B3CB17DDA_COPY1';
$pricingConfiguration = new \stdClass();
$pricingConfiguration->PriceConfigurationCode = 'E684EC99B0';
$pricingConfiguration->SKUs = ['Product_Test_SKU_001050', 'Product_Test_SKU_001053'];
$product->PriceConfigurations = [$pricingConfiguration];
try {
$skuOutput = $client->deleteSku($sessionID, [$product]);
} catch (SoapFault $e) {
echo "deleteSku: " . $e->getMessage();
exit;
}
var_dump("deleteSku", $skuOutput);
Response Parameters
Parameters | Type/Description |
---|---|
ProductCode | String |
PriceConfigurations | String |
PriceConfigurationCode | String |
Response Example
array(1) {
[0] =>
class stdClass#5 (4) {
public $ProductCode =>
string(16) "6B3CB17DDA_COPY1"
public $PriceConfigurations =>
array(1) {
[0] =>
class stdClass#6 (3) {
public $PriceConfigurationCode =>
string(10) "E684EC99B0"
public $SKUs =>
array(2) {
[0] =>
string(23) "Product_Test_SKU_001050"
[1] =>
string(23) "Product_Test_SKU_001053"
}
public $Errors =>
array(0) {
}
}
}
public $SKUs =>
array(0) {
}
public $Errors =>
array(0) {
}
}
}
Rate this article: