Overview
This endpoint is used to update product prices. To consume it, you must:
- Be an authenticated user.
For information on how you can authenticate, see Authentication.
As soon as you authenticate and receive a valid token, it needs to be passed on to the service call.
Endpoint
An example of such an endpoint for XX server is:
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: HttpPut
- Authorization: Use Bearer Token (where ‘Token’ is the token received from token authentication)
- Header info: Content-Type: application/json
- Request Body:
{ "ProductID": "string", "SitePrice": 0, "ChannelsPrices": [ { "ChannelID": 0, "Price": 0, "UseDefaultSitePrice": true } ] }
Parameter | Data Type | Description | Is Required |
ProductID | string | Sellercloud SKU of the product you are updating. | Yes |
SitePrice | decimal | Product site price.
This price will be used for the channels that have “UseDefaultSItePrice” set to ‘true.’ Do not provide or set to “null” if no update is needed. |
No |
ChannelPrices | Array | List of channel prices to update.
Do not provide or set to “null” if no update is needed. |
No |
ChannelPrice.ChannelID | enum | The ID of the channel.
Possible values can be found here. |
Yes |
ChannelPrice.Price | decimal | Product price for the channel.
Can be updated only if “UseDefaultSItePrice” is set to ‘false’. To update a channel price that uses the default site price, the ‘SitePrice’ has to be updated, which will update the price of all channels that use the default site price. Do not provide or set to “null” if no update is needed. |
No |
ChannelPrice.UseDefaultSItePrice | bool | Indicates if the channel uses the default site price for the product.
Note: For channel eBay, the UseDefaultSitePrice can only be set to true when the client setting ‘Enable Default Price for eBay’ is enabled and the Company is configured to allow default price for eBay. Do not provide or set to “null” if no update is needed. |
No |
Response
- If the user is authenticated and the price update is successful, then the response will be Status Code 200 => OK.
- 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.