Setup
Last updated
Last updated
Webhooks are available on a paid plan.
Go to the Setting page in your account.
Click on Webhooks.
Enter your webhook endpoint URL and select the events you are interested in.
Publish/save your changes.
Retry logic
If we are unable to deliver a webhook the first time, Referral Rocket will attempt to redeliver your webhooks for several days with an exponential back off. After several days of failed attempts we will mark the webhook as undeliverable and it will no longer be retried.
To handle webhook delivery the handler should be a secure endpoint.
The handler should respond with 200 very quickly . The processing of the payload can be asynchronous at the receiving destination.
The handler should accept POST JSON payload.
Next steps
Test implementation of webhooks.