filescom-event-subscriptions · git:20260908.008a0d1 · 2026-09-08 · sha256 c405d50dfeb97240
filescom-event-subscriptions git:20260908.008a0d1A
Immutable. This exact content is served forever at /api/v1/blob/c405d50dfeb97240.
--- name: filescom-event-subscriptions description: | An EventSubscription selects EventRecords for an EventChannel and sends them to one or more EventTargets. --- # filescom-event-subscriptions An EventSubscription selects EventRecords for an EventChannel and sends them to one or more EventTargets. All subcommands also accept the global flags documented in [`CONTEXT.md`](../../CONTEXT.md) (`--api-key`, `--format`, `--workspace-id`, `--debug`, and the pagination flags `--cursor` / `--per-page` / `--max-pages` on `list`). Those are not repeated below. ## Commands ### `files-cli event-subscriptions list` List Event Subscriptions. | Flag | Type | Description | | --- | --- | --- | | `--sort-by` | object | If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `name`, `enabled`, `event_channel_id` or `workspace_id`. | | `--filter` | object | If set, return records where the specified field is equal to the supplied value. Valid fields are `enabled`, `event_channel_id` or `workspace_id`. Valid field combinations are `[ enabled, event_channel_id ]`, `[ workspace_id, enabled ]` or `[ workspace_id, enabled, event_channel_id ]`. | ### `files-cli event-subscriptions find` Show Event Subscription. | Flag | Type | Description | | --- | --- | --- | | `--id` | int64 | Event Subscription ID. **Required.** | ### `files-cli event-subscriptions create` Create Event Subscription. | Flag | Type | Description | | --- | --- | --- | | `--event-channel-id` | int64 | Event Channel ID | | `--workspace-id` | int64 | Workspace ID. 0 means the default workspace or site-wide. | | `--apply-to-all-workspaces` | bool | If true, this default-workspace subscription applies to events from all workspaces. | | `--name` | string | Event Subscription name. **Required.** | | `--subject` | string | Custom subject line to use for notification emails. | | `--message` | string | Custom message to include in notification emails. | | `--message-only` | bool | If true, notification email bodies contain only the custom message, omitting event details and the review button. Requires a custom message, defaults to false, and does not affect non-email targets. | | `--enabled` | bool | Whether this Event Subscription can dispatch events. | | `--event-types` | []string | Event type strings matched by this subscription. Blank means all event types. | | `--filter` | object | Structured event payload filter. | | `--delivery-policy` | object | Event Subscription delivery policy. | | `--event-target-ids` | []int64 | Event Target IDs this subscription sends to. | ### `files-cli event-subscriptions update` Update Event Subscription. | Flag | Type | Description | | --- | --- | --- | | `--id` | int64 | Event Subscription ID. **Required.** | | `--event-channel-id` | int64 | Event Channel ID | | `--workspace-id` | int64 | Workspace ID. 0 means the default workspace or site-wide. | | `--apply-to-all-workspaces` | bool | If true, this default-workspace subscription applies to events from all workspaces. | | `--name` | string | Event Subscription name. | | `--subject` | string | Custom subject line to use for notification emails. | | `--message` | string | Custom message to include in notification emails. | | `--message-only` | bool | If true, notification email bodies contain only the custom message, omitting event details and the review button. Requires a custom message, defaults to false, and does not affect non-email targets. | | `--enabled` | bool | Whether this Event Subscription can dispatch events. | | `--event-types` | []string | Event type strings matched by this subscription. Blank means all event types. | | `--filter` | object | Structured event payload filter. | | `--delivery-policy` | object | Event Subscription delivery policy. | | `--event-target-ids` | []int64 | Event Target IDs this subscription sends to. | ### `files-cli event-subscriptions delete` Delete Event Subscription. | Flag | Type | Description | | --- | --- | --- | | `--id` | int64 | Event Subscription ID. **Required.** |