eBay · Schema

BulkPriceQuantityResponse

This type is use by the base response payload of the bulkUpdatePriceQuantity call. The bulkUpdatePriceQuantity call response will return an HTTP status code, offer ID, and SKU value for each offer/inventory item being updated, as well as an errors and/or warnings container if any errors or warnings are triggered while trying to update those offers/inventory items.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
responses array This container will return an HTTP status code, offer ID, and SKU value for each offer/inventory item being updated, as well as an errors and/or warnings container if
View JSON Schema on GitHub

JSON Schema

ebay-bulkpricequantityresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkPriceQuantityResponse",
  "title": "BulkPriceQuantityResponse",
  "type": "object",
  "properties": {
    "responses": {
      "type": "array",
      "description": "This container will return an HTTP status code, offer ID, and SKU value for each offer/inventory item being updated, as well as an <strong>errors</strong> and/or <strong>warnings</strong> container if any errors or warnings are triggered while trying to update those offers/inventory items.",
      "items": {
        "$ref": "#/components/schemas/PriceQuantityResponse"
      }
    }
  },
  "description": "This type is use by the base response payload of the <strong>bulkUpdatePriceQuantity</strong> call. The <strong>bulkUpdatePriceQuantity</strong> call response will return an HTTP status code, offer ID, and SKU value for each offer/inventory item being updated, as well as an <strong>errors</strong> and/or <strong>warnings</strong> container if any errors or warnings are triggered while trying to update those offers/inventory items."
}