PayPal · Schema

Confirm Order Request

Payer confirms the intent to pay for the Order using the provided payment source.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
payment_source object
processing_instruction object
application_context object
View JSON Schema on GitHub

JSON Schema

paypal-confirm-order-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/confirm_order_request",
  "title": "Confirm Order Request",
  "description": "Payer confirms the intent to pay for the Order using the provided payment source.",
  "properties": {
    "payment_source": {
      "$ref": "#/components/schemas/payment_source"
    },
    "processing_instruction": {
      "$ref": "#/components/schemas/processing_instruction"
    },
    "application_context": {
      "$ref": "#/components/schemas/order_confirm_application_context"
    }
  },
  "required": [
    "payment_source"
  ]
}