Skip to content

Webhooks

Webhooks send HTTP POST requests to your server when events happen in your Appspace. Use them to trigger workflows, sync data, or send notifications in response to link clicks, app installs, and referral events.

  1. You create a webhook in the dashboard with a URL and the events you want to receive.
  2. When a matching event occurs, Tolinku sends a POST request to your URL with a JSON payload.
  3. Your server processes the payload and returns a 2xx status code to acknowledge receipt.

Each webhook delivery includes an HMAC signature so your server can verify that the request came from Tolinku and was not tampered with.

Webhooks page showing the creation form with event checkboxes and two existing webhooks with event badges and action buttons

When a user clicks a deep link, Tolinku sends:

{
"event": "link.clicked",
"timestamp": "2026-03-02T14:30:00.000Z",
"data": {
"url": "https://your-app.tolinku.com/promo/summer",
"country": "US",
"device_type": "mobile",
"platform": "ios"
}
}

Your server receives this POST request and can use the data to update a dashboard, send a Slack notification, trigger a marketing automation, or anything else.

The free tier includes 1 webhook. Paid plans allow unlimited webhooks.