## tools execute

Execute an account operation. Run `stripe tools details <operation>` before executing to view the required parameters and request body schema.

**Command:** `stripe tools execute`

### Arguments

- `<operation>`
  The operation name to execute, for example `get_brand_settings` or `update_brand_settings`.

### Flags

- `--body <json>`
  Pass a JSON request body for operations that accept one.

- `--live`
  Make a live request (by default, runs in test mode).

### Examples

**Execute an operation**

```sh
stripe tools execute get_brand_settings --live
```

**Execute an operation with a request body**

```sh
stripe tools execute update_brand_settings \
  --live \
  --body '{"primary_color": "rgb(82, 95, 127)", "icon": "file_123"}'
```
