addedInput schema / properties / allowCounterOffer
Added value: +{
+ "description": "Whether to allow counter-offers (currently must be false)",
+ "type": "boolean"
+}
removedInput schema / properties / allow_counter_offer
Removed value: -{
- "description": "Whether to allow counter-offers (currently must be false)",
- "type": "boolean"
-}
addedInput schema / properties / marketplaceId
Added value: +{
+ "description": "The eBay marketplace ID (X-EBAY-C-MARKETPLACE-ID header)",
+ "type": "string"
+}
removedInput schema / properties / marketplace_id
Removed value: -{
- "description": "The eBay marketplace ID (X-EBAY-C-MARKETPLACE-ID header)",
- "type": "string"
-}
addedInput schema / properties / offerDuration
Added value: +{
+ "additionalProperties": false,
+ "description": "Duration the offer is valid (default: 2 days)",
+ "properties": {
+ "unit": {
+ "description": "Time unit (currently must be DAY)",
+ "type": "string"
+ },
+ "value": {
+ "description": "Duration value (currently must be 2)",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+}
removedInput schema / properties / offer_duration
Removed value: -{
- "additionalProperties": false,
- "description": "Duration the offer is valid (default: 2 days)",
- "properties": {
- "unit": {
- "description": "Time unit (currently must be DAY)",
- "type": "string"
- },
- "value": {
- "description": "Duration value (currently must be 2)",
- "type": "integer"
- }
- },
- "type": "object"
-}
addedInput schema / properties / offeredItems
Added value: +{
+ "description": "Array of items to offer (currently limited to one item)",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "discountPercentage": {
+ "description": "Percentage discount (minimum 5)",
+ "type": "string"
+ },
+ "listingId": {
+ "description": "The unique eBay listing ID",
+ "type": "string"
+ },
+ "price": {
+ "additionalProperties": false,
+ "description": "The discounted price",
+ "properties": {
+ "currency": {
+ "description": "3-letter ISO 4217 currency code",
+ "type": "string"
+ },
+ "value": {
+ "description": "The monetary amount",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "quantity": {
+ "description": "Number of items (all-or-nothing offer)",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+}
removedInput schema / properties / offered_items
Removed value: -{
- "description": "Array of items to offer (currently limited to one item)",
- "items": {
- "additionalProperties": false,
- "properties": {
- "discount_percentage": {
- "description": "Percentage discount (minimum 5)",
- "type": "string"
- },
- "listing_id": {
- "description": "The unique eBay listing ID",
- "type": "string"
- },
- "price": {
- "additionalProperties": false,
- "description": "The discounted price",
- "properties": {
- "currency": {
- "description": "3-letter ISO 4217 currency code",
- "type": "string"
- },
- "value": {
- "description": "The monetary amount",
- "type": "string"
- }
- },
- "type": "object"
- },
- "quantity": {
- "description": "Number of items (all-or-nothing offer)",
- "type": "integer"
- }
- },
- "type": "object"
- },
- "type": "array"
-}