PayPal · Schema

Net Amount Breakdown Item

The net amount. Returned when the currency of the refund is different from the currency of the PayPal account where the merchant holds their funds.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
payable_amount object The net amount debited from the merchant's PayPal account.
converted_amount object The converted payable amount.
exchange_rate object The exchange rate that determines the amount that was debited from the merchant's PayPal account.
View JSON Schema on GitHub

JSON Schema

paypal-net-amount-breakdown-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/net_amount_breakdown_item",
  "title": "Net Amount Breakdown Item",
  "type": "object",
  "description": "The net amount. Returned when the currency of the refund is different from the currency of the PayPal account where the merchant holds their funds.",
  "properties": {
    "payable_amount": {
      "description": "The net amount debited from the merchant's PayPal account.",
      "readOnly": true,
      "$ref": "#/components/schemas/money"
    },
    "converted_amount": {
      "description": "The converted payable amount.",
      "readOnly": true,
      "$ref": "#/components/schemas/money"
    },
    "exchange_rate": {
      "description": "The exchange rate that determines the amount that was debited from the merchant's PayPal account.",
      "readOnly": true,
      "$ref": "#/components/schemas/exchange_rate"
    }
  }
}