v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
Sales Channels Product Settings

Create product sales channel settings

Creates sales channel settings for a single product.

post/api/v1/products/{id}/salesChannels

Path parameters

idstring required

Resource identifier.

Example:17

The resource's identifier.

Request body

isActiveboolean

Determines if the sales channel connection is active.

useIndividualSalesChannelSettingsboolean

Determines if the individual sales channel settings should be used instead of the general sales channel settings.

isStockNumberSyncActiveboolean

Determines if the stock number synchronization to the sales channel is active.

isRemainingQuantityboolean

Determines if only the remaining quantity of the product is left.

suggestedRetailPricestring

Sets the suggested retail price for the sales channel.

suggestedStockQuantitystring

Sets the suggested stock quantity for the sales channel.

deliveryTimestring

Sets the delivery time.

handlingTimestring

Sets the handling time in days for this product. Must be a non-negative integer. This value is only relevant for Amazon sales channels; other sales channels ignore this field.

createNewProductDuringImportboolean

Determines if a new product should be created during the sales order import from a sales channel.

Example request

{
  "salesChannel": {
    "id": "1337"
  },
  "isActive": true,
  "useIndividualSalesChannelSettings": true,
  "isStockNumberSyncActive": true,
  "isRemainingQuantity": true,
  "suggestedRetailPrice": "25.99",
  "suggestedStockQuantity": "100",
  "deliveryTime": "1 week",
  "handlingTime": "5",
  "createNewProductDuringImport": true
}

Response

Resource successfully created response