PayPal · Schema

Payout Attributes

Payout specific attributes.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
marketplace boolean If `true`, specifies that the merchant or platform is offering goods or services on behalf of 3rd party sellers.
kyc_required boolean If `true`, specifies that the Kyc is required for the merchant.
country_transfer_method_currency_selection array Requested country, transfer method and currency.
View JSON Schema on GitHub

JSON Schema

paypal-payout-attributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/payout_attributes",
  "title": "Payout Attributes",
  "type": "object",
  "additionalProperties": false,
  "description": "Payout specific attributes.",
  "properties": {
    "marketplace": {
      "type": "boolean",
      "description": "If `true`, specifies that the merchant or platform is offering goods or services on behalf of 3rd party sellers."
    },
    "kyc_required": {
      "type": "boolean",
      "description": "If `true`, specifies that the Kyc is required for the merchant."
    },
    "country_transfer_method_currency_selection": {
      "type": "array",
      "description": "Requested country, transfer method and currency.",
      "minItems": 1,
      "maxItems": 50,
      "items": {
        "$ref": "#/components/schemas/country_transfer_method_currency_selection"
      }
    }
  }
}