PayPal · Example Payload

Paypal Webhookspost Example

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Paypal Webhookspost 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": "webhooks.post",
  "method": "POST",
  "path": "/v1/notifications/webhooks",
  "summary": "Paypal Create webhook",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "webhook",
      "example": {
        "url": "https://example.com/example_webhook",
        "event_types": [
          {
            "name": "PAYMENT.AUTHORIZATION.CREATED"
          },
          {
            "name": "PAYMENT.AUTHORIZATION.VOIDED"
          }
        ]
      }
    }
  ],
  "responseExamples": []
}