> For the complete documentation index, see [llms.txt](https://docs.connectedyou.io/knowledge-base/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.connectedyou.io/knowledge-base/connectedyou-platform/api-docs/apis-reference/webhooks/network-events.md).

# Network events

Location Update events if received from the network providers will be pushed to the configured endpoint in below format.

```
{
  "account_name": "ABC",
  "account_no": 123456789,
  "eid": "12345611014230000000000000123456",
  "event_code": "VOICE",
  "event_datetime": "2024-01-06T13:38:24.000000Z",
  "event_status": "ACCEPTED",
  "event_status_code": "SO",
  "event_status_reason": "SMS service is allowed for the specific network.",
  "event_type": "LOCATION_UPDATE",
  "iccid": "1234500000003012345",
  "mcc": "238",
  "mnc": "06",
  "rule_details": {
    "name": "NE Test",
    "event": "Network Events",
    "category": "Create stream",
    "parameters": null
  }
}
```

| Item                  | Description                                                                                                                                                                                                                                       |
| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| account\_name         | Account name                                                                                                                                                                                                                                      |
| account\_no           | Account number                                                                                                                                                                                                                                    |
| eid                   | EID of the physical eSIM                                                                                                                                                                                                                          |
| event\_code           | <ul><li>VOICE: A network authentication event</li><li>GPRS: Data service authentication event</li></ul>                                                                                                                                           |
| event\_datetime       | Time stamp in UTC                                                                                                                                                                                                                                 |
| event\_status         | <ul><li>ACCEPTED: Authentication request accepted by the network</li><li>REJECTED: Authentication request rejected by the network</li></ul>                                                                                                       |
| event\_status\_code   | If available from the network provider. Identifies type of service authentication. See [here](https://docs.connectedyou.io/knowledge-base/v/connectedyou-platform/user-guide/network-activity/diagnostics/network-event-status) for more details. |
| event\_status\_reason | Reason description                                                                                                                                                                                                                                |
| event\_type           | <ul><li>LOCATION\_UPDATE: Location update events including first network attach event.</li></ul>                                                                                                                                                  |
| iccid                 | ICCID of the SIM Profile                                                                                                                                                                                                                          |
| mcc                   | Mobile Country Code                                                                                                                                                                                                                               |
| mnc                   | Mobile Network Code                                                                                                                                                                                                                               |
| rule\_details         | Details of the rule that is enabled to create the notifications via webhook                                                                                                                                                                       |
