PayPal · Schema

Update Pricing Scheme

The update pricing scheme request details.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
billing_cycle_sequence integer The billing cycle sequence.
pricing_scheme object
View JSON Schema on GitHub

JSON Schema

paypal-update-pricing-scheme-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/update_pricing_scheme_request",
  "title": "Update Pricing Scheme",
  "description": "The update pricing scheme request details.",
  "type": "object",
  "properties": {
    "billing_cycle_sequence": {
      "type": "integer",
      "description": "The billing cycle sequence.",
      "minimum": 1,
      "maximum": 99
    },
    "pricing_scheme": {
      "$ref": "#/components/schemas/pricing_scheme"
    }
  },
  "required": [
    "billing_cycle_sequence",
    "pricing_scheme"
  ]
}