PayPal · Schema

Card Experience Context

Customizes the payer experience during the 3DS Approval for payment.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
return_url string The URL where the customer will be redirected upon successfully completing the 3DS challenge.
cancel_url string The URL where the customer will be redirected upon cancelling the 3DS challenge.
View JSON Schema on GitHub

JSON Schema

paypal-card-experience-context-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/card_experience_context",
  "title": "Card Experience Context",
  "type": "object",
  "description": "Customizes the payer experience during the 3DS Approval for payment.",
  "properties": {
    "return_url": {
      "description": "The URL where the customer will be redirected upon successfully completing the 3DS challenge.",
      "type": "string",
      "minLength": 10,
      "maxLength": 4000,
      "format": "uri",
      "$ref": "#/components/schemas/url"
    },
    "cancel_url": {
      "description": "The URL where the customer will be redirected upon cancelling the 3DS challenge.",
      "type": "string",
      "minLength": 10,
      "maxLength": 4000,
      "format": "uri",
      "$ref": "#/components/schemas/url"
    }
  }
}