TheDocumentation Index
Fetch the complete documentation index at: https://docs.formo.so/llms.txt
Use this file to discover all available pages before exploring further.
formo alerts command group lets you manage project alerts. Alerts notify you when specific events or thresholds are triggered.
formo alerts list
List all alerts for the project.
Requires
alerts:read scope on your API key.formo alerts get
Get a single alert by ID.
Requires
alerts:read scope on your API key.Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
alertId | string | ✅ | Alert ID |
formo alerts create
Create a new project alert.
Requires
alerts:write scope on your API key.Options
| Option | Type | Required | Description |
|---|---|---|---|
--name | string | ✅ | Alert name |
--trigger-type | string | ✅ | Trigger type (e.g. event, threshold) |
--trigger-filters | string | ❌ | JSON array of trigger filter objects |
--recipient | string | ❌ | JSON array of recipient objects |
--secret | string | ❌ | Webhook secret for the alert |
Examples
formo alerts update
Update an existing alert.
Requires
alerts:write scope on your API key.Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
alertId | string | ✅ | Alert ID to update |
Options
| Option | Type | Required | Description |
|---|---|---|---|
--name | string | ❌ | Alert name |
--trigger-type | string | ❌ | Trigger type |
--trigger-filters | string | ❌ | JSON array of trigger filter objects |
--recipient | string | ❌ | JSON array of recipient objects |
--secret | string | ❌ | Webhook secret for the alert |
Examples
formo alerts delete
Delete an alert.
Requires
alerts:write scope on your API key.Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
alertId | string | ✅ | Alert ID to delete |
formo alerts toggle
Toggle an alert’s status between active and paused.
Requires
alerts:write scope on your API key.Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
alertId | string | ✅ | Alert ID to toggle |
Options
| Option | Type | Required | Description |
|---|---|---|---|
--status | enum | ✅ | New status: active or paused |