eBay · Schema

BulkOffer

This type is used by the base request of the bulkPublishOffer method, which is used to publish up to 25 different offers.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
requests array This container is used to pass in an array of offers to publish. Up to 25 offers can be published with one bulkPublishOffer method.
View JSON Schema on GitHub

JSON Schema

ebay-bulkoffer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkOffer",
  "title": "BulkOffer",
  "type": "object",
  "properties": {
    "requests": {
      "type": "array",
      "description": "This container is used to pass in an array of offers to publish. Up to 25 offers can be published with one <strong>bulkPublishOffer</strong> method.",
      "items": {
        "$ref": "#/components/schemas/OfferKeyWithId"
      }
    }
  },
  "description": "This type is used by the base request of the <strong>bulkPublishOffer</strong> method, which is used to publish up to 25 different offers."
}