Skip to main content
POST
/
web-push
/
verify
Send a test web push notification
curl --request POST \
  --url https://push.platform.arb.inc/web-push/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "subscriptionID": "<string>"
}
'
"test notification sent"

Body

application/json

Subscription ID to test.

subscriptionID
string
required

The ID of the subscription to test.

Response

200 - text/plain

Test notification sent successfully.

The response is of type string.

Example:

"test notification sent"