eBay · Schema

TransferDetail

This type is used by the transferDetail container, which provides more details about the transfer and the charge(s) associated with the transfer.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
balanceAdjustment object This container shows the seller payout balance that will be applied toward the charges outlined in the charges array.
charges array This container is an array of one or more charges related to the transfer. Charges can be related to an order cancellation, order return, case, payment dispute, etc.
totalChargeNetAmount object This container shows the total amount that the seller owes for all of the charges outlined in the charges array.
View JSON Schema on GitHub

JSON Schema

ebay-transferdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferDetail",
  "title": "TransferDetail",
  "type": "object",
  "properties": {
    "balanceAdjustment": {
      "description": "This container shows the seller payout balance that will be applied toward the charges outlined in the <b>charges</b> array.",
      "$ref": "#/components/schemas/BalanceAdjustment"
    },
    "charges": {
      "type": "array",
      "description": "This container is an array of one or more charges related to the transfer. Charges can be related to an order cancellation, order return, case, payment dispute, etc.",
      "items": {
        "$ref": "#/components/schemas/Charge"
      }
    },
    "totalChargeNetAmount": {
      "description": "This container shows the total amount that the seller owes for all of the charges outlined in the <b>charges</b> array.",
      "$ref": "#/components/schemas/Amount"
    }
  },
  "description": "This type is used by the <b>transferDetail</b> container, which provides more details about the transfer and the charge(s) associated with the transfer."
}