Get Product Prices - Sellercloud API Docs

Overview

This endpoint allows you to pull existing product prices. To consume it, you must:

For information on how you can authenticate, see Authentication

Once you authenticate and receive a valid token, it must be passed on to the call.

Endpoint

NOTE: Endpoint “GET /api/Catalog/{productID}/Prices” is obsolete as it does not support special characters in the productID. Use the new endpoint presented in this article.

Example for such endpoint for XX server:

https://xx.api.sellercloud.com/rest/api/Catalog/Prices

For your server endpoint will be:

​https://{your_server_id}.api.sellercloud.com/rest/api/Catalog/Prices

Request

Parameters Data Type Description Is Required
productID integer ID of product Yes

Response

Response Body

Channel ID enumerations can be found here.

{
  "StopLossPrice": 0,
  "SitePrice": 0,
  "ChannelsPrices": [
    {
      "ChannelID": 0,
      "Price": 0,
      "UseDefaultSitePrice": true
    }
  ]
}