eBay · Schema

RateTableResponse

This type is the base response of the getRateTables method.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
rateTables array An array of all shipping rate tables defined for a marketplace (or all marketplaces if no country_code query parameter is used). This array will be returned as empty if the seller has no define
View JSON Schema on GitHub

JSON Schema

ebay-ratetableresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RateTableResponse",
  "title": "RateTableResponse",
  "type": "object",
  "properties": {
    "rateTables": {
      "type": "array",
      "description": "An array of all shipping rate tables defined for a marketplace (or all marketplaces if no <b>country_code</b> query parameter is used). This array will be returned as empty if the seller has no defined shipping rate tables for the specified marketplace.",
      "items": {
        "$ref": "#/components/schemas/RateTable"
      }
    }
  },
  "description": "This type is the base response of the <b>getRateTables</b> method."
}