PayPal · Schema

Payer Base

The customer who approves and pays for the order. The customer is also known as the payer.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
email_address object The email address of the payer.
payer_id object The PayPal-assigned ID for the payer.
View JSON Schema on GitHub

JSON Schema

paypal-payer-base-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/payer_base",
  "title": "Payer Base",
  "type": "object",
  "description": "The customer who approves and pays for the order. The customer is also known as the payer.",
  "properties": {
    "email_address": {
      "description": "The email address of the payer.",
      "$ref": "#/components/schemas/email"
    },
    "payer_id": {
      "description": "The PayPal-assigned ID for the payer.",
      "readOnly": true,
      "$ref": "#/components/schemas/account_id"
    }
  }
}