> 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/webhook/esim-status.md).

# eSIM Status

eSIMPAY отправляет webhook методом POST после того, как пользователь установил eSIM-профиль на устройство. В запросе передаются идентификаторы профиля и статус профиля Installed (INSTALLED).

{% hint style="info" %}
Укажите URL вашего сервера в eSIMPAY. Разрешены только HTTPS-адреса.
{% endhint %}

### Request parameters

| Параметр     | Тип    | Пример               |
| ------------ | ------ | -------------------- |
| iccid        | string | 89361123300836129514 |
| imsi         | string | 260216611193634      |
| profileState | string | INSTALLED            |
| eid          | string | 74088234238931452    |

#### Пример запроса

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