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. DENT is sending the webhook as a POST request.
Request Parameters
Attribute
Type
Example
Info
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
{"returnCode":"SUCCESS","returnMessage":null}
Last updated
Was this helpful?