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",
  "appId": 1,
  "flowId": 1,
  "siteId": 1,
  "registerDate": "2020-03-20 12:35:41",
}

Fields

clientUuid

Unique ID of the registering user.

clientIp

IP address of the registering user.

language

Language used by the user.

storeRegister

It indicates the module: true for Zotlo Store and false for Zotlo Panel.

subscriberId

Subscriber ID associated with the transaction.It could be a phone number or an e-mail address.

appId

Project ID for the registration.

flowId

Flow ID for the registration.

siteId

Site ID for the registration.

registerDate

Date of registration, shown in UTC.

Last updated