Get Product Prices

Overview

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

  • Be an authenticated user.

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

  • Method Type: HttpGet
  • Authorization: Use Bearer Token (where ‘Token’ is the token received from the token authentication)
  • Header info: Content-Type: application/json
  • Parameters:
Parameters Data Type Description Is Required
productID integer ID of product Yes

Response

  • If the user is authenticated, then the response will be Status Code 200 => OK and product prices data in JSON format in the response body.
  • If the user is not authenticated, then the response will be Status Code 401 => Not Valid Token.
  • In case of an error, the response will be Status Code 500 => Internal Server Error.

Response Body

Channel ID enumerations can be found here.

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

Was this article helpful?

Next
Update Product Prices