> For the complete documentation index, see [llms.txt](https://docs.monogoto.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.monogoto.io/developer/api/esim/notification-events.md).

# Notification Events

### Overview

Once you have configured the **eSIM Events** integration in the Integrations section, you will start receiving real-time notifications whenever an eSIM profile status changes in the SM-DP+, such as profile download, installation, activation, or deletion.

This page describes the different notification types you may receive and what each one means.

### eSIM Profile Notification Events

<table><thead><tr><th width="83.7255859375">Type</th><th width="611.8385009765625">Message Details</th></tr></thead><tbody><tr><td>3</td><td>eSIM Profile Download on Device</td></tr><tr><td>4</td><td>eSIM Profile Installed on Device</td></tr><tr><td>5</td><td>eSIM Profile Installation Confirmed by SM-DP+</td></tr><tr><td>6</td><td>eSIM Profile Enabled on Device</td></tr><tr><td>7</td><td>eSIM Profile Disabled on Device</td></tr><tr><td>8</td><td>eSIM Profile Deleted from Device</td></tr></tbody></table>

***

### Examples

The following examples show how notifications are represented once parsed. Each notification includes a summary line followed by the `notificationPointStatus` object.

```
eSIM Profile Download on Device (Type 3), 
iccid:8999924230456701650, 
eid:89049032020008884800228685583432
  "notificationPointStatus": {
    "status": "Executed-Success"
  }
```

```
eSIM Profile Installed on Device (Type 4), 
iccid:8999924230456701650, 
eid:89049032020008884800228685583432
  "notificationPointStatus": {
    "status": "Executed-Success"
```

```
eSIM Profile Installation Confirmed by SM-DP+ (Type 5), 
iccid:8999924230456701650, 
eid:89049032020008884800228685583432
  "notificationPointStatus": {
    "status": "Executed-Success"
  }
```

```
eSIM Profile Enabled on Device (Type 6), 
iccid:8999924230456701650, 
eid:89049032020008884800228685583432
  "notificationPointStatus": {
    "status": "Executed-Success"
  }
```

```
eSIM Profile Disabled on Device (Type 7), 
iccid:8999924230456701650, 
eid:89049032020008884800228685583432
  "notificationPointStatus": {
    "status": "Executed-Success"
  }
```

```
eSIM Profile Deleted from Device (Type 8), 
iccid:8999924230456701650, 
eid:89049032020008884800228685583432
  "notificationPointStatus": {
    "status": "Executed-Success"
  }
```

### Glossary

**SM-DP+**: Subscription Manager Data Preparation Plus, the server responsible for managing the eSIM profile lifecycle

**ICCID**: Integrated Circuit Card Identifier, the unique identifier of the SIM card

**EID**: eUICC Identifier, the unique identifier of the chip in the device
