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

Balance Alert

PreviouseSIM StatusNextCountry Change

Last updated 1 year ago

Was this helpful?

DENT is sending the webhook as POST request providing the customers that are running low on eSIM data. The low data threshold is set to 100 MB, so all customers who pass the threshold will appear on the request.

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

Request Parameters

Attribute

Type

Info

uid

string

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

iccid

string

89361123300836129514

imsi

string

260216611193634

timestamp

dateTime

2022-08-21T10:15:30Z

balanceAmountInByte

long

93618231

Sample request

{
    "uid": "058c8716-47dd-4fc4-be89-00978a86b7c0",
    "iccid": "89361123300836129514",
    "imsi": "260216611193634",
    "timestamp": "2022-08-21T10:15:30Z",
    "balanceAmountInByte": 93618231
}
DENT Gigastore