Verifone · Schema

phone

The phone number of the customer. Available only when you enable the Contact Telephone Number option in the Profile & Settings for the merchant's PayPal account

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
phoneType string The phone type
phoneNumber object
View JSON Schema on GitHub

JSON Schema

paypal-ecommerce-api-phone.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-phone.json",
  "title": "phone",
  "description": "The phone number of the customer. Available only when you enable the Contact Telephone Number option in the Profile & Settings for the merchant's PayPal account",
  "required": [
    "phoneNumber"
  ],
  "type": "object",
  "properties": {
    "phoneType": {
      "type": "string",
      "description": "The phone type",
      "enum": [
        "FAX",
        "HOME",
        "MOBILE",
        "OTHER",
        "PAGER"
      ]
    },
    "phoneNumber": {
      "$ref": "#/components/schemas/phoneNumber"
    }
  }
}