Registered Users

Learn how to get registered users to your server via webhooks

This webhook service notifies you about users who have visited your sales website and completed the registration process.

Setup the Endpoint URL

Webhook events are sent to your server via HTTP POST. You configure the endpoint URL through Developer Tools / Webhooks menu under your project.

Events Format

Webhook events are serialized in JSON. The body of a POST request to your server will contain the serialized event.

{
  "clientUuid": "string",
  "clientIp": "127.0.0.1",
  "country": "TR",
  "language": "en",
  "storeRegister": true,
  "subscriberId": "905555555555",
  "subscriberName" "name surname",
  "appId": 1,
  "flowId": 1,
  "siteId": 1,
  "registerDate": "2020-03-20 12:35:41",
}

Fields

Last updated