> 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/target-add.md).

# target-add

### Overview

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

### Fields

| Field        | Type    | Description                |
| ------------ | ------- | -------------------------- |
| target\_name | string  | Name of the target.        |
| target\_id   | integer | ID of the target.          |
| target       | string  | Domain name of the target. |

### Example data

```json
{
    "target": {
        "target_name": "test",
        "target_id": 12345,
        "target": "test.example.com"
    }
}
```
