removedInput schema / properties / promotion
Removed value: -{
- "additionalProperties": false,
- "description": "Markdown promotion configuration",
- "properties": {
- "discountPercentage": {
- "description": "Discount percentage (e.g., \"20\")",
- "type": "string"
- },
- "endDate": {
- "description": "End date (ISO 8601 format)",
- "type": "string"
- },
- "marketplaceId": {
- "description": "Marketplace ID",
- "enum": [
- "EBAY_AT",
- "EBAY_AU",
- "EBAY_BE",
- "EBAY_CA",
- "EBAY_CH",
- "EBAY_CN",
- "EBAY_CZ",
- "EBAY_DE",
- "EBAY_DK",
- "EBAY_ES",
- "EBAY_FI",
- "EBAY_FR",
- "EBAY_GB",
- "EBAY_GR",
- "EBAY_HK",
- "EBAY_HU",
- "EBAY_ID",
- "EBAY_IE",
- "EBAY_IL",
- "EBAY_IN",
- "EBAY_IT",
- "EBAY_JP",
- "EBAY_MY",
- "EBAY_NL",
- "EBAY_NO",
- "EBAY_NZ",
- "EBAY_PE",
- "EBAY_PH",
- "EBAY_PL",
- "EBAY_PR",
- "EBAY_PT",
- "EBAY_RU",
- "EBAY_SE",
- "EBAY_SG",
- "EBAY_TH",
- "EBAY_TW",
- "EBAY_US",
- "EBAY_VN",
- "EBAY_ZA",
- "EBAY_HALF_US",
- "EBAY_MOTORS_US"
- ],
- "type": "string"
- },
- "name": {
- "description": "Promotion name",
- "type": "string"
- },
- "startDate": {
- "description": "Start date (ISO 8601 format)",
- "type": "string"
- }
- },
- "required": [
- "name",
- "marketplaceId",
- "startDate",
- "endDate"
- ],
- "type": "object"
-}
addedInput schema / properties / request
Added value: +{
+ "additionalProperties": false,
+ "description": "Create item price markdown promotion request body",
+ "properties": {
+ "applyFreeShipping": {
+ "type": "boolean"
+ },
+ "autoSelectFutureInventory": {
+ "type": "boolean"
+ },
+ "blockPriceIncreaseInItemRevision": {
+ "type": "boolean"
+ },
+ "description": {
+ "type": "string"
+ },
+ "endDate": {
+ "type": "string"
+ },
+ "marketplaceId": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "priority": {
+ "type": "string"
+ },
+ "promotionImageUrl": {
+ "type": "string"
+ },
+ "promotionStatus": {
+ "type": "string"
+ },
+ "selectedInventoryDiscounts": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "discountBenefit": {
+ "additionalProperties": false,
+ "properties": {
+ "amountOffItem": {
+ "additionalProperties": false,
+ "properties": {
+ "currency": {
+ "type": "string"
+ },
+ "value": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "amountOffOrder": {
+ "$ref": "#/properties/request/properties/selectedInventoryDiscounts/items/properties/discountBenefit/properties/amountOffItem"
+ },
+ "percentageOffItem": {
+ "type": "string"
+ },
+ "percentageOffOrder": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "discountId": {
+ "type": "string"
+ },
+ "inventoryCriterion": {
+ "additionalProperties": false,
+ "properties": {
+ "inventoryCriterionType": {
+ "type": "string"
+ },
+ "inventoryItems": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "inventoryReferenceId": {
+ "type": "string"
+ },
+ "inventoryReferenceType": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "listingIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "ruleCriteria": {
+ "additionalProperties": false,
+ "properties": {
+ "excludeInventoryItems": {
+ "items": {
+ "$ref": "#/properties/request/properties/selectedInventoryDiscounts/items/properties/inventoryCriterion/properties/inventoryItems/items"
+ },
+ "type": "array"
+ },
+ "excludeListingIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "markupInventoryItems": {
+ "items": {
+ "$ref": "#/properties/request/properties/selectedInventoryDiscounts/items/properties/inventoryCriterion/properties/inventoryItems/items"
+ },
+ "type": "array"
+ },
+ "markupListingIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "selectionRules": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "brands": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "categoryIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "categoryScope": {
+ "type": "string"
+ },
+ "listingConditionIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "maxPrice": {
+ "$ref": "#/properties/request/properties/selectedInventoryDiscounts/items/properties/discountBenefit/properties/amountOffItem"
+ },
+ "minPrice": {
+ "$ref": "#/properties/request/properties/selectedInventoryDiscounts/items/properties/discountBenefit/properties/amountOffItem"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "ruleOrder": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "startDate": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+}
changedInput schema / required
Previous value: -[
- "promotion"
-]New value: +[
+ "request"
+]