PayPal · Schema

Event Resend

Resends a webhook event notification, by ID.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
webhook_ids array An array of webhook account IDs.
View JSON Schema on GitHub

JSON Schema

paypal-event-resend-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/event_resend",
  "title": "Event Resend",
  "type": "object",
  "description": "Resends a webhook event notification, by ID.",
  "properties": {
    "webhook_ids": {
      "type": "array",
      "maxItems": 500,
      "description": "An array of webhook account IDs.",
      "items": {
        "type": "string",
        "description": "The ID of the webhook event notification to resend."
      }
    }
  }
}