Verify webhook signature
documentedVerify the signature of a received webhook.
POST /v1/notifications/verify-webhook-signatureWebhooksno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api-m.paypal.com/v1/notifications/verify-webhook-signature" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"auth_algo": "{{$auth_algo}}", "cert_url": "{{$cert_url}}", "transmission_id": "{{$transmission_id}}", "transmission_sig": "{{$transmission_sig}}", "transmission_time": "{{$transmission_time}}", "webhook_id": "{{$webhook_id}}", "webhook_event": {{$webhook_event}}}'