Automate Pricing

The Automate Pricing feature allows sellers to automatically adjust their offer prices based on market conditions and competitor pricing. This feature is available through three main API endpoints: Create a new offer, Update Offer and Update Offer Price.

Feature Description

Automate Pricing enables sellers to:

  • Set price limits (lower and upper bounds)

  • Define price change factors and intervals

  • Automatically adjust prices based on market conditions

  • Enable/disable automation for individual offers

AutomatePriceOptions Parameters

Parameter
Type
Required
Description
Constraints

lowerPriceLimit

number

Yes

Minimum price the offer can reach

0.1 ≤ value < 3000

upperPriceLimit

number

Yes

Maximum price the offer can reach

0.1 ≤ value < 3000, must be > lowerPriceLimit

priceChangeFactor

number

Yes

Factor by which price changes (percentage)

0.01 ≤ value ≤ 500

priceChangeInterval

number

Yes

Time interval between price changes (seconds)

Must be one of: 300, 900, 1800, 3600, 7200, 14400

automatePriceStatus

string

Yes

Enable or disable automation

enable or disable (default: enable)

Validation Rules

Price Limits

  • lowerPriceLimit: Must be between 0.1 and 3000 (exclusive)

  • upperPriceLimit: Must be between 0.1 and 3000 (exclusive)

  • upperPriceLimit must be greater than lowerPriceLimit

Price Change Factor

  • Must be between 0.01 and 500 (inclusive)

  • Suggested values: 0.01, 0.02, 0.03

  • Represents the percentage by which price can change

Price Change Interval

  • Must be one of the following values (in seconds):

    • 300 (5 minutes)

    • 900 (15 minutes)

    • 1800 (30 minutes)

    • 3600 (1 hour)

    • 7200 (2 hours)

    • 14400 (4 hours)

Automate Price Status

  • Must be either enable or disable

Last updated