PayPal · Schema
P24 payment object
Information used to pay using P24(Przelewy24).
BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| name | object | The name of the account holder associated with this payment method. |
| object | The email address of the account holder associated with this payment method. | |
| country_code | object | The two-character ISO 3166-1 country code. |
| payment_descriptor | string | P24 generated payment description. |
| method_id | string | Numeric identifier of the payment scheme or bank used for the payment. |
| method_description | string | Friendly name of the payment scheme or bank used for the payment. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/p24",
"title": "P24 payment object",
"type": "object",
"description": "Information used to pay using P24(Przelewy24).",
"properties": {
"name": {
"description": "The name of the account holder associated with this payment method.",
"$ref": "#/components/schemas/full_name"
},
"email": {
"description": "The email address of the account holder associated with this payment method.",
"$ref": "#/components/schemas/email_address"
},
"country_code": {
"description": "The two-character ISO 3166-1 country code.",
"$ref": "#/components/schemas/country_code"
},
"payment_descriptor": {
"type": "string",
"minLength": 1,
"maxLength": 2000,
"description": "P24 generated payment description."
},
"method_id": {
"type": "string",
"minLength": 1,
"maxLength": 300,
"description": "Numeric identifier of the payment scheme or bank used for the payment."
},
"method_description": {
"type": "string",
"minLength": 1,
"maxLength": 2000,
"description": "Friendly name of the payment scheme or bank used for the payment."
}
}
}