Update Offer Price
This API lets you update the price of your Offer/Auction.
Rate Limiting applies to this API endpoint and is set to 1 requests per 3 seconds.
PUT /offer/update-price
Headers
Content-Type
application/json
Authorization
Bearer <token>
Body
offerId
ID of the Offer
body
number
Yes
price
New selling price ("You get" price). commission will be applied to this price.
body
number
Yes
wholesale
Specifies wholesale enable status and tier-based discounts by purchase quantity. Wholesale Pricing Feature
body
{"enabled":true,"tiers":[{"level":1,"discount":10},{"level":2,"discount":15}]}
No
automatePriceOptions
configures automated price adjustments for an offer Automate Pricing
body
{"lowerPriceLimit":8.99,"upperPriceLimit":12.99,"priceChangeFactor":0.05,"priceChangeInterval":3600,"automatePriceStatus":"enable"}
No
Response
{
"message": "string",
"statusCode": 200
}{
"message": "Bad Request. Wrong/Invalid params format.",
"statusCode": 400
}{
"message": "UnAuthorized request. Invalid/Expired token",
"statusCode": 401
}{
"message": "Forbidden Request. Action not allowed or Rate Limit exhausted.",
"statusCode": 403
}{
"message": "Internal Server Error",
"statusCode": 500
}Last updated