Svix is an enterprise-ready webhooks service that enables developers to send webhooks reliably and securely.
Svix is an enterprise-ready webhooks service that enables developers to send webhooks reliably and securely. On Nagent, Svix is exposed as a fully-configurable developer tools integration that any agent can call — 37 actions, and API key authentication. No code is required to wire Svix into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use Svix to automate the kinds of tasks developer tools teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire Svix into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Every operation an agent can call against Svix, with input parameters and output schema. Drop these into any step of an agent built in Helix.
SVIX_APP_CREATETool to create a new Svix application. Use when you need to register an application with specific settings.
Input parameters
Optional unique identifier for the application.
The name of the application to create.
Optional metadata key-value pairs (string values) for the application.
Optional rate limit (messages per second) for this application.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_APP_DELETEPermanently delete a Svix application by its ID or UID. Use this to remove an application and all its associated endpoints, messages, and webhooks. This action is destructive and cannot be undone.
Input parameters
The application's ID (e.g., 'app_123abc456def') or custom UID to delete. This permanently removes the application and all associated data.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_APP_GETTool to retrieve details of a specific Svix application by its ID. Use when you need application metadata after authenticating with Svix.
Input parameters
The application's ID (e.g., 'app_xxx') or its UID if one was set during creation.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_APP_LISTTool to list all applications. Use when you need to retrieve or paginate through your Svix applications.
Input parameters
Number of items to return. Must be between 1 and 250. Defaults to server default (50).
Sorting order for the applications list.
Cursor for pagination. Use the iterator from a previous response to fetch the next set of results.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_APP_UPDATETool to update an existing Svix application by ID. Use when you need to modify properties like name, rate limit, UID, or metadata. Call after confirming the correct app_id.
Input parameters
The new user-defined ID for the application.
The new name for the application.
The application's unique ID or UID.
Key-value metadata pairs (string values) to associate with the application.
The new rate limit for the application (messages per second). Must be at least 1 if set.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ATTEMPT_GETTool to retrieve details of a specific message attempt. Use after confirming app_id, msg_id, and attempt_id.
Input parameters
The Svix application ID (prefixed with 'app_') or custom UID.
The message ID (prefixed with 'msg_') to look up the attempt for.
The delivery attempt ID (prefixed with 'atmpt_') to retrieve.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ATTEMPT_LISTTool to list all delivery attempts for a specific message. Use after confirming message ID to debug attempts.
Input parameters
Only return attempts after this ISO 8601 datetime
Maximum number of attempts to return per page (1-250). Defaults to 50 if not specified.
The Svix application ID (e.g., app_xxxx) containing the message
Only return attempts before this ISO 8601 datetime
The message ID (e.g., msg_xxxx) to list delivery attempts for
Filter by attempt status: 0=pending, 1=success, 2=fail, 3=sending, 4=exhausted
Pagination cursor from a previous response's 'iterator' field to fetch the next page
Filter attempts to only those for a specific endpoint ID
Filter by event type names of the original message
Filter by HTTP status code class: 0 (none), 100 (1xx), 200 (2xx), 300 (3xx), 400 (4xx), 500 (5xx)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_CREATETool to create a new Svix webhook endpoint. Use after obtaining the app ID to register your webhook receiver URL.
Input parameters
Optional unique identifier for the endpoint. Must be unique within the application.
The webhook endpoint URL that will receive POST requests with event payloads Must use HTTPS and be publicly accessible; localhost and private network URLs will fail delivery.
The application's ID or UID. Use SVIX_APP_CREATE to create an application first.
Signing secret for webhook signature verification. Auto-generated if omitted. Must start with 'whsec_' prefix if provided.
Endpoint version number. Defaults to 1 if not specified.
List of message channels to filter. Only messages sent to these channels will be delivered. Omit to receive messages from all channels.
Set to true to create the endpoint in a disabled state (won't receive webhooks)
Maximum number of webhook deliveries per second. Leave empty for no limit.
Human-readable description to identify the endpoint's purpose
List of event type names to filter. Only these event types will be sent to this endpoint. Omit to receive all event types. Event type names must exactly match; mismatches silently prevent delivery.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_DELETETool to delete an endpoint. Use when you need to remove a specific endpoint after confirming its application and endpoint IDs.
Input parameters
The unique identifier of the application.
The unique identifier of the endpoint to delete.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_GETTool to retrieve details of a specific endpoint. Use after confirming app_id and endpoint_id.
Input parameters
The unique identifier of the Svix application.
The unique identifier of the webhook endpoint.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_LISTTool to list all endpoints for a specific application. Use after obtaining the application ID to retrieve its endpoints.
Input parameters
Maximum number of endpoints to return. Must be between 1 and 100. Defaults to server default (50).
Sorting order for the endpoints list.
The unique identifier of the application.
Cursor for pagination. Use the iterator from a previous response to fetch the next set of results.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_PATCHTool to partially update an endpoint’s configuration. Use when you need to adjust endpoint settings without full replacement.
Input parameters
A custom unique identifier for the endpoint.
The URL to which the endpoint will send events.
The unique identifier of the Svix application.
Optional new signing secret; only include to rotate the secret.
List of delivery channels for this endpoint.
Whether the endpoint should be disabled.
Rate limit for the endpoint (deliveries per second). Must be non-negative.
A new description for the endpoint.
The unique identifier of the endpoint to patch.
List of event types to forward to this endpoint.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_PATCH_HEADERSTool to partially update headers for a specific endpoint. Use when you need to add, modify, or remove custom headers after endpoint creation.
Input parameters
The unique identifier of the application.
A mapping of header names to values. Use string value to set or modify a header, or null to remove a header.
The unique identifier of the endpoint to update headers for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_RECOVER_FAILED_WEBHOOKSTool to recover messages that failed to send to an endpoint. Use when you need to retry webhook delivery for failed events after identifying delivery failures.
Input parameters
Recover failed webhooks since this timestamp (ISO 8601). Must be within the last 14 days.
Recover failed webhooks up to this timestamp (ISO 8601). If not specified, recovers up to the current time.
The unique identifier of the Svix application.
The unique identifier of the Svix endpoint whose failed webhooks should be recovered.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_REPLAY_MISSINGTool to replay missing webhooks for a specific endpoint. Use when some webhooks failed or were lost and need to be resent.
Input parameters
Replay missing webhooks since this timestamp (ISO 8601). Must be within the last 14 days.
Replay missing webhooks up to this timestamp (ISO 8601). Defaults to now if not specified.
The unique identifier of the Svix application.
The unique identifier of the webhook endpoint.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_SECRET_GETTool to retrieve the secret for a specific endpoint. Use after confirming app_id and endpoint_id.
Input parameters
The unique identifier of the Svix application.
The unique identifier of the webhook endpoint.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_SECRET_ROTATETool to rotate the signing secret key for an endpoint. Use when you need to invalidate the current secret and generate or supply a new one. Call after confirming app_id and endpoint_id.
Input parameters
Optional new signing secret to use for rotation. Must be in the format 'whsec_' followed by a valid base64-encoded string (e.g., 'whsec_MfKQ9r8GKYqrTwjUPD8ILPZIo2LaLaSw'). If omitted, a secret will be auto-generated by the server.
The unique identifier of the Svix application.
The unique identifier of the webhook endpoint.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_SEND_EXAMPLE_MESSAGETool to send a test message for a specific event type to an endpoint. Use after setting up an endpoint to verify its configuration. Note: the endpoint's filter_types must include the event_type being tested; otherwise real events will not be delivered even if the example message sends successfully.
Input parameters
The unique identifier of the Svix application.
The event type to send as an example. The event type must have a schema with examples defined.
The unique identifier of the Svix webhook endpoint.
Optional overrides for the default example payload. Use this to customize the example message content.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_STATS_GETTool to retrieve basic statistics for a specific endpoint. Use after confirming app_id and endpoint_id.
Input parameters
The unique identifier of the Svix application.
The unique identifier of the webhook endpoint.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_TRANSFORMATION_GETTool to retrieve transformation settings for a specific endpoint. Use after confirming app_id and endpoint_id.
Input parameters
The unique identifier of the Svix application.
The unique identifier of the webhook endpoint.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_TRANSFORMATION_SETTool to set or update transformation settings for an endpoint. Use when you need to configure or toggle an endpoint's transformation code after creation.
Input parameters
JavaScript code defining how to transform the webhook's HTTP method, URL, or body payload.
The unique identifier of the Svix application.
Set to true to enable the transformation; false to disable it.
The unique identifier of the webhook endpoint.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_UPDATETool to update an existing endpoint or create it if it doesn't exist (upsert). Use when you need to modify endpoint settings like URL, rate limit, channels, or metadata. If the endpoint doesn't exist, a new one will be created with the specified endpoint_id as its uid.
Input parameters
Custom unique identifier for the endpoint. Must be unique within the application.
The webhook URL to which events will be sent via POST request.
The app's ID or UID. Use the application identifier where the endpoint belongs.
The endpoint version number. Defaults to 1 if not specified.
List of message channels this endpoint subscribes to.
Set to true to disable the endpoint, false to enable it.
Key-value metadata to store with the endpoint. Values must be strings.
Maximum messages per second to send to this endpoint. Use 0 or null for no limit.
Human-readable description for the endpoint.
The endpoint's ID or UID. Use the endpoint identifier to update.
List of event types to deliver to this endpoint. If empty/null, all events are delivered.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_ENDPOINT_UPDATE_HEADERSTool to completely replace headers for a specific endpoint. Use when you need to set a full new header mapping.
Input parameters
The unique identifier of the application.
Mapping of header names to their values. All existing headers will be replaced.
The unique identifier of the endpoint to update headers for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_EVENT_TYPE_CREATECreate a new event type in Svix or unarchive an existing one. Event types are identifiers (like 'order.created', 'user.signup') that categorize the webhooks your application sends. Use period-delimited naming to group related events. Both 'name' and 'description' are required. Returns HTTP 409 if the event type already exists.
Input parameters
Unique identifier for the event type. Use period-delimited naming like 'group.event' (e.g., 'order.created', 'user.signup', 'invoice.paid'). This helps group related events in the UI.
Optional JSON Schema definitions for validating event payloads. Must be a mapping where the key is '1' and the value is a JSONSchema (Draft 7) object. Example: {"1": {"type": "object", "properties": {...}}}. Note: Svix does not enforce schema validation when sending messages.
Set to false to unarchive a previously archived event type. Defaults to false for new event types.
Human-readable description explaining when this event type fires and what it represents.
Optional feature flag identifier to conditionally enable/disable this event type
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_EVENT_TYPE_DELETETool to delete an event type. Use when you need to archive or permanently expunge a specific event type after confirming its name.
Input parameters
If true, permanently delete the event type instead of archiving it.
The unique name (ID) of the event type to delete or archive.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_EVENT_TYPE_GETRetrieve details of a specific event type by its name. Use this to inspect an existing event type's configuration, schema, and status. Event types define the categories of events that can be sent through Svix webhooks.
Input parameters
The name of the event type to retrieve (e.g., 'user.created', 'order.completed'). Event type names typically use dot-notation to represent hierarchical categories.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_EVENT_TYPE_LISTTool to retrieve a list of all event types. Use when you need to inspect available event types, optionally including their JSON schemas. Use after authenticating the client.
Input parameters
Maximum number of event types to return (1-100). Defaults to server default.
Cursor for pagination; use the iterator from a previous response to fetch next results.
If true, include the JSON schema for each event type.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_EVENT_TYPE_UPDATEUpdate an existing event type's description, schema, feature flags, or archive status. Use this to modify event type configuration. The event type must already exist - use List Event Types or Get Event Type to find valid event type names.
Input parameters
Optional mapping of schema versions to JSON Schema definitions. Keys are version strings (e.g., '1'), values are JSON Schema objects.
Whether the event type should be marked as archived. Set to true to archive, false to unarchive.
Human-readable description of the event type. Required for update.
Optional single feature-flag key to associate with the event type.
The name of the event type to update (e.g., 'user.created', 'order.completed'). Event type names typically use dot-notation to represent hierarchical categories.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_INTEGRATION_CREATETool to create a new integration for a specific application. Use after confirming the application ID.
Input parameters
A descriptive name for the integration (e.g., 'Zapier Integration', 'Make.com Webhook').
The application's ID or UID. Use app_list to find existing application IDs.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_INTEGRATION_DELETEPermanently delete an integration from a Svix application. This is a destructive operation that cannot be undone. Use when removing webhook integrations that are no longer needed. Requires both the application ID and the integration ID. Use 'List Integrations' first if you need to find the integration_id.
Input parameters
The application ID or UID. Can be the Svix-assigned ID (e.g., 'app_1srOrx2ZWZBpBUvZwXKQmoEYga2') or a custom UID you assigned when creating the app.
The unique identifier of the integration to delete. Starts with 'integ_' prefix.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_INTEGRATION_GETTool to retrieve details of a specific integration. Use after confirming app_id and integration_id.
Input parameters
The application's ID or UID. Can be the internal app_id (e.g., 'app_12345') or the user-defined UID.
The unique identifier of the integration to retrieve (e.g., 'integ_12345').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_INTEGRATION_LISTTool to list all integrations for a specific application. Use after confirming the application ID, supporting pagination via limit and iterator. Use when you need to enumerate integrations.
Input parameters
Maximum number of integrations to return (1-100). Defaults to server default.
The application's ID or UID. Use an app_id (e.g., 'app_12345') or a custom UID if one was set.
Cursor for pagination; use the iterator from a previous response to fetch next results.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_INTEGRATION_UPDATETool to update an existing integration by ID. Use when you need to modify an integration's name or feature flags.
Input parameters
The new name for the integration.
The Application's ID or UID.
The Integration's ID (format: integ_XXXX...).
The set of feature flags the integration will have access to. Each flag must match pattern ^\[a-zA-Z0-9\\-_.\]+$.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_MESSAGE_CREATETool to create a new message for a specific application in Svix. Use after confirming app ID and event details.
Input parameters
The unique identifier of the Svix application.
The JSON payload to include in the message event.
List of channels to deliver this message to (default: \['*'\]).
The event type to dispatch (e.g., 'order.created').
Idempotency key for ensuring unique message creation.
Number of days to retain the payload (1-90 days). Defaults to 90 days if not specified.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_MESSAGE_GETTool to retrieve details of a specific message by its ID. Use when you need message metadata and status after dispatch.
Input parameters
The unique identifier of the Svix application (e.g., 'app_1srOrx2ZWZBpBUvZwXKQmoEYga2').
The unique identifier of the Svix message (e.g., 'msg_1srOrx2ZWZBpBUvZwXKQmoEYga2').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_MESSAGE_LISTTool to list all messages for a specific application. Use when you need to fetch or paginate messages after obtaining the application ID.
Input parameters
Filter messages by tag.
Fetch messages created after this timestamp (ISO 8601 format).
Maximum number of messages to return (1-100). Defaults to server default.
The application's unique ID
Fetch messages created before this timestamp (ISO 8601 format).
Filter messages by status code.
Filter messages by channel.
Cursor for pagination. Use the iterator from a previous response to fetch the next page.
Filter messages by one or more event types.
Include message payloads in the response.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SVIX_SOURCE_CREATECreates a new Svix Ingest source for receiving webhooks from external providers. A source generates an ingest URL that you can share with a webhook provider (e.g., GitHub, Stripe) as the destination for their webhooks. Svix will verify signatures based on the source type and forward the webhooks to your configured endpoints. Use 'genericWebhook' type to skip signature verification for providers not natively supported.
Input parameters
Optional unique identifier for the source. If not provided, one will be generated automatically.
The name of the source. Used to identify this source in the dashboard.
Provider-specific configuration. For most providers, this should contain a 'secret' key with the webhook signing secret. For 'genericWebhook', this can be empty or null.
The webhook provider type for signature verification. Use 'genericWebhook' to skip signature verification (useful for unsupported providers). Supported providers include: github, stripe, svix, shopify, slack, hubspot, clerk, zoom, docusign, beehiiv, brex, segment, resend, telnyx, airwallex, and many more.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 68 agents privately built on Nagent that already use Svix.
Build on Nagent
Connect Svix to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find Svix, and click "Connect Now." You'll authenticate with an API key — Nagent handles credential storage and refresh automatically. Once connected, Svix is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once Svix is connected, you configure its 37 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop Svix steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a Svix event fires, the agent kicks off automatically.
Every Svix action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While Svix ships with 37 pre-built developer tools actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching Svix together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build Svix-based workflows tailored to your business.