PayPal · Example Payload

Paypal Plansupdate Pricing Schemes Example

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Paypal Plansupdate Pricing Schemes Example is an example object payload from PayPal, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "plans.update-pricing-schemes",
  "method": "POST",
  "path": "/v1/billing/plans/{id}/update-pricing-schemes",
  "summary": "Paypal Update pricing",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "update_pricing_schemes_list_request",
      "example": {
        "pricing_schemes": [
          {
            "billing_cycle_sequence": 1,
            "pricing_scheme": {
              "fixed_price": {
                "value": "50",
                "currency_code": "USD"
              }
            }
          },
          {
            "billing_cycle_sequence": 2,
            "pricing_scheme": {
              "fixed_price": {
                "value": "100",
                "currency_code": "USD"
              },
              "pricing_model": "VOLUME",
              "tiers": [
                {
                  "starting_quantity": "1",
                  "ending_quantity": "1000",
                  "amount": {
                    "value": "150",
                    "currency_code": "USD"
                  }
                },
                {
                  "starting_quantity": "1001",
                  "amount": {
                    "value": "250",
                    "currency_code": "USD"
                  }
                }
              ]
            }
          }
        ]
      }
    }
  ],
  "responseExamples": []
}