# `bird email ip-pools create`

## Usage

```bash
bird email ip-pools create <name> [flags]
```

## Description

Create an IP pool

Create a new org-scoped IP pool with the given name. The pool is visible to every workspace in the organization and ready to use immediately.

Build the request from the &lt;name> argument, a JSON IPPoolCreate body via
--body-file ("-" reads stdin), or both — an inline value overrides the matching
body field. Run --example to print a ready-to-edit body, or --dry-run to print
the resolved request without sending it.

## Examples

```bash
# print the body shape (no credentials needed)
bird email ip-pools create --example

# the body it prints:
```

```json
{
  "name": "Transactional"
}
```

## Options

#### Request

| Name                | Description                                                  |
| ------------------- | ------------------------------------------------------------ |
| `--body-file`       | Read the JSON request body from this file; "-" reads stdin   |
| `--example`         | Print a complete example request body, then exit             |
| `--dry-run`         | Print the resolved request without sending it, then exit     |
| `--idempotency-key` | Deduplication key; a retry with the same key won't act twice |

#### Options

| Name                | Description                                      |
| ------------------- | ------------------------------------------------ |
| `--response-schema` | Print the fields this command returns, then exit |

## Related

| Name                                                                      | Description       |
| ------------------------------------------------------------------------- | ----------------- |
| [`bird email ip-pools delete`](/docs/cli/reference/email-ip-pools-delete) | Delete an IP pool |
| [`bird email ip-pools get`](/docs/cli/reference/email-ip-pools-get)       | Get an IP pool    |
| [`bird email ip-pools list`](/docs/cli/reference/email-ip-pools-list)     | List IP pools     |
| [`bird email ip-pools update`](/docs/cli/reference/email-ip-pools-update) | Update an IP pool |