Skip to main content
POST
/
api
/
v2
/
notifications
/
test
Send a test webhook to either `url` from the body or the merchant's callback URL
curl --request POST \
  --url https://api.pawpayments.com/api/v2/notifications/test \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "url": "<string>"
}
'
{
  "ok": true,
  "result": {
    "delivered": true,
    "error": null,
    "status_code": 200,
    "url": "https://shop.example.com/webhook/paw"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pawpayments.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Body

application/json

Optional override for the destination URL of the test webhook.

url
string | null

Override target URL. If omitted, uses the merchant's configured callback URL.

Response

OK

ok
boolean
required
result
WebhookProbe · object
required
Example:
{
"delivered": true,
"error": null,
"status_code": 200,
"url": "https://shop.example.com/webhook/paw"
}