Links
Comment on page

Webhooks

Use webhooks to be notified about events on your PushPushGo subscribers
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
projectId
string
your project identifier
customId
string
subscriber's customId if defined
ppgId
string
subscriber identifier
For every request we set an X-PPG-Signatureheader. 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.
Last modified 1yr ago