> For the complete documentation index, see [llms.txt](https://docs.halosecurity.com/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.halosecurity.com/api/events-archive/network-add.md).

# network-add

### Overview

* **Key:** `network-add`
* **Name:** Network Added
* **Triggers when:** A new network is added to your account

### Fields

| Field         | Type    | Description               |
| ------------- | ------- | ------------------------- |
| network\_id   | integer | ID of the network         |
| network\_name | string  | Name of the network       |
| network       | string  | IP address that was added |

### Example data

```json
{
"network": {
        "network_id": 1234,
        "network_name": "Example Name",
        "network": "127.0.0.1"
        }
}
```
