PayPal · Schema
Decrypted Apple Pay Payment details data.
Information about the decrypted apple pay payment data for the token like cryptogram, eci indicator.
BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| cryptogram | string | Online payment cryptogram, as defined by 3D Secure. The pattern is defined by an external party and supports Unicode. |
| eci_indicator | string | ECI indicator, as defined by 3- Secure. The pattern is defined by an external party and supports Unicode. |
| emv_data | string | Encoded Apple Pay EMV Payment Structure used for payments in China. The pattern is defined by an external party and supports Unicode. |
| pin | string | Bank Key encrypted Apple Pay PIN. The pattern is defined by an external party and supports Unicode. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/apple_pay_payment_data",
"title": "Decrypted Apple Pay Payment details data.",
"type": "object",
"description": "Information about the decrypted apple pay payment data for the token like cryptogram, eci indicator.",
"properties": {
"cryptogram": {
"description": "Online payment cryptogram, as defined by 3D Secure. The pattern is defined by an external party and supports Unicode.",
"type": "string",
"minLength": 1,
"maxLength": 2000,
"pattern": "^.*$"
},
"eci_indicator": {
"description": "ECI indicator, as defined by 3- Secure. The pattern is defined by an external party and supports Unicode.",
"type": "string",
"minLength": 1,
"maxLength": 256,
"pattern": "^.*$"
},
"emv_data": {
"description": "Encoded Apple Pay EMV Payment Structure used for payments in China. The pattern is defined by an external party and supports Unicode.",
"type": "string",
"minLength": 1,
"maxLength": 2000,
"pattern": "^.*$"
},
"pin": {
"description": "Bank Key encrypted Apple Pay PIN. The pattern is defined by an external party and supports Unicode.",
"type": "string",
"minLength": 1,
"maxLength": 2000,
"pattern": "^.*$"
}
}
}