PayPal · Example Payload

Paypal Web Profilepartial Update Example

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Paypal Web Profilepartial Update 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": "web-profile.partial-update",
  "method": "PATCH",
  "path": "/v1/payment-experience/web-profiles/{id}",
  "summary": "Paypal Partially update web experience profile",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "patch_request",
      "example": [
        {
          "op": "add",
          "path": "/presentation/brand_name",
          "value": "new_brand_name"
        },
        {
          "op": "remove",
          "path": "/flow_config/landing_page_type"
        }
      ]
    }
  ],
  "responseExamples": []
}