> For the complete documentation index, see [llms.txt](https://docs.esimpay.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.esimpay.net/eng/webhook/esim-status.md).

# eSIM Status

eSIMPAY sends a webhook via POST after a user installs an eSIM profile on their device. The request includes the profile identifiers and the profile status Installed (INSTALLED).

{% hint style="info" %}
Specify your server's URL in eSIMPAY. Only HTTPS addresses are allowed.
{% endhint %}

### Request parameters

| Parameter    | Type   | Example              |
| ------------ | ------ | -------------------- |
| iccid        | string | 89361123300836129514 |
| imsi         | string | 260216611193634      |
| profileState | string | INSTALLED            |
| eid          | string | 74088234238931452    |

#### Example of a request

```python
{
  "iccid": "89361123300836129514",
  "imsi": "260216611193634",
  "profileState": "INSTALLED",
  "eid": "74088234238931452"
}
```
