PayPal · Schema

Verify Webhook Signature Response

The verify webhook signature response.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
verification_status string The status of the signature verification.
View JSON Schema on GitHub

JSON Schema

paypal-verify-webhook-signature-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/verify_webhook_signature_response",
  "title": "Verify Webhook Signature Response",
  "type": "object",
  "description": "The verify webhook signature response.",
  "properties": {
    "verification_status": {
      "type": "string",
      "description": "The status of the signature verification.",
      "enum": [
        "SUCCESS",
        "FAILURE"
      ]
    }
  },
  "required": [
    "verification_status"
  ]
}