> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paradime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Zapier CLI

> Trigger Zapier webhook URLs from Paradime Bolt to kick off Zaps and connect dbt™ runs with thousands of downstream apps using the paradime run zapier CLI.

The Paradime SDK provides a CLI command to trigger one or more Zapier webhooks.

<Warning>
  🔑 **Configuration Required**

  You will need one or more Zapier webhook URLs to use this command. Create them in your Zapier account using the Webhooks by Zapier trigger.
</Warning>

## Trigger Zapier Webhooks

Trigger Zapier webhooks.

### CLI Command

```bash theme={"system"}
paradime run zapier-trigger
```

#### Options

| Flag             | Type           | Description                                       |
| ---------------- | -------------- | ------------------------------------------------- |
| `--webhook-urls` | Required, TEXT | Comma-separated Zapier webhook URL(s) to trigger. |
| `--payload`      | Optional, TEXT | JSON payload to send to the webhooks (optional).  |
| `--json`         | Optional, Flag | Output results as JSON. Default: `False`.         |
| `--help`         | Optional, Flag | Show the help message and exit.                   |

### Usage Examples

```bash theme={"system"}
# Trigger a single webhook
paradime run zapier-trigger \
  --webhook-urls "https://hooks.zapier.com/hooks/catch/123456/abcdef"

# Trigger multiple webhooks with a JSON payload
paradime run zapier-trigger \
  --webhook-urls "https://hooks.zapier.com/hooks/catch/123456/abcdef,https://hooks.zapier.com/hooks/catch/123456/ghijkl" \
  --payload '{"status": "success", "schedule": "daily_run"}'
```


## Related topics

- [Webhooks](/developers/webhooks/index.md)
- [Bolt CLI](/developers/paradime-cli/bolt-cli.md)
- [Paradime CLI](/developers/paradime-cli/index.md)
- [Catalog CLI](/developers/paradime-cli/catalog-cli.md)
- [Hightouch CLI](/developers/paradime-cli/hightouch-cli.md)
