PayPal · Schema

Authorize Request

The authorization of an order request.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
payment_source object The source of payment for the order, which can be a token or a card. Use this object only if you have not redirected the user after order creation to approve the payment. In such cases, the user-selec
View JSON Schema on GitHub

JSON Schema

paypal-order-authorize-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/order_authorize_request",
  "title": "Authorize Request",
  "type": "object",
  "description": "The authorization of an order request.",
  "properties": {
    "payment_source": {
      "description": "The source of payment for the order, which can be a token or a card. Use this object only if you have not redirected the user after order creation to approve the payment. In such cases, the user-selected payment method in the PayPal flow is implicitly used.",
      "$ref": "#/components/schemas/payment_source"
    }
  }
}