Repricing during item setup

You can use pre-set pricing strategies to automatically adjust your item prices. This lets you set rules and limits, so prices change (Repriced) according to the strategies and limits you define.

In the automate_pricing section of the spec, you can set these attributes for each item:

  1. Maximum Seller Allowed Price: The highest price you are willing to sell an item for. This attribute sets an upper limit, so the automated Repricer doesn’t price your item above this value. For example: $49.99
  2. Minimum Seller Allowed Price: The lowest price you are willing to sell an item for. This attribute sets a lower limit, so the automated Repricer doesn’t price your item below this value. For example: $23.99
  3. Repricer Strategy: This determines how and when your item’s price will be adjusted. For example, to stay competitive, follow a custom rule, pause automation, or remove from Repricing.
    Use the Retrieve available Repricer strategy API to get a list of all existing repricer strategies associated with your account. Refer to the API documentation for endpoint details and response format.
  4. Map Repricer strategies to Item setup: From the retrieved list, choose the appropriate Repricer strategy for your item(s).

Example use case

If you want an item’s price to always be competitive, but never go below $23.99 or above $49.99, you would:

  • Set minimumSellerAllowedPrice to 23.99
  • Set maximumSellerAllowedPrice to 49.99
  • Choose your preferred repricerStrategy

The system will then automatically adjust the price within these limits according to the strategy rules.

SFF schema sample showing the Repricing attributes

{ "automate_pricing": { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "maximumSellerAllowedPrice": { "type": "number", "title": "Maximum Seller Allowed Price", "minimum": 0, "maximum": 99999999999999, "multipleOf": 0.01, "description": "Decimal, Value range: 0 to 99999999999999 - Your offer's ceiling/highest price at which you are willing to sell it for. You must set a valid maximum seller allowed price for repricer to take action. Example: 49.99 ", "examples": "", "comments": "" }, "minimumSellerAllowedPrice": { "type": "number", "title": "Minimum Seller Allowed Price", "minimum": 0, "maximum": 99999999999999, "multipleOf": 0.01, "description": "Decimal, Value range: 0 to 99999999999999 - Your offer's floor/lowest price at which you are willing to sell it for. You must set a valid minimum seller allowed price for repricer to take action. Note: The Repricer will not overwrite existing MAP price rules applied through the Price & Promotions Spec. Example: 23.99 ", "examples": "", "comments": "" }, "repricerStrategy": { "type": "string", "title": "Repricer Strategy", "maxLength": 75, "description": "Alphanumeric, 75 characters - Prepopulated list of exisiting repricer strategies name that a seller has setup. The Repricing strategy that you wish to assign to your items. Select from the drop-down or copy and paste the Strategy Name from the Repricer page in Seller Center. This field is case and space sensitive - please ensure that the name matches exactly as it appears on the Repricer page. Select \"No Strategy/Delete from Repricer\" to remove your items from a currently mapped strategy. ", "examples": "", "comments": "" } } }
}