You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$api_instance = new ChannelEngine\ApiClient\Api\OfferApi();
25
+
$api_instance = new ChannelEngine\ApiClient\Api\OfferApi(new \Http\Adapter\Guzzle6\Client());
26
26
$updates = array(new \ChannelEngine\ApiClient\Model\MerchantStockPriceUpdateRequest()); // \ChannelEngine\ApiClient\Model\MerchantStockPriceUpdateRequest[] | References to the products that should be updated, and the new values for the stock or price fields. It is possible to supply only one of the two fields or both.
$api_instance = new ChannelEngine\ApiClient\Api\OrderApi();
32
+
$api_instance = new ChannelEngine\ApiClient\Api\OrderApi(new \Http\Adapter\Guzzle6\Client());
33
33
$model = new \ChannelEngine\ApiClient\Model\OrderAcknowledgement(); // \ChannelEngine\ApiClient\Model\OrderAcknowledgement | Relations between the id's returned by ChannelEngine and the references which the merchant uses
$api_instance = new ChannelEngine\ApiClient\Api\ProductApi();
33
+
$api_instance = new ChannelEngine\ApiClient\Api\ProductApi(new \Http\Adapter\Guzzle6\Client());
34
34
$changes = new \ChannelEngine\ApiClient\Model\ChannelProcessedChangesRequest(); // \ChannelEngine\ApiClient\Model\ChannelProcessedChangesRequest | The merchant references of the products which have been successfully created, updated or deleted (after a call to 'GetDataChanges')
**changes** | [**\ChannelEngine\ApiClient\Model\ChannelProcessedChangesRequest**](../Model/\ChannelEngine\ApiClient\Model\ChannelProcessedChangesRequest.md)| The merchant references of the products which have been successfully created, updated or deleted (after a call to 'GetDataChanges') |
49
+
**changes** | [**\ChannelEngine\ApiClient\Model\ChannelProcessedChangesRequest**](../Model/ChannelProcessedChangesRequest.md)| The merchant references of the products which have been successfully created, updated or deleted (after a call to 'GetDataChanges') |
For merchants. Create a product. The parent serves as the 'base' product of the children. For example, the children could be different sizes or colors of the parent product. For channels where every size and color are different products this does not make any difference (the children will just be sent separately, while ignoring the parent). But there are channels where the parent and the children need to be sent together, for example when there is one product with a list of sizes. In this case all the product information is retrieved from the parent product while the size list is generated from the children. Note that the parent itself is a 'blueprint' of the child products and we do our best to make sure it does not end up on the marketplaces itself. Only the children can be purchased. It's not possible to nest parent and children more than one level (A parent can have many children, but any child cannot itself also have children). The supplied MerchantProductNo needs to be unique.
121
+
For merchants. Upsert (update or create) products. The parent serves as the 'base' product of the children. For example, the children could be different sizes or colors of the parent product. For channels where every size and color are different products this does not make any difference (the children will just be sent separately, while ignoring the parent). But there are channels where the parent and the children need to be sent together, for example when there is one product with a list of sizes. In this case all the product information is retrieved from the parent product while the size list is generated from the children. Note that the parent itself is a 'blueprint' of the child products and we do our best to make sure it does not end up on the marketplaces itself. Only the children can be purchased. It's not possible to nest parent and children more than one level (A parent can have many children, but any child cannot itself also have children). The supplied MerchantProductNo needs to be unique.
@@ -168,7 +168,7 @@ Name | Type | Description | Notes
168
168
169
169
Merchant: Delete Product
170
170
171
-
For merchants. Deactivate a product based on the merchant reference. Note that we do not really delete a product, as the product might still be referenced by orders etc. Therefore, the references used for this product cannot be reused. We do however deactivate the product which means that it will not be sent to channels.
171
+
For merchants. Delete a product based on the merchant reference. Note that we do not really delete a product, as the product might still be referenced by orders etc. Therefore, the references used for this product cannot be reused. We do however deactivate the product which means that it will not be sent to channels.
0 commit comments