Skip to main content
POST
/
internal
/
send-web-push-to-subscription
Send a web push notification to a subscription
curl --request POST \
  --url https://push.platform.arb.inc/internal/send-web-push-to-subscription \
  --header 'Content-Type: application/json' \
  --data '
{
  "subscriptionID": "<string>",
  "title": "<string>",
  "body": "<string>",
  "icon": "<string>",
  "url": "<string>",
  "data": {}
}
'
"Notification sent successfully"

Body

application/json
subscriptionID
string
required

Subscription identifier.

Required string length: 1 - 36
title
string
body
string
icon
string
url
string
data
object

Response

Notification sent successfully.

The response is of type string.

Example:

"Notification sent successfully"