Customer Registration

After the first activation of a user using the SDK, DENT sends the webhook as a POST request, providing the customers with the UID needed for later top-ups. On your server, you must implement a callback sending the user's email.

Please add your server URL on DENT Gigastore. Only HTTPS server URLs are allowed.

Request Parameters

Attribute

Type

Example

Info

user token

string

USER_TOKEN_1234567

The userToken you provided in setUserToken

uid

string

058c8716-47dd-4fc4-be89-00978a86b7c0

The ID of your user on Gigastore

Sample Request

{
    "userToken": "USER_TOKEN_1234567",
    "customerUid": "058c8716-47dd-4fc4-be89-00978a86b7c0"
}

Response Parameters

Attribute

Type

Example

Info

email

string

The email your user used to sign-in in your platform

Sample Response

{ "email": "[email protected]" }

Last updated

Was this helpful?