Push Notifications webhooks
In this page you find the currently supported Push notifications webhook events and their respective payload.
Push notification clicked
Attribute name | Datatype | Description |
---|---|---|
reporting.attributionReason | String | Reason for notification click |
reporting.campaignId | String | Campaign ID of campaign that triggered push notification |
reporting.notificationId | String | Notification ID of push notification |
{
"reporting": {
"attributionReason": "notificationOpened",
"campaignId": "000jdxx0063",
"notificationId": "01xx7yxxx5rfgh"
}
}
Push subscribed
Attribute name | Datatype | Description |
---|---|---|
subtype | String | One of: new, moved, soft, inactivity New: user subscribes Moved: push token moved to that installation because user logged in Soft: User decides to show notifications Inactivity: Resubscribed at the end of a period of inactivity |
{"subtype":"new"}
Push unsubscribed
Attribute name | Datatype | Description |
---|---|---|
subtype | String | One of: new, moved, soft, inactivity New: user subscribes Moved: push token moved to that installation because user logged in Soft: User decides to show notifications Inactivity: Resubscribed at the end of a period of inactivity |
{"subtype":"new"}
Push session started
Attribute name | Datatype | Description |
---|---|---|
reporting.attributionReason | String | Reason for session start |
reporting.campaignId | String | Campaign ID of campaign that triggered the push |
reporting.notificationId | String | Notification ID of push notification sent |
{
"reporting": {
"attributionReason": "notificationOpened",
"campaignId": "000jdxx0063",
"notificationId": "01xx7yxxx5rfgh"
}
}
Updated 2 days ago