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

Was this helpful?

  1. Webhooks

Country Change

PreviousBalance AlertNextFirst Steps

Last updated 1 year ago

Was this helpful?

DENT sends a response every time that the eSIM connects to a new country. The response comes with the IMSI, ICCID and the previous and new country where the eSIM is connecting to. You can determine if the eSIM is connecting for the first time when the response sends "null" on the previousCountry field.

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

Request Parameters

Attribute

Type

Example

Info

imsi

string

123456789012345

iccid

string

12345678901234567890

previousCountry

string

DE

The request will send "null", when the eSIM connects for the first time.

newCountry

string

US

Sample Request

{
    "imsi": "123456789012345",
    "iccid": "12345678901234567890",
    "previousCountry": null,
    "newCountry": "DE"
}

DENT Gigastore