BigCommerce · Schema

PayPal Account Instrument

A PayPal account stored instrument.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
type string Instrument type.
token string An identifier representing this stored instrument.
is_default boolean Identifies whether this stored instrument is default for the customer.
email string PayPal email address.
View JSON Schema on GitHub

JSON Schema

bigcommerce-paypalaccountinstrument-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayPalAccountInstrument",
  "title": "PayPal Account Instrument",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Instrument type.",
      "enum": [
        "stored_paypal_account"
      ]
    },
    "token": {
      "type": "string",
      "description": "An identifier representing this stored instrument.",
      "example": "84596bea275fa254da820056bdc3e495bdf01fd11c51b0336347d447ee16200c"
    },
    "is_default": {
      "type": "boolean",
      "description": "Identifies whether this stored instrument is default for the customer."
    },
    "email": {
      "type": "string",
      "description": "PayPal email address.",
      "example": "[email protected]"
    }
  },
  "description": "A PayPal account stored instrument.",
  "x-internal": false
}