DENT Gigastore Documentation
  • Introduction
  • Start with Gigastore
    • Create an Account
    • Add Credits
    • Configure Inventory
    • Set Up Auto Top-Up for Credits
  • Technical Integration
    • API Integration
    • SDK Integration
  • API
    • Getting started
    • Open API Specification
    • Postman Collection
    • API Authentification
    • Offering Packages
    • Countries API
    • Supported Devices API
    • Customers
    • First Package
    • eSIM Profiles
    • Top-up
    • Package Refund
    • Error Handling
  • Webhooks
    • First Steps
    • eSIM Status
    • Balance Alert
    • Country Change
  • iOS SDK
    • First Steps
    • Download SDK
    • Enable Direct Installation
    • iOS Universal Link
    • Integrate SDK
    • Prepare eSIM Installation
    • Install eSIM
  • Android SDK
    • First Steps
    • Download SDK
    • Enable Direct Installation
    • Integrate SDK
    • Prepare eSIM Installation
    • Install eSIM
    • Testing
  • SDK Webhooks
    • Activation Request
    • Customer Registration
  • Guidelines
    • UX Guide
  • Customer support
    • Gigastore for Support Teams
    • Connectivity
    • Changing Device
    • Package Refund
Powered by GitBook
On this page
  • Request Parameters
  • Response Parameters

Was this helpful?

  1. SDK Webhooks

Customer Registration

PreviousActivation RequestNextUX Guide

Last updated 1 year ago

Was this helpful?

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 . Only HTTPS server URLs are allowed.

Request Parameters

Attribute

Type

Example

Info

user token

string

USER_TOKEN_1234567

The userToken you provided in

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

email@domain.com

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

Sample Response

{ "email": "email@domain.com" }
DENT Gigastore
setUserToken