PayPal · Schema

Authorization with Additional Data

The authorization with additional payment details, such as risk assessment and processor response. These details are populated only for certain payment methods.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks
View JSON Schema on GitHub

JSON Schema

paypal-authorization-with-additional-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/authorization_with_additional_data",
  "title": "Authorization with Additional Data",
  "type": "object",
  "description": "The authorization with additional payment details, such as risk assessment and processor response. These details are populated only for certain payment methods.",
  "allOf": [
    {
      "$ref": "#/components/schemas/authorization"
    },
    {
      "properties": {
        "processor_response": {
          "$ref": "#/components/schemas/processor_response",
          "description": "The processor response for card transactions.",
          "readOnly": true
        }
      }
    }
  ]
}