PayPal · Schema

Requested transfer method and currency for a country

Requested transfer method and currency for a country.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
transfer_method_type string Transfer Method type.
currencies array Requested Currencies for a Transfer Method.
View JSON Schema on GitHub

JSON Schema

paypal-transfer-method-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/transfer_method",
  "title": "Requested transfer method and currency for a country",
  "type": "object",
  "additionalProperties": false,
  "description": "Requested transfer method and currency for a country.",
  "properties": {
    "transfer_method_type": {
      "type": "string",
      "description": "Transfer Method type.",
      "pattern": "^[0-9A-Z_-]+$",
      "minLength": 1,
      "maxLength": 50,
      "enum": [
        "BANK_ACCOUNT",
        "PAYPAL",
        "VENMO",
        "WIRE_ACCOUNT"
      ]
    },
    "currencies": {
      "type": "array",
      "description": "Requested Currencies for a Transfer Method.",
      "minItems": 1,
      "maxItems": 50,
      "items": {
        "$ref": "#/components/schemas/currency_code-2"
      }
    }
  }
}