eBay · Schema

DeliveryCost

This type contains a breakdown of all costs associated with the fulfillment of a line item.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
discountAmount object The amount of any shipping discount that has been applied to the line item. This container is returned only if a shipping discount applies to the line item.
handlingCost object The amount of any handing cost that has been applied to the line item. This container is returned only if a handling cost applies to the line item.
importCharges object The amount of any import charges applied to international shipping of the line item. This container is only returned if import charges apply to the line item.
shippingCost object The total cost of shipping all units of the line item. This container is always returned even when the shipping cost is free, in which case the value field will show 0.0 (dollars).
shippingIntermediationFee object This field shows the fee due to eBay's international shipping provider for a line item that is being shipped through the Global Shipping Program.

This container is only returned for line items
View JSON Schema on GitHub

JSON Schema

ebay-deliverycost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeliveryCost",
  "title": "DeliveryCost",
  "type": "object",
  "properties": {
    "discountAmount": {
      "description": "The amount of any shipping discount that has been applied to the line item. This container is returned only if a shipping discount applies to the line item.",
      "$ref": "#/components/schemas/Amount"
    },
    "handlingCost": {
      "description": "The amount of any handing cost that has been applied to the line item. This container is returned only if a handling cost applies to the line item.",
      "$ref": "#/components/schemas/Amount"
    },
    "importCharges": {
      "description": "The amount of any import charges applied to international shipping of the line item. This container is only returned if import charges apply to the line item.",
      "$ref": "#/components/schemas/Amount"
    },
    "shippingCost": {
      "description": "The total cost of shipping all units of the line item. This container is always returned even when the shipping cost is free, in which case the <b>value</b> field will show <code>0.0</code> (dollars).",
      "$ref": "#/components/schemas/Amount"
    },
    "shippingIntermediationFee": {
      "description": "This field shows the fee due to eBay's international shipping provider for a line item that is being shipped through the Global Shipping Program.<br><br>This container is only returned for line items being shipped internationally through the Global Shipping Program, which is currently only supported in the US and UK marketplaces.<br><br><span class=\"tablenote\"><strong>Note:</strong> The value returned for this field will always be <code>0.0</code> for line items sold in the UK marketplace.</span>",
      "$ref": "#/components/schemas/Amount"
    }
  },
  "description": "This type contains a breakdown of all costs associated with the fulfillment of a line item."
}