Verifone · Schema

subscriber

The subscriber request information

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
name object
payerId string The PayPal-assigned ID for the payer
emailAddress string Customer email address
phone object
shippingAddress object
View JSON Schema on GitHub

JSON Schema

paypal-ecommerce-api-subscriber.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/paypal-ecommerce-api-subscriber.json",
  "title": "subscriber",
  "description": "The subscriber request information",
  "type": "object",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/name"
    },
    "payerId": {
      "pattern": "^[2-9A-HJ-NP-Z]{13}$",
      "type": "string",
      "description": "The PayPal-assigned ID for the payer"
    },
    "emailAddress": {
      "maxLength": 255,
      "type": "string",
      "description": "Customer email address"
    },
    "phone": {
      "$ref": "#/components/schemas/phone"
    },
    "shippingAddress": {
      "$ref": "#/components/schemas/Model12"
    }
  }
}