eBay · Schema

ShippingFulfillmentPagedCollection

This type contains the specifications for the entire collection of shipping fulfillments that are associated with the order specified by a getShippingFulfillments call. The fulfillments container returns an array of all the fulfillments in the collection.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
fulfillments array This array contains one or more fulfillments required for the order that was specified in method endpoint.
total integer The total number of fulfillments in the specified order.

Note: If no fulfillments are found for the order, this field is returned with a value of
warnings array This array is only returned if one or more errors or warnings occur with the call request.
View JSON Schema on GitHub

JSON Schema

ebay-shippingfulfillmentpagedcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShippingFulfillmentPagedCollection",
  "title": "ShippingFulfillmentPagedCollection",
  "type": "object",
  "properties": {
    "fulfillments": {
      "type": "array",
      "description": "This array contains one or more fulfillments required for the order that was specified in method endpoint.",
      "items": {
        "$ref": "#/components/schemas/ShippingFulfillment"
      }
    },
    "total": {
      "type": "integer",
      "description": "The total number of fulfillments in the specified order.<br><br><span class=\"tablenote\"><strong>Note:</strong> If no fulfillments are found for the order, this field is returned with a value of <code>0</code>.</span>",
      "format": "int32"
    },
    "warnings": {
      "type": "array",
      "description": "This array is only returned if one or more errors or warnings occur with the call request.",
      "items": {
        "$ref": "#/components/schemas/Error"
      }
    }
  },
  "description": "This type contains the specifications for the entire collection of shipping fulfillments that are associated with the order specified by a <b>getShippingFulfillments</b> call. The <b>fulfillments</b> container returns an array of all the fulfillments in the collection."
}