productivity
Svix CLI for AI Agents
Use the Svix CLI from KosmoKrator to call Svix tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.Svix CLI Setup
Svix can be configured headlessly with `kosmokrator integrations:configure svix`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure svix --set auth_token="$SVIX_AUTH_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor svix --json
kosmokrator integrations:status --json Credentials
Authentication type: Bearer token bearer_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
auth_token | SVIX_AUTH_TOKEN | Secret secret | yes | Auth Token |
url | SVIX_URL | URL url | no | API Base URL |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call svix.svix_aggregate_app_stats '{}' --json kosmo integrations:svix svix_aggregate_app_stats '{}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs svix --json
kosmo integrations:docs svix.svix_aggregate_app_stats --json
kosmo integrations:schema svix.svix_aggregate_app_stats --json
kosmo integrations:search "Svix" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
svix.svix_aggregate_app_stats
Creates a background task to calculate the number of message attempts (`messageDestinations`) made for all applications in the environment. Official Svix API endpoint: POST https://api.svix.com/api/v1/stats/usage/app (operationId: v1.statistics.aggregate-app-stats).
write - Parameters
- none
kosmo integrations:call svix.svix_aggregate_app_stats '{}' --json kosmo integrations:svix svix_aggregate_app_stats '{}' --json svix.svix_aggregate_event_types
Creates a background task to calculate the listed event types for all apps in the organization. Official Svix API endpoint: PUT https://api.svix.com/api/v1/stats/usage/event-types (operationId: v1.statistics.aggregate-event-types).
write - Parameters
- none
kosmo integrations:call svix.svix_aggregate_event_types '{}' --json kosmo integrations:svix svix_aggregate_event_types '{}' --json svix.svix_bulk_replay_messages
Bulk replay messages sent to the endpoint. Only messages that were created after `since` will be sent. This will replay both successful, and failed messages A completed task will return a payload like the following: Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/bulk-replay (operationId: v1.endpoint.bulk-replay).
write - Parameters
- none
kosmo integrations:call svix.svix_bulk_replay_messages '{}' --json kosmo integrations:svix svix_bulk_replay_messages '{}' --json svix.svix_create_application
Create a new application. Official Svix API endpoint: POST https://api.svix.com/api/v1/app (operationId: v1.application.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_application '{}' --json kosmo integrations:svix svix_create_application '{}' --json svix.svix_create_connector
Create a new connector. Official Svix API endpoint: POST https://api.svix.com/api/v1/connector (operationId: v1.connector.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_connector '{}' --json kosmo integrations:svix svix_create_connector '{}' --json svix.svix_create_endpoint
Create a new endpoint for the application. When `secret` is `null` the secret is automatically generated (recommended). Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/endpoint (operationId: v1.endpoint.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_endpoint '{}' --json kosmo integrations:svix svix_create_endpoint '{}' --json svix.svix_create_event_type
Create new or unarchive existing event type. Official Svix API endpoint: POST https://api.svix.com/api/v1/event-type (operationId: v1.event-type.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_event_type '{}' --json kosmo integrations:svix svix_create_event_type '{}' --json svix.svix_create_events
Creates events on the Stream. Official Svix API endpoint: POST https://api.svix.com/api/v1/stream/{stream_id}/events (operationId: v1.streaming.events.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_events '{}' --json kosmo integrations:svix svix_create_events '{}' --json svix.svix_create_ingest_endpoint
Create an ingest endpoint. Official Svix API endpoint: POST https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint (operationId: v1.ingest.endpoint.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_ingest_endpoint '{}' --json kosmo integrations:svix svix_create_ingest_endpoint '{}' --json svix.svix_create_ingest_source
Create Ingest Source. Official Svix API endpoint: POST https://api.svix.com/ingest/api/v1/source (operationId: v1.ingest.source.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_ingest_source '{}' --json kosmo integrations:svix svix_create_ingest_source '{}' --json svix.svix_create_integration
Create an integration. Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/integration (operationId: v1.integration.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_integration '{}' --json kosmo integrations:svix svix_create_integration '{}' --json svix.svix_create_message
Creates a new message and dispatches it to all of the application's endpoints. Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/msg (operationId: v1.message.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_message '{}' --json kosmo integrations:svix svix_create_message '{}' --json svix.svix_create_message_precheck
A pre-check call for `message.create` that checks whether any active endpoints are listening to this message. Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/msg/precheck/active (operationId: v1.message.precheck).
write - Parameters
- none
kosmo integrations:call svix.svix_create_message_precheck '{}' --json kosmo integrations:svix svix_create_message_precheck '{}' --json svix.svix_create_operational_webhook_endpoint
Create an operational webhook endpoint. Official Svix API endpoint: POST https://api.svix.com/api/v1/operational-webhook/endpoint (operationId: v1.operational-webhook.endpoint.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_operational_webhook_endpoint '{}' --json kosmo integrations:svix svix_create_operational_webhook_endpoint '{}' --json svix.svix_create_sink
Creates a new sink. Official Svix API endpoint: POST https://api.svix.com/api/v1/stream/{stream_id}/sink (operationId: v1.streaming.sink.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_sink '{}' --json kosmo integrations:svix svix_create_sink '{}' --json svix.svix_create_stream
Creates a new stream. Official Svix API endpoint: POST https://api.svix.com/api/v1/stream (operationId: v1.streaming.stream.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_stream '{}' --json kosmo integrations:svix svix_create_stream '{}' --json svix.svix_create_stream_event_type
Create an event type for Streams. Official Svix API endpoint: POST https://api.svix.com/api/v1/stream/event-type (operationId: v1.streaming.event-type.create).
write - Parameters
- none
kosmo integrations:call svix.svix_create_stream_event_type '{}' --json kosmo integrations:svix svix_create_stream_event_type '{}' --json svix.svix_delete_application
Delete an application. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/app/{app_id} (operationId: v1.application.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_application '{}' --json kosmo integrations:svix svix_delete_application '{}' --json svix.svix_delete_attempt_response_body
Deletes the given attempt's response body. Useful when an endpoint accidentally returned sensitive content. The message can't be replayed or resent once its payload has been deleted or expired. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/app/{app_id}/msg/{msg_id}/attempt/{attempt_id}/content (operationId: v1.message-attempt.expunge-content).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_attempt_response_body '{}' --json kosmo integrations:svix svix_delete_attempt_response_body '{}' --json svix.svix_delete_connector
Delete a connector. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/connector/{connector_id} (operationId: v1.connector.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_connector '{}' --json kosmo integrations:svix svix_delete_connector '{}' --json svix.svix_delete_endpoint
Delete an endpoint. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id} (operationId: v1.endpoint.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_endpoint '{}' --json kosmo integrations:svix svix_delete_endpoint '{}' --json svix.svix_delete_event_type
Archive an event type. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/event-type/{event_type_name} (operationId: v1.event-type.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_event_type '{}' --json kosmo integrations:svix svix_delete_event_type '{}' --json svix.svix_delete_ingest_endpoint
Delete an ingest endpoint. Official Svix API endpoint: DELETE https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint/{endpoint_id} (operationId: v1.ingest.endpoint.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_ingest_endpoint '{}' --json kosmo integrations:svix svix_delete_ingest_endpoint '{}' --json svix.svix_delete_ingest_source
Delete an Ingest Source. Official Svix API endpoint: DELETE https://api.svix.com/ingest/api/v1/source/{source_id} (operationId: v1.ingest.source.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_ingest_source '{}' --json kosmo integrations:svix svix_delete_ingest_source '{}' --json svix.svix_delete_integration
Delete an integration. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/app/{app_id}/integration/{integ_id} (operationId: v1.integration.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_integration '{}' --json kosmo integrations:svix svix_delete_integration '{}' --json svix.svix_delete_message_payload
Delete the given message's payload. Useful in cases when a message was accidentally sent with sensitive content. The message can't be replayed or resent once its payload has been deleted or expired. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/app/{app_id}/msg/{msg_id}/content (operationId: v1.message.expunge-content).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_message_payload '{}' --json kosmo integrations:svix svix_delete_message_payload '{}' --json svix.svix_delete_operational_webhook_endpoint
Delete an operational webhook endpoint. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/operational-webhook/endpoint/{endpoint_id} (operationId: v1.operational-webhook.endpoint.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_operational_webhook_endpoint '{}' --json kosmo integrations:svix svix_delete_operational_webhook_endpoint '{}' --json svix.svix_delete_sink
Delete a sink. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id} (operationId: v1.streaming.sink.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_sink '{}' --json kosmo integrations:svix svix_delete_sink '{}' --json svix.svix_delete_stream
Delete a stream. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/stream/{stream_id} (operationId: v1.streaming.stream.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_stream '{}' --json kosmo integrations:svix svix_delete_stream '{}' --json svix.svix_delete_stream_event_type
Delete an event type. Official Svix API endpoint: DELETE https://api.svix.com/api/v1/stream/event-type/{name} (operationId: v1.streaming.event-type.delete).
write - Parameters
- none
kosmo integrations:call svix.svix_delete_stream_event_type '{}' --json kosmo integrations:svix svix_delete_stream_event_type '{}' --json svix.svix_endpoint_stats
Get basic statistics for the endpoint. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/stats (operationId: v1.endpoint.get-stats).
read - Parameters
- none
kosmo integrations:call svix.svix_endpoint_stats '{}' --json kosmo integrations:svix svix_endpoint_stats '{}' --json svix.svix_event_type_import_from_openapi
Given an OpenAPI spec, create new or update existing event types. Official Svix API endpoint: POST https://api.svix.com/api/v1/event-type/import/openapi (operationId: v1.event-type.import-openapi).
write - Parameters
- none
kosmo integrations:call svix.svix_event_type_import_from_openapi '{}' --json kosmo integrations:svix svix_event_type_import_from_openapi '{}' --json svix.svix_expire_all
Expire all of the tokens associated with a specific application. Official Svix API endpoint: POST https://api.svix.com/api/v1/auth/app/{app_id}/expire-all (operationId: v1.authentication.expire-all).
write - Parameters
- none
kosmo integrations:call svix.svix_expire_all '{}' --json kosmo integrations:svix svix_expire_all '{}' --json svix.svix_export_environment_configuration
Download a JSON file containing all org-settings and event types. Note that the schema for [`EnvironmentOut`] is subject to change. The fields herein are provided for convenience but should be treated as JSON blobs. Official Svix API endpoint: POST https://api.svix.com/api/v1/environment/export (operationId: v1.environment.export).
write - Parameters
- none
kosmo integrations:call svix.svix_export_environment_configuration '{}' --json kosmo integrations:svix svix_export_environment_configuration '{}' --json svix.svix_expunge_all_message_contents
Delete all message payloads for the application. This operation is only available in the Enterprise plan. A completed task will return a payload like the following: Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/msg/expunge-all-contents (operationId: v1.message.expunge-all-contents).
write - Parameters
- none
kosmo integrations:call svix.svix_expunge_all_message_contents '{}' --json kosmo integrations:svix svix_expunge_all_message_contents '{}' --json svix.svix_get_application
Get an application. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id} (operationId: v1.application.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_application '{}' --json kosmo integrations:svix svix_get_application '{}' --json svix.svix_get_attempt
`msg_id`: Use a message id or a message `eventId` Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/msg/{msg_id}/attempt/{attempt_id} (operationId: v1.message-attempt.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_attempt '{}' --json kosmo integrations:svix svix_get_attempt '{}' --json svix.svix_get_background_task
Get a background task by ID. Official Svix API endpoint: GET https://api.svix.com/api/v1/background-task/{task_id} (operationId: v1.background-task.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_background_task '{}' --json kosmo integrations:svix svix_get_background_task '{}' --json svix.svix_get_connector
Get a connector. Official Svix API endpoint: GET https://api.svix.com/api/v1/connector/{connector_id} (operationId: v1.connector.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_connector '{}' --json kosmo integrations:svix svix_get_connector '{}' --json svix.svix_get_consumer_app_portal_access
Use this function to get magic links (and authentication codes) for connecting your users to the Consumer Application Portal. Official Svix API endpoint: POST https://api.svix.com/api/v1/auth/app-portal-access/{app_id} (operationId: v1.authentication.app-portal-access).
write - Parameters
- none
kosmo integrations:call svix.svix_get_consumer_app_portal_access '{}' --json kosmo integrations:svix svix_get_consumer_app_portal_access '{}' --json svix.svix_get_endpoint
Get an endpoint. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id} (operationId: v1.endpoint.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_endpoint '{}' --json kosmo integrations:svix svix_get_endpoint '{}' --json svix.svix_get_endpoint_headers
Get the additional headers to be sent with the webhook. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/headers (operationId: v1.endpoint.get-headers).
read - Parameters
- none
kosmo integrations:call svix.svix_get_endpoint_headers '{}' --json kosmo integrations:svix svix_get_endpoint_headers '{}' --json svix.svix_get_endpoint_secret
Get the endpoint's signing secret. This is used to verify the authenticity of the webhook. For more information please refer to [the consuming webhooks docs](https://docs.svix.com/consuming-webhooks/). Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/secret (operationId: v1.endpoint.get-secret).
read - Parameters
- none
kosmo integrations:call svix.svix_get_endpoint_secret '{}' --json kosmo integrations:svix svix_get_endpoint_secret '{}' --json svix.svix_get_endpoint_transformation
Get the transformation code associated with this endpoint. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/transformation (operationId: v1.endpoint.transformation-get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_endpoint_transformation '{}' --json kosmo integrations:svix svix_get_endpoint_transformation '{}' --json svix.svix_get_event_type
Get an event type. Official Svix API endpoint: GET https://api.svix.com/api/v1/event-type/{event_type_name} (operationId: v1.event-type.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_event_type '{}' --json kosmo integrations:svix svix_get_event_type '{}' --json svix.svix_get_ingest_endpoint
Get an ingest endpoint. Official Svix API endpoint: GET https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint/{endpoint_id} (operationId: v1.ingest.endpoint.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_ingest_endpoint '{}' --json kosmo integrations:svix svix_get_ingest_endpoint '{}' --json svix.svix_get_ingest_endpoint_headers
Get the additional headers to be sent with the ingest. Official Svix API endpoint: GET https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint/{endpoint_id}/headers (operationId: v1.ingest.endpoint.get-headers).
read - Parameters
- none
kosmo integrations:call svix.svix_get_ingest_endpoint_headers '{}' --json kosmo integrations:svix svix_get_ingest_endpoint_headers '{}' --json svix.svix_get_ingest_endpoint_secret
Get an ingest endpoint's signing secret. This is used to verify the authenticity of the webhook. For more information please refer to [the consuming webhooks docs](https://docs.svix.com/consuming-webhooks/). Official Svix API endpoint: GET https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint/{endpoint_id}/secret (operationId: v1.ingest.endpoint.get-secret).
read - Parameters
- none
kosmo integrations:call svix.svix_get_ingest_endpoint_secret '{}' --json kosmo integrations:svix svix_get_ingest_endpoint_secret '{}' --json svix.svix_get_ingest_endpoint_transformation
Get the transformation code associated with this ingest endpoint. Official Svix API endpoint: GET https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint/{endpoint_id}/transformation (operationId: v1.ingest.endpoint.get-transformation).
read - Parameters
- none
kosmo integrations:call svix.svix_get_ingest_endpoint_transformation '{}' --json kosmo integrations:svix svix_get_ingest_endpoint_transformation '{}' --json svix.svix_get_ingest_source
Get an Ingest Source by id or uid. Official Svix API endpoint: GET https://api.svix.com/ingest/api/v1/source/{source_id} (operationId: v1.ingest.source.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_ingest_source '{}' --json kosmo integrations:svix svix_get_ingest_source '{}' --json svix.svix_get_integration
Get an integration. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/integration/{integ_id} (operationId: v1.integration.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_integration '{}' --json kosmo integrations:svix svix_get_integration '{}' --json svix.svix_get_integration_key
Get an integration's key. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/integration/{integ_id}/key (operationId: v1.integration.get-key).
read - Parameters
- none
kosmo integrations:call svix.svix_get_integration_key '{}' --json kosmo integrations:svix svix_get_integration_key '{}' --json svix.svix_get_message
Get a message by its ID or eventID. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/msg/{msg_id} (operationId: v1.message.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_message '{}' --json kosmo integrations:svix svix_get_message '{}' --json svix.svix_get_operational_webhook_endpoint
Get an operational webhook endpoint. Official Svix API endpoint: GET https://api.svix.com/api/v1/operational-webhook/endpoint/{endpoint_id} (operationId: v1.operational-webhook.endpoint.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_operational_webhook_endpoint '{}' --json kosmo integrations:svix svix_get_operational_webhook_endpoint '{}' --json svix.svix_get_operational_webhook_endpoint_headers
Get the additional headers to be sent with the operational webhook. Official Svix API endpoint: GET https://api.svix.com/api/v1/operational-webhook/endpoint/{endpoint_id}/headers (operationId: v1.operational-webhook.endpoint.get-headers).
read - Parameters
- none
kosmo integrations:call svix.svix_get_operational_webhook_endpoint_headers '{}' --json kosmo integrations:svix svix_get_operational_webhook_endpoint_headers '{}' --json svix.svix_get_operational_webhook_endpoint_secret
Get an operational webhook endpoint's signing secret. This is used to verify the authenticity of the webhook. For more information please refer to [the consuming webhooks docs](https://docs.svix.com/consuming-webhooks/). Official Svix API endpoint: GET https://api.svix.com/api/v1/operational-webhook/endpoint/{endpoint_id}/secret (operationId: v1.operational-webhook.endpoint.get-secret).
read - Parameters
- none
kosmo integrations:call svix.svix_get_operational_webhook_endpoint_secret '{}' --json kosmo integrations:svix svix_get_operational_webhook_endpoint_secret '{}' --json svix.svix_get_poller_token
Get the current auth token for the stream poller. Official Svix API endpoint: GET https://api.svix.com/api/v1/auth/stream/{stream_id}/sink/{sink_id}/poller/token (operationId: v1.authentication.get-stream-poller-token).
read - Parameters
- none
kosmo integrations:call svix.svix_get_poller_token '{}' --json kosmo integrations:svix svix_get_poller_token '{}' --json svix.svix_get_sink
Get a sink by id or uid. Official Svix API endpoint: GET https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id} (operationId: v1.streaming.sink.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_sink '{}' --json kosmo integrations:svix svix_get_sink '{}' --json svix.svix_get_sink_headers
Get the HTTP sink headers. Only valid for `http` or `otelTracing` sinks. Official Svix API endpoint: GET https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id}/headers (operationId: v1.streaming.sink-headers-get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_sink_headers '{}' --json kosmo integrations:svix svix_get_sink_headers '{}' --json svix.svix_get_sink_secret
Get the sink's signing secret (only supported for http sinks) This is used to verify the authenticity of the delivery. Official Svix API endpoint: GET https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id}/secret (operationId: v1.streaming.sink.get-secret).
read - Parameters
- none
kosmo integrations:call svix.svix_get_sink_secret '{}' --json kosmo integrations:svix svix_get_sink_secret '{}' --json svix.svix_get_sink_transformation
Get the transformation code associated with this sink. Official Svix API endpoint: GET https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id}/transformation (operationId: v1.streaming.sink-transformation-get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_sink_transformation '{}' --json kosmo integrations:svix svix_get_sink_transformation '{}' --json svix.svix_get_stream
Get a stream by id or uid. Official Svix API endpoint: GET https://api.svix.com/api/v1/stream/{stream_id} (operationId: v1.streaming.stream.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_stream '{}' --json kosmo integrations:svix svix_get_stream '{}' --json svix.svix_get_stream_event_type
Get an event type. Official Svix API endpoint: GET https://api.svix.com/api/v1/stream/event-type/{name} (operationId: v1.streaming.event-type.get).
read - Parameters
- none
kosmo integrations:call svix.svix_get_stream_event_type '{}' --json kosmo integrations:svix svix_get_stream_event_type '{}' --json svix.svix_get_stream_portal_access
Use this function to get magic links (and authentication codes) for connecting your users to the Stream Consumer Portal. Official Svix API endpoint: POST https://api.svix.com/api/v1/auth/stream-portal-access/{stream_id} (operationId: v1.authentication.stream-portal-access).
write - Parameters
- none
kosmo integrations:call svix.svix_get_stream_portal_access '{}' --json kosmo integrations:svix svix_get_stream_portal_access '{}' --json svix.svix_health
Verify the API server is up and running. Official Svix API endpoint: GET https://api.svix.com/api/v1/health (operationId: v1.health.get).
read - Parameters
- none
kosmo integrations:call svix.svix_health '{}' --json kosmo integrations:svix svix_health '{}' --json svix.svix_import_environment_configuration
Import a configuration into the active organization. Official Svix API endpoint: POST https://api.svix.com/api/v1/environment/import (operationId: v1.environment.import).
write - Parameters
- none
kosmo integrations:call svix.svix_import_environment_configuration '{}' --json kosmo integrations:svix svix_import_environment_configuration '{}' --json svix.svix_ingest_source_consumer_portal
Get access to the Ingest Source Consumer Portal. Official Svix API endpoint: POST https://api.svix.com/ingest/api/v1/source/{source_id}/dashboard (operationId: v1.ingest.dashboard).
write - Parameters
- none
kosmo integrations:call svix.svix_ingest_source_consumer_portal '{}' --json kosmo integrations:svix svix_ingest_source_consumer_portal '{}' --json svix.svix_list_applications
List of all the organization's applications. Official Svix API endpoint: GET https://api.svix.com/api/v1/app (operationId: v1.application.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_applications '{}' --json kosmo integrations:svix svix_list_applications '{}' --json svix.svix_list_attempted_destinations
List endpoints attempted by a given message. Additionally includes metadata about the latest message attempt. By default, endpoints are listed in ascending order by ID. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/msg/{msg_id}/endpoint (operationId: v1.message-attempt.list-attempted-destinations).
read - Parameters
- none
kosmo integrations:call svix.svix_list_attempted_destinations '{}' --json kosmo integrations:svix svix_list_attempted_destinations '{}' --json svix.svix_list_attempted_messages
List messages for a particular endpoint. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/msg (operationId: v1.message-attempt.list-attempted-messages).
read - Parameters
- none
kosmo integrations:call svix.svix_list_attempted_messages '{}' --json kosmo integrations:svix svix_list_attempted_messages '{}' --json svix.svix_list_attempts_by_endpoint
List attempts by endpoint id Note that by default this endpoint is limited to retrieving 90 days' worth of data relative to now or, if an iterator is provided, 90 days before/after the time indicated by the iterator ID. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/attempt/endpoint/{endpoint_id} (operationId: v1.message-attempt.list-by-endpoint).
read - Parameters
- none
kosmo integrations:call svix.svix_list_attempts_by_endpoint '{}' --json kosmo integrations:svix svix_list_attempts_by_endpoint '{}' --json svix.svix_list_attempts_by_msg
List attempts by message ID. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/attempt/msg/{msg_id} (operationId: v1.message-attempt.list-by-msg).
read - Parameters
- none
kosmo integrations:call svix.svix_list_attempts_by_msg '{}' --json kosmo integrations:svix svix_list_attempts_by_msg '{}' --json svix.svix_list_background_tasks
List background tasks executed in the past 90 days. Official Svix API endpoint: GET https://api.svix.com/api/v1/background-task (operationId: v1.background-task.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_background_tasks '{}' --json kosmo integrations:svix svix_list_background_tasks '{}' --json svix.svix_list_connectors
List all connectors for an application. Official Svix API endpoint: GET https://api.svix.com/api/v1/connector (operationId: v1.connector.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_connectors '{}' --json kosmo integrations:svix svix_list_connectors '{}' --json svix.svix_list_endpoints
List the application's endpoints. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/endpoint (operationId: v1.endpoint.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_endpoints '{}' --json kosmo integrations:svix svix_list_endpoints '{}' --json svix.svix_list_event_types
Return the list of event types. Official Svix API endpoint: GET https://api.svix.com/api/v1/event-type (operationId: v1.event-type.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_event_types '{}' --json kosmo integrations:svix svix_list_event_types '{}' --json svix.svix_list_ingest_endpoints
List ingest endpoints. Official Svix API endpoint: GET https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint (operationId: v1.ingest.endpoint.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_ingest_endpoints '{}' --json kosmo integrations:svix svix_list_ingest_endpoints '{}' --json svix.svix_list_ingest_sources
List of all the organization's Ingest Sources. Official Svix API endpoint: GET https://api.svix.com/ingest/api/v1/source (operationId: v1.ingest.source.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_ingest_sources '{}' --json kosmo integrations:svix svix_list_ingest_sources '{}' --json svix.svix_list_integrations
List the application's integrations. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/integration (operationId: v1.integration.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_integrations '{}' --json kosmo integrations:svix svix_list_integrations '{}' --json svix.svix_list_messages
List all of the application's messages. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/msg (operationId: v1.message.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_messages '{}' --json kosmo integrations:svix svix_list_messages '{}' --json svix.svix_list_operational_webhook_endpoints
List operational webhook endpoints. Official Svix API endpoint: GET https://api.svix.com/api/v1/operational-webhook/endpoint (operationId: v1.operational-webhook.endpoint.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_operational_webhook_endpoints '{}' --json kosmo integrations:svix svix_list_operational_webhook_endpoints '{}' --json svix.svix_list_sinks
List of all the stream's sinks. Official Svix API endpoint: GET https://api.svix.com/api/v1/stream/{stream_id}/sink (operationId: v1.streaming.sink.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_sinks '{}' --json kosmo integrations:svix svix_list_sinks '{}' --json svix.svix_list_stream_event_types
List of all the organization's event types for streaming. Official Svix API endpoint: GET https://api.svix.com/api/v1/stream/event-type (operationId: v1.streaming.event-type.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_stream_event_types '{}' --json kosmo integrations:svix svix_list_stream_event_types '{}' --json svix.svix_list_streams
List of all the organization's streams. Official Svix API endpoint: GET https://api.svix.com/api/v1/stream (operationId: v1.streaming.stream.list).
read - Parameters
- none
kosmo integrations:call svix.svix_list_streams '{}' --json kosmo integrations:svix svix_list_streams '{}' --json svix.svix_logout
Logout an app token. Trying to log out other tokens will fail. Official Svix API endpoint: POST https://api.svix.com/api/v1/auth/logout (operationId: v1.authentication.logout).
write - Parameters
- none
kosmo integrations:call svix.svix_logout '{}' --json kosmo integrations:svix svix_logout '{}' --json svix.svix_patch_application
Partially update an application. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/app/{app_id} (operationId: v1.application.patch).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_application '{}' --json kosmo integrations:svix svix_patch_application '{}' --json svix.svix_patch_connector
Partially update a connector. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/connector/{connector_id} (operationId: v1.connector.patch).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_connector '{}' --json kosmo integrations:svix svix_patch_connector '{}' --json svix.svix_patch_endpoint
Partially update an endpoint. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id} (operationId: v1.endpoint.patch).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_endpoint '{}' --json kosmo integrations:svix svix_patch_endpoint '{}' --json svix.svix_patch_endpoint_headers
Partially set the additional headers to be sent with the webhook. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/headers (operationId: v1.endpoint.patch-headers).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_endpoint_headers '{}' --json kosmo integrations:svix svix_patch_endpoint_headers '{}' --json svix.svix_patch_endpoint_transformation
Set or unset the transformation code associated with this endpoint. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/transformation (operationId: v1.endpoint.patch-transformation).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_endpoint_transformation '{}' --json kosmo integrations:svix svix_patch_endpoint_transformation '{}' --json svix.svix_patch_event_type
Partially update an event type. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/event-type/{event_type_name} (operationId: v1.event-type.patch).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_event_type '{}' --json kosmo integrations:svix svix_patch_event_type '{}' --json svix.svix_patch_ingest_endpoint_transformation
Set or unset the transformation code associated with this ingest endpoint. Official Svix API endpoint: PATCH https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint/{endpoint_id}/transformation (operationId: v1.ingest.endpoint.set-transformation).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_ingest_endpoint_transformation '{}' --json kosmo integrations:svix svix_patch_ingest_endpoint_transformation '{}' --json svix.svix_patch_sink
Partially update a sink. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id} (operationId: v1.streaming.sink.patch).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_sink '{}' --json kosmo integrations:svix svix_patch_sink '{}' --json svix.svix_patch_sink_headers
Updates the Sink's headers. Only valid for `http` or `otelTracing` sinks. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id}/headers (operationId: v1.streaming.sink-headers-patch).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_sink_headers '{}' --json kosmo integrations:svix svix_patch_sink_headers '{}' --json svix.svix_patch_stream
Partially update a stream. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/stream/{stream_id} (operationId: v1.streaming.stream.patch).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_stream '{}' --json kosmo integrations:svix svix_patch_stream '{}' --json svix.svix_patch_stream_event_type
Patch an event type for Streams. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/stream/event-type/{name} (operationId: v1.streaming.event-type.patch).
write - Parameters
- none
kosmo integrations:call svix.svix_patch_stream_event_type '{}' --json kosmo integrations:svix svix_patch_stream_event_type '{}' --json svix.svix_poller_consumer_poll
Reads the stream of created messages for an application, filtered on the Sink's event types and Channels, using server-managed iterator tracking. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/poller/{sink_id}/consumer/{consumer_id} (operationId: v1.message.poller.consumer-poll).
read - Parameters
- none
kosmo integrations:call svix.svix_poller_consumer_poll '{}' --json kosmo integrations:svix svix_poller_consumer_poll '{}' --json svix.svix_poller_consumer_seek
Sets the starting offset for the consumer of a polling endpoint. Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/poller/{sink_id}/consumer/{consumer_id}/seek (operationId: v1.message.poller.consumer-seek).
write - Parameters
- none
kosmo integrations:call svix.svix_poller_consumer_seek '{}' --json kosmo integrations:svix svix_poller_consumer_seek '{}' --json svix.svix_poller_poll
Reads the stream of created messages for an application, filtered on the Sink's event types and Channels. Official Svix API endpoint: GET https://api.svix.com/api/v1/app/{app_id}/poller/{sink_id} (operationId: v1.message.poller.poll).
read - Parameters
- none
kosmo integrations:call svix.svix_poller_poll '{}' --json kosmo integrations:svix svix_poller_poll '{}' --json svix.svix_poller_sink_stream_events
Iterate over a stream of events. The sink must be of type `poller` to use the poller endpoint. Official Svix API endpoint: GET https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id}/events (operationId: v1.streaming.events.get).
read - Parameters
- none
kosmo integrations:call svix.svix_poller_sink_stream_events '{}' --json kosmo integrations:svix svix_poller_sink_stream_events '{}' --json svix.svix_recover_failed_webhooks
Resend all failed messages since a given time. Messages that were sent successfully, even if failed initially, are not resent. A completed task will return a payload like the following: Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/recover (operationId: v1.endpoint.recover).
write - Parameters
- none
kosmo integrations:call svix.svix_recover_failed_webhooks '{}' --json kosmo integrations:svix svix_recover_failed_webhooks '{}' --json svix.svix_replay_missing_webhooks
Replays messages to the endpoint. Only messages that were created after `since` will be sent. Messages that were previously sent to the endpoint are not resent. A completed task will return a payload like the following: Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/replay-missing (operationId: v1.endpoint.replay-missing).
write - Parameters
- none
kosmo integrations:call svix.svix_replay_missing_webhooks '{}' --json kosmo integrations:svix svix_replay_missing_webhooks '{}' --json svix.svix_resend_webhook
Resend a message to the specified endpoint. Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/msg/{msg_id}/endpoint/{endpoint_id}/resend (operationId: v1.message-attempt.resend).
write - Parameters
- none
kosmo integrations:call svix.svix_resend_webhook '{}' --json kosmo integrations:svix svix_resend_webhook '{}' --json svix.svix_rotate_endpoint_secret
Rotates the endpoint's signing secret. The previous secret will remain valid for the next 24 hours. Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/secret/rotate (operationId: v1.endpoint.rotate-secret).
write - Parameters
- none
kosmo integrations:call svix.svix_rotate_endpoint_secret '{}' --json kosmo integrations:svix svix_rotate_endpoint_secret '{}' --json svix.svix_rotate_ingest_endpoint_secret
Rotates an ingest endpoint's signing secret. The previous secret will remain valid for the next 24 hours. Official Svix API endpoint: POST https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint/{endpoint_id}/secret/rotate (operationId: v1.ingest.endpoint.rotate-secret).
write - Parameters
- none
kosmo integrations:call svix.svix_rotate_ingest_endpoint_secret '{}' --json kosmo integrations:svix svix_rotate_ingest_endpoint_secret '{}' --json svix.svix_rotate_ingest_token
Rotate the Ingest Source's Url Token. Official Svix API endpoint: POST https://api.svix.com/ingest/api/v1/source/{source_id}/token/rotate (operationId: v1.ingest.source.rotate-token).
write - Parameters
- none
kosmo integrations:call svix.svix_rotate_ingest_token '{}' --json kosmo integrations:svix svix_rotate_ingest_token '{}' --json svix.svix_rotate_integration_key
Rotate the integration's key. The previous key will be immediately revoked. Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/integration/{integ_id}/key/rotate (operationId: v1.integration.rotate-key).
write - Parameters
- none
kosmo integrations:call svix.svix_rotate_integration_key '{}' --json kosmo integrations:svix svix_rotate_integration_key '{}' --json svix.svix_rotate_operational_webhook_endpoint_secret
Rotates an operational webhook endpoint's signing secret. The previous secret will remain valid for the next 24 hours. Official Svix API endpoint: POST https://api.svix.com/api/v1/operational-webhook/endpoint/{endpoint_id}/secret/rotate (operationId: v1.operational-webhook.endpoint.rotate-secret).
write - Parameters
- none
kosmo integrations:call svix.svix_rotate_operational_webhook_endpoint_secret '{}' --json kosmo integrations:svix svix_rotate_operational_webhook_endpoint_secret '{}' --json svix.svix_rotate_poller_token
Create a new auth token for the stream poller API. Official Svix API endpoint: POST https://api.svix.com/api/v1/auth/stream/{stream_id}/sink/{sink_id}/poller/token/rotate (operationId: v1.authentication.rotate-stream-poller-token).
write - Parameters
- none
kosmo integrations:call svix.svix_rotate_poller_token '{}' --json kosmo integrations:svix svix_rotate_poller_token '{}' --json svix.svix_rotate_sink_secret
Rotates the signing secret (only supported for http sinks). Official Svix API endpoint: POST https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id}/secret/rotate (operationId: v1.streaming.sink.rotate-secret).
write - Parameters
- none
kosmo integrations:call svix.svix_rotate_sink_secret '{}' --json kosmo integrations:svix svix_rotate_sink_secret '{}' --json svix.svix_send_event_type_example_message
Send an example message for an event. Official Svix API endpoint: POST https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/send-example (operationId: v1.endpoint.send-example).
write - Parameters
- none
kosmo integrations:call svix.svix_send_event_type_example_message '{}' --json kosmo integrations:svix svix_send_event_type_example_message '{}' --json svix.svix_set_sink_transformation
Set or unset the transformation code associated with this sink. Official Svix API endpoint: PATCH https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id}/transformation (operationId: v1.streaming.sink.transformation-partial-update).
write - Parameters
- none
kosmo integrations:call svix.svix_set_sink_transformation '{}' --json kosmo integrations:svix svix_set_sink_transformation '{}' --json svix.svix_stream_expire_all
Expire all of the tokens associated with a specific stream. Official Svix API endpoint: POST https://api.svix.com/api/v1/auth/stream/{stream_id}/expire-all (operationId: v1.authentication.stream-expire-all).
write - Parameters
- none
kosmo integrations:call svix.svix_stream_expire_all '{}' --json kosmo integrations:svix svix_stream_expire_all '{}' --json svix.svix_stream_logout
Logout a stream token. Trying to log out other tokens will fail. Official Svix API endpoint: POST https://api.svix.com/api/v1/auth/stream-logout (operationId: v1.authentication.stream-logout).
write - Parameters
- none
kosmo integrations:call svix.svix_stream_logout '{}' --json kosmo integrations:svix svix_stream_logout '{}' --json svix.svix_update_application
Update an application. Official Svix API endpoint: PUT https://api.svix.com/api/v1/app/{app_id} (operationId: v1.application.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_application '{}' --json kosmo integrations:svix svix_update_application '{}' --json svix.svix_update_connector
Update a connector. Official Svix API endpoint: PUT https://api.svix.com/api/v1/connector/{connector_id} (operationId: v1.connector.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_connector '{}' --json kosmo integrations:svix svix_update_connector '{}' --json svix.svix_update_endpoint
Update an endpoint. Official Svix API endpoint: PUT https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id} (operationId: v1.endpoint.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_endpoint '{}' --json kosmo integrations:svix svix_update_endpoint '{}' --json svix.svix_update_endpoint_headers
Set the additional headers to be sent with the webhook. Official Svix API endpoint: PUT https://api.svix.com/api/v1/app/{app_id}/endpoint/{endpoint_id}/headers (operationId: v1.endpoint.update-headers).
write - Parameters
- none
kosmo integrations:call svix.svix_update_endpoint_headers '{}' --json kosmo integrations:svix svix_update_endpoint_headers '{}' --json svix.svix_update_event_type
Update an event type. Official Svix API endpoint: PUT https://api.svix.com/api/v1/event-type/{event_type_name} (operationId: v1.event-type.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_event_type '{}' --json kosmo integrations:svix svix_update_event_type '{}' --json svix.svix_update_ingest_endpoint
Update an ingest endpoint. Official Svix API endpoint: PUT https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint/{endpoint_id} (operationId: v1.ingest.endpoint.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_ingest_endpoint '{}' --json kosmo integrations:svix svix_update_ingest_endpoint '{}' --json svix.svix_update_ingest_endpoint_headers
Set the additional headers to be sent to the endpoint. Official Svix API endpoint: PUT https://api.svix.com/ingest/api/v1/source/{source_id}/endpoint/{endpoint_id}/headers (operationId: v1.ingest.endpoint.update-headers).
write - Parameters
- none
kosmo integrations:call svix.svix_update_ingest_endpoint_headers '{}' --json kosmo integrations:svix svix_update_ingest_endpoint_headers '{}' --json svix.svix_update_integration
Update an integration. Official Svix API endpoint: PUT https://api.svix.com/api/v1/app/{app_id}/integration/{integ_id} (operationId: v1.integration.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_integration '{}' --json kosmo integrations:svix svix_update_integration '{}' --json svix.svix_update_operational_webhook_endpoint
Update an operational webhook endpoint. Official Svix API endpoint: PUT https://api.svix.com/api/v1/operational-webhook/endpoint/{endpoint_id} (operationId: v1.operational-webhook.endpoint.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_operational_webhook_endpoint '{}' --json kosmo integrations:svix svix_update_operational_webhook_endpoint '{}' --json svix.svix_update_operational_webhook_endpoint_headers
Set the additional headers to be sent with the operational webhook. Official Svix API endpoint: PUT https://api.svix.com/api/v1/operational-webhook/endpoint/{endpoint_id}/headers (operationId: v1.operational-webhook.endpoint.update-headers).
write - Parameters
- none
kosmo integrations:call svix.svix_update_operational_webhook_endpoint_headers '{}' --json kosmo integrations:svix svix_update_operational_webhook_endpoint_headers '{}' --json svix.svix_update_sink
Update a sink. Official Svix API endpoint: PUT https://api.svix.com/api/v1/stream/{stream_id}/sink/{sink_id} (operationId: v1.streaming.sink.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_sink '{}' --json kosmo integrations:svix svix_update_sink '{}' --json svix.svix_update_source
Update an Ingest Source. Official Svix API endpoint: PUT https://api.svix.com/ingest/api/v1/source/{source_id} (operationId: v1.ingest.source.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_source '{}' --json kosmo integrations:svix svix_update_source '{}' --json svix.svix_update_stream
Update a stream. Official Svix API endpoint: PUT https://api.svix.com/api/v1/stream/{stream_id} (operationId: v1.streaming.stream.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_stream '{}' --json kosmo integrations:svix svix_update_stream '{}' --json svix.svix_update_stream_event_type
Update or create a event type for Streams. Official Svix API endpoint: PUT https://api.svix.com/api/v1/stream/event-type/{name} (operationId: v1.streaming.event-type.update).
write - Parameters
- none
kosmo integrations:call svix.svix_update_stream_event_type '{}' --json kosmo integrations:svix svix_update_stream_event_type '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
svix.svix_aggregate_app_stats 0 parameters
kosmo integrations:schema svix.svix_aggregate_app_stats --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_aggregate_event_types 0 parameters
kosmo integrations:schema svix.svix_aggregate_event_types --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_bulk_replay_messages 0 parameters
kosmo integrations:schema svix.svix_bulk_replay_messages --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_application 0 parameters
kosmo integrations:schema svix.svix_create_application --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_connector 0 parameters
kosmo integrations:schema svix.svix_create_connector --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_endpoint 0 parameters
kosmo integrations:schema svix.svix_create_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_event_type 0 parameters
kosmo integrations:schema svix.svix_create_event_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_events 0 parameters
kosmo integrations:schema svix.svix_create_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_ingest_endpoint 0 parameters
kosmo integrations:schema svix.svix_create_ingest_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_ingest_source 0 parameters
kosmo integrations:schema svix.svix_create_ingest_source --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_integration 0 parameters
kosmo integrations:schema svix.svix_create_integration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_message 0 parameters
kosmo integrations:schema svix.svix_create_message --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_message_precheck 0 parameters
kosmo integrations:schema svix.svix_create_message_precheck --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_operational_webhook_endpoint 0 parameters
kosmo integrations:schema svix.svix_create_operational_webhook_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_sink 0 parameters
kosmo integrations:schema svix.svix_create_sink --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_stream 0 parameters
kosmo integrations:schema svix.svix_create_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_create_stream_event_type 0 parameters
kosmo integrations:schema svix.svix_create_stream_event_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_application 0 parameters
kosmo integrations:schema svix.svix_delete_application --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_attempt_response_body 0 parameters
kosmo integrations:schema svix.svix_delete_attempt_response_body --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_connector 0 parameters
kosmo integrations:schema svix.svix_delete_connector --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_endpoint 0 parameters
kosmo integrations:schema svix.svix_delete_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_event_type 0 parameters
kosmo integrations:schema svix.svix_delete_event_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_ingest_endpoint 0 parameters
kosmo integrations:schema svix.svix_delete_ingest_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_ingest_source 0 parameters
kosmo integrations:schema svix.svix_delete_ingest_source --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_integration 0 parameters
kosmo integrations:schema svix.svix_delete_integration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_message_payload 0 parameters
kosmo integrations:schema svix.svix_delete_message_payload --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_operational_webhook_endpoint 0 parameters
kosmo integrations:schema svix.svix_delete_operational_webhook_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_sink 0 parameters
kosmo integrations:schema svix.svix_delete_sink --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_stream 0 parameters
kosmo integrations:schema svix.svix_delete_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_delete_stream_event_type 0 parameters
kosmo integrations:schema svix.svix_delete_stream_event_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_endpoint_stats 0 parameters
kosmo integrations:schema svix.svix_endpoint_stats --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_event_type_import_from_openapi 0 parameters
kosmo integrations:schema svix.svix_event_type_import_from_openapi --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_expire_all 0 parameters
kosmo integrations:schema svix.svix_expire_all --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_export_environment_configuration 0 parameters
kosmo integrations:schema svix.svix_export_environment_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_expunge_all_message_contents 0 parameters
kosmo integrations:schema svix.svix_expunge_all_message_contents --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_application 0 parameters
kosmo integrations:schema svix.svix_get_application --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_attempt 0 parameters
kosmo integrations:schema svix.svix_get_attempt --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_background_task 0 parameters
kosmo integrations:schema svix.svix_get_background_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_connector 0 parameters
kosmo integrations:schema svix.svix_get_connector --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_consumer_app_portal_access 0 parameters
kosmo integrations:schema svix.svix_get_consumer_app_portal_access --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_endpoint 0 parameters
kosmo integrations:schema svix.svix_get_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_endpoint_headers 0 parameters
kosmo integrations:schema svix.svix_get_endpoint_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_endpoint_secret 0 parameters
kosmo integrations:schema svix.svix_get_endpoint_secret --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_endpoint_transformation 0 parameters
kosmo integrations:schema svix.svix_get_endpoint_transformation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_event_type 0 parameters
kosmo integrations:schema svix.svix_get_event_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_ingest_endpoint 0 parameters
kosmo integrations:schema svix.svix_get_ingest_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_ingest_endpoint_headers 0 parameters
kosmo integrations:schema svix.svix_get_ingest_endpoint_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_ingest_endpoint_secret 0 parameters
kosmo integrations:schema svix.svix_get_ingest_endpoint_secret --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_ingest_endpoint_transformation 0 parameters
kosmo integrations:schema svix.svix_get_ingest_endpoint_transformation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_ingest_source 0 parameters
kosmo integrations:schema svix.svix_get_ingest_source --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_integration 0 parameters
kosmo integrations:schema svix.svix_get_integration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_integration_key 0 parameters
kosmo integrations:schema svix.svix_get_integration_key --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_message 0 parameters
kosmo integrations:schema svix.svix_get_message --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_operational_webhook_endpoint 0 parameters
kosmo integrations:schema svix.svix_get_operational_webhook_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_operational_webhook_endpoint_headers 0 parameters
kosmo integrations:schema svix.svix_get_operational_webhook_endpoint_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_operational_webhook_endpoint_secret 0 parameters
kosmo integrations:schema svix.svix_get_operational_webhook_endpoint_secret --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_poller_token 0 parameters
kosmo integrations:schema svix.svix_get_poller_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_sink 0 parameters
kosmo integrations:schema svix.svix_get_sink --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_sink_headers 0 parameters
kosmo integrations:schema svix.svix_get_sink_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_sink_secret 0 parameters
kosmo integrations:schema svix.svix_get_sink_secret --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_sink_transformation 0 parameters
kosmo integrations:schema svix.svix_get_sink_transformation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_stream 0 parameters
kosmo integrations:schema svix.svix_get_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_stream_event_type 0 parameters
kosmo integrations:schema svix.svix_get_stream_event_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_get_stream_portal_access 0 parameters
kosmo integrations:schema svix.svix_get_stream_portal_access --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_health 0 parameters
kosmo integrations:schema svix.svix_health --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_import_environment_configuration 0 parameters
kosmo integrations:schema svix.svix_import_environment_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_ingest_source_consumer_portal 0 parameters
kosmo integrations:schema svix.svix_ingest_source_consumer_portal --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_applications 0 parameters
kosmo integrations:schema svix.svix_list_applications --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_attempted_destinations 0 parameters
kosmo integrations:schema svix.svix_list_attempted_destinations --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_attempted_messages 0 parameters
kosmo integrations:schema svix.svix_list_attempted_messages --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_attempts_by_endpoint 0 parameters
kosmo integrations:schema svix.svix_list_attempts_by_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_attempts_by_msg 0 parameters
kosmo integrations:schema svix.svix_list_attempts_by_msg --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_background_tasks 0 parameters
kosmo integrations:schema svix.svix_list_background_tasks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_connectors 0 parameters
kosmo integrations:schema svix.svix_list_connectors --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_endpoints 0 parameters
kosmo integrations:schema svix.svix_list_endpoints --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_event_types 0 parameters
kosmo integrations:schema svix.svix_list_event_types --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_ingest_endpoints 0 parameters
kosmo integrations:schema svix.svix_list_ingest_endpoints --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_ingest_sources 0 parameters
kosmo integrations:schema svix.svix_list_ingest_sources --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_integrations 0 parameters
kosmo integrations:schema svix.svix_list_integrations --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_messages 0 parameters
kosmo integrations:schema svix.svix_list_messages --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_operational_webhook_endpoints 0 parameters
kosmo integrations:schema svix.svix_list_operational_webhook_endpoints --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_sinks 0 parameters
kosmo integrations:schema svix.svix_list_sinks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_stream_event_types 0 parameters
kosmo integrations:schema svix.svix_list_stream_event_types --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_list_streams 0 parameters
kosmo integrations:schema svix.svix_list_streams --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_logout 0 parameters
kosmo integrations:schema svix.svix_logout --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_application 0 parameters
kosmo integrations:schema svix.svix_patch_application --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_connector 0 parameters
kosmo integrations:schema svix.svix_patch_connector --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_endpoint 0 parameters
kosmo integrations:schema svix.svix_patch_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_endpoint_headers 0 parameters
kosmo integrations:schema svix.svix_patch_endpoint_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_endpoint_transformation 0 parameters
kosmo integrations:schema svix.svix_patch_endpoint_transformation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_event_type 0 parameters
kosmo integrations:schema svix.svix_patch_event_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_ingest_endpoint_transformation 0 parameters
kosmo integrations:schema svix.svix_patch_ingest_endpoint_transformation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_sink 0 parameters
kosmo integrations:schema svix.svix_patch_sink --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_sink_headers 0 parameters
kosmo integrations:schema svix.svix_patch_sink_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_stream 0 parameters
kosmo integrations:schema svix.svix_patch_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_patch_stream_event_type 0 parameters
kosmo integrations:schema svix.svix_patch_stream_event_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_poller_consumer_poll 0 parameters
kosmo integrations:schema svix.svix_poller_consumer_poll --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_poller_consumer_seek 0 parameters
kosmo integrations:schema svix.svix_poller_consumer_seek --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_poller_poll 0 parameters
kosmo integrations:schema svix.svix_poller_poll --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_poller_sink_stream_events 0 parameters
kosmo integrations:schema svix.svix_poller_sink_stream_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_recover_failed_webhooks 0 parameters
kosmo integrations:schema svix.svix_recover_failed_webhooks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_replay_missing_webhooks 0 parameters
kosmo integrations:schema svix.svix_replay_missing_webhooks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_resend_webhook 0 parameters
kosmo integrations:schema svix.svix_resend_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_rotate_endpoint_secret 0 parameters
kosmo integrations:schema svix.svix_rotate_endpoint_secret --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_rotate_ingest_endpoint_secret 0 parameters
kosmo integrations:schema svix.svix_rotate_ingest_endpoint_secret --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_rotate_ingest_token 0 parameters
kosmo integrations:schema svix.svix_rotate_ingest_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_rotate_integration_key 0 parameters
kosmo integrations:schema svix.svix_rotate_integration_key --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_rotate_operational_webhook_endpoint_secret 0 parameters
kosmo integrations:schema svix.svix_rotate_operational_webhook_endpoint_secret --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_rotate_poller_token 0 parameters
kosmo integrations:schema svix.svix_rotate_poller_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_rotate_sink_secret 0 parameters
kosmo integrations:schema svix.svix_rotate_sink_secret --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_send_event_type_example_message 0 parameters
kosmo integrations:schema svix.svix_send_event_type_example_message --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_set_sink_transformation 0 parameters
kosmo integrations:schema svix.svix_set_sink_transformation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_stream_expire_all 0 parameters
kosmo integrations:schema svix.svix_stream_expire_all --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_stream_logout 0 parameters
kosmo integrations:schema svix.svix_stream_logout --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_application 0 parameters
kosmo integrations:schema svix.svix_update_application --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_connector 0 parameters
kosmo integrations:schema svix.svix_update_connector --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_endpoint 0 parameters
kosmo integrations:schema svix.svix_update_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_endpoint_headers 0 parameters
kosmo integrations:schema svix.svix_update_endpoint_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_event_type 0 parameters
kosmo integrations:schema svix.svix_update_event_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_ingest_endpoint 0 parameters
kosmo integrations:schema svix.svix_update_ingest_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_ingest_endpoint_headers 0 parameters
kosmo integrations:schema svix.svix_update_ingest_endpoint_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_integration 0 parameters
kosmo integrations:schema svix.svix_update_integration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_operational_webhook_endpoint 0 parameters
kosmo integrations:schema svix.svix_update_operational_webhook_endpoint --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_operational_webhook_endpoint_headers 0 parameters
kosmo integrations:schema svix.svix_update_operational_webhook_endpoint_headers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_sink 0 parameters
kosmo integrations:schema svix.svix_update_sink --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_source 0 parameters
kosmo integrations:schema svix.svix_update_source --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_stream 0 parameters
kosmo integrations:schema svix.svix_update_stream --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
svix.svix_update_stream_event_type 0 parameters
kosmo integrations:schema svix.svix_update_stream_event_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.