eBay · Schema

BulkEbayOfferDetailsWithKeys

This type is used by the base request of the bulkCreateOffer method, which is used to create up to 25 new offers.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
requests array The details of each offer that is being created is passed in under this container. Up to 25 offers can be created with one bulkCreateOffer call.
View JSON Schema on GitHub

JSON Schema

ebay-bulkebayofferdetailswithkeys-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkEbayOfferDetailsWithKeys",
  "title": "BulkEbayOfferDetailsWithKeys",
  "type": "object",
  "properties": {
    "requests": {
      "type": "array",
      "description": "The details of each offer that is being created is passed in under this container. Up to 25 offers can be created with one <strong>bulkCreateOffer</strong> call.",
      "items": {
        "$ref": "#/components/schemas/EbayOfferDetailsWithKeys"
      }
    }
  },
  "description": "This type is used by the base request of the <strong>bulkCreateOffer</strong> method, which is used to create up to 25 new offers."
}