Send Email Activation eSIM
API to send email activation for eSIM product.
A thing to know
- This API is only available for sending emails related to eSIM products and if you have topped up the eSIM product.
- Sending an email can only be done if the transaction has a successful status.
- You can only send the email 3 times per day for the same user and transaction ID.
Path
Method | Path |
---|---|
POST | api/esim/notification/activation |
Request Body
Attributes | Type | Description | Mandatory |
---|---|---|---|
username | String | Your registered phone number | Yes |
tr_id | String | Transaction ID | Yes |
String | Recipient email | Yes | |
sign | String | Signature. Value: md5(username+api_key+tr_id) | Yes |
{
"username" : "123123123",
"tr_id" : "2345678",
"email" : "test@gmail.com",
"sign" : "6bc194c0d23c18a12f5d6919aa72bc30",
}
Response
Attributes | Type | Description | Mandatory |
---|---|---|---|
tr_id | String | Transaction ID | Yes |
String | Recipient email | Yes | |
rc | String | Response code. See response code list | Yes |
message | String | Message | Yes |
{
"data": {
"tr_id" : "2345678",
"email" : "test@gmail.com",
"rc" : "00",
"message" : "SUCCESS"
}
}
Example Email
Live Testing
Request URL
https://prepaid.iak.dev/api/esim/notification/activation
Request Method
Request Header
Content-Type: application/json
Body
Result
Table of Contents