Webhooks
Use webhooks to be notified about events on your PushPushGo subscribers
Last updated
Use webhooks to be notified about events on your PushPushGo subscribers
Last updated
Webhooks are an easy way to automatically communicate one app with another. In our application Webhooks are configured in menu Integrations -> Webhooks.
Specify what Event
should trigger notification and define an api endpoint Webhook Url
where we should send the request.
Webhooks are sent as POST requests, with body of type IBody
IBody property name | type | description |
---|---|---|
|
| your project identifier |
|
| subscriber's customId if defined |
|
| subscriber identifier |
For every request we set an X-PPG-Signature
header. Its value is a result of following operation:
We take the resulting string (the full URL with query string and all POST parameters) and sign it using HMAC-SHA1
and your ProjectId
as the key.