Set up a Webhook
Each event type is configured independently and points at a single callback URL on your side. In Shift, go to My account > Developers > Hooks. The left side lists every event type Paylead supports.1
Pick the event you want to subscribe to
Click the + next to the event. Its configuration panel opens on the right. Each event carries one callback URL at a time, so an event you already subscribed to is greyed out. To fan an event out to several internal systems, point it at one endpoint of yours and dispatch from there.
2
Enter the callback URL
In the Callback URL field, enter the HTTPS endpoint that will receive the event. The endpoint must accept
POST with a JSON body and respond 2xx quickly.3
Validate with a test delivery
Click Send test. Paylead immediately posts a payload to the URL with mock data: non-nullable fields carry sample values, nullable fields are left blank.
4
Save your changes
Click Save. The Webhook is live and Paylead dispatches real events to it from this moment forward.
Authenticate deliveries
Anyone who discovers your callback URL can post a fake payload to it. Verify each delivery before you act on it. Credentials are set once for the whole Program. On the Hooks page, click Settings in the top right to open the credentials dialog. It offers three independent mechanisms, each enabled by its own checkbox:
Tick as many as you need, fill in their fields, then click Confirm. Clearing a checkbox deletes that credential.
The Settings button is hidden when your Program signs in through SSO.
X-paylead-signature-256 header as a hex digest, and an optional X-paylead-timestamp header protects against replay. Paylead can also set up mutual TLS on request: see Securing your endpoint.
Available events
Paylead groups events the same way Shift does, under Cashbacks, Payments, Consumers, and Offers. Subscribe only to the events your back-office reacts to: every extra subscription is traffic your endpoint has to accept, authenticate, and acknowledge in time.Cashbacks
Payments
PAID_IN and PAID_OUT name a movement of money, and Shift prints the matching Reward statuses as Pool and Paid. Check the Status reference before you wire an event to something a support agent will be asked about.
Consumers
SCRAPPING_ERROR is deprecated: do not subscribe to it for a new integration. On a Program that still receives it, it tells you a Consumer stopped feeding transactions to Paylead, so they also stopped earning Cashback without necessarily noticing. Only the Consumer can unblock it.
Read the Consumer’s bank synchronization status in Shift to know what to ask for. SCA_REQUIRED and WEBAUTH_REQUIRED need the Consumer to redo an authentication flow, ACTION_NEEDED sends them to their bank’s website, and WRONG_PASS means their stored credentials are stale. See the Status reference for the full list.
Offers
Use the two
OFFER_ENDING_SOON_* events to warn Consumers while an Offer is still redeemable. The subscription tooltip in Shift announces the budget event at 80% of the budget, while the threshold applied server side is 90%: reconcile on the event, not on the tooltip.
Event logs
Event logs is the landing entry of the Developers menu, reached from My account > Developers. It lists every Webhook delivery attempted on your Program, so it shows exactly what Paylead sent you. Go there when your back-office looks out of sync with the platform, or right after you put a new endpoint live.
Four filters scope the history: a keyword search, Filter by type (one event type), Filter by status (a status family, from
1xx to 5xx, plus Others), and the Date From / Date to range. Without filters, every event since the Program launched is shown.
When a delivery fails
Paylead drives the retries on its own, and what happens next depends only on the status code your endpoint returned.
Each delivery carries a unique
event_id. Persist it on your side and dedupe on it, since Paylead may redeliver the same event after retries. See Re-fetch before acting for the recommended pattern.
What’s next
Webhooks reference
Payload shape, retry policy, and reliability guidance for your endpoint.
API reference
Browse and download the current Platform API specification.