For the complete documentation index, see llms.txt. This page is also available as Markdown.

Activation Request

To approve an eSIM activation via SDK, you need to implement this callback on your server. If the client is allowed to install an eSIM, a successful response is expected from our backend. Gigastore is sending the webhook as a POST request.

Please provide your server URL to your Gigastore contact. Only HTTPS server URLs are allowed.

Request Parameters

Attribute

Type

Example

Info

inventoryItemId

string

1_GB

The inventoryItemId from Gigastore that you provided in activateItem

userToken

string

USER_TOKEN_1234567

The userToken you provided in setUserToken

metaTag

string

myTag

The metaTag you provided in

activateItem

activationId

string

1e0da3933156

A unique id provided for reference.

Sample Request

{
  "inventoryItemId": "1_GB",
  "userToken": "USER_TOKEN_1234567",
  "metaTag": myTag,
  "activationId": "1e0da3933156"
}

Response Parameters

Attribute

Type

Limitation

returnCode

string

"SUCCESS" or "FAIL"

returnMessage

string

-

Sample Response

Your server should always return 200.

Last updated

Was this helpful?