Send Notification
Simlessly
# Send Notification
When the third-party system downloads profile, switches profile, deletes profile or the business management system discovers that the country of the device has changed, it will notify the the third-party system of the results.
# Request Body Structure
| Name | Type | MOC | Description | Example |
|---|---|---|---|---|
| type | Integer | M | notification type | 1.profile download, 2.profile switch, 3.profile delete, 4.country change notification |
| resultDtoitems | List< ResultDtoitem> | M | notification item |
# ResultDtoitem
| Name | Type | MOC | Description | Example |
|---|---|---|---|---|
| iccid | String | M | ICCID | 89860468152080349618 |
| eid | String | M | EID | 35203000280200000000000000003672 |
| success | Boolean | M | true | |
| errorMsg | String | M | failure reason | |
| beforeMccmnc | String | M | mccmnc before change | |
| afterMccmnc | String | M | mccmnc after changes |
# Request Body Example
{
"type": 1,
"resultDtoitems": [
{
"iccid": "89860468152080349618",
"eid": "35203000280200000000000000003672",
"success": true,
"errorMsg": "",
"beforeMccmnc": "46000",
"afterMccmnc": "46001"
}
]
}
