Svix · Arazzo Workflow

Svix Register Event Type and Send Example

Version 1.0.0

Create an event type, subscribe an endpoint to it, and send the event type's example message.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub WebhookWebhooks As A ServiceWebhook DeliveryWebhook SendingEvent-DrivenEventingMessagingPub-SubStreamingIngestIntegrationReliabilityRetriesDeliverabilitySigningVerificationHMACStandard WebhooksMulti-TenantMulti-RegionEnterpriseSoftware-as-a-ServiceDeveloper PlatformRESTSOC 2HIPAAPCI DSSGDPROpen-SourceRustPolyglot SDKTerraformCLIArazzoWorkflows

Provider

svix

Workflows

register-event-type-and-send
Define an event type, subscribe an endpoint, and deliver its example message.
Creates an event type with a description, registers an endpoint on the given application filtered to that event type, and triggers an example message of the event type to confirm delivery.
3 steps inputs: appId, endpointUrl, eventTypeDescription, eventTypeName outputs: endpointId, eventTypeName, messageId
1
createEventType
Register the event type in the environment catalog. Svix returns 201 with the new event type object.
2
createEndpoint
Create an endpoint on the application that filters on the new event type. Returns 201 with the endpoint object.
3
sendExample
Ask Svix to deliver the event type's built-in example payload to the endpoint to verify the subscription. Returns 202 with the message object.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Svix Register Event Type and Send Example
  summary: Create an event type, subscribe an endpoint to it, and send the event type's example message.
  description: >-
    Event types are the schema-bearing catalog entries that drive Svix
    delivery. This workflow registers a new event type, creates an endpoint
    that filters on it for an existing application, and then asks Svix to send
    the event type's built-in example payload to that endpoint so the
    integration can be verified end to end. Every step spells out its request
    inline so the flow can be read and executed without opening the underlying
    OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-4270.80
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-4270.80
      capability_name: Webhook & Event Subscription Management
      spec: svix-event-type-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: endpointApi
  url: ../openapi/svix-endpoint-api-openapi.yml
  type: openapi
- name: eventTypeApi
  url: ../openapi/svix-event-type-api-openapi.yml
  type: openapi
workflows:
- workflowId: register-event-type-and-send
  summary: Define an event type, subscribe an endpoint, and deliver its example message.
  description: >-
    Creates an event type with a description, registers an endpoint on the
    given application filtered to that event type, and triggers an example
    message of the event type to confirm delivery.
  inputs:
    type: object
    required:
    - appId
    - eventTypeName
    - eventTypeDescription
    - endpointUrl
    properties:
      appId:
        type: string
        description: The id or uid of the application to attach the endpoint to.
      eventTypeName:
        type: string
        description: The unique event type name (e.g. "invoice.paid").
      eventTypeDescription:
        type: string
        description: Human readable description of the event type.
      endpointUrl:
        type: string
        description: The HTTPS URL the endpoint delivers events to.
  steps:
  - stepId: createEventType
    description: >-
      Register the event type in the environment catalog. Svix returns 201 with
      the new event type object.
    operationId: v1.event-type.create
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.eventTypeName
        description: $inputs.eventTypeDescription
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      eventTypeName: $response.body#/name
  - stepId: createEndpoint
    description: >-
      Create an endpoint on the application that filters on the new event type.
      Returns 201 with the endpoint object.
    operationId: v1.endpoint.create
    parameters:
    - name: app_id
      in: path
      value: $inputs.appId
    requestBody:
      contentType: application/json
      payload:
        url: $inputs.endpointUrl
        filterTypes:
        - $steps.createEventType.outputs.eventTypeName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      endpointId: $response.body#/id
  - stepId: sendExample
    description: >-
      Ask Svix to deliver the event type's built-in example payload to the
      endpoint to verify the subscription. Returns 202 with the message object.
    operationId: v1.endpoint.send-example
    parameters:
    - name: app_id
      in: path
      value: $inputs.appId
    - name: endpoint_id
      in: path
      value: $steps.createEndpoint.outputs.endpointId
    requestBody:
      contentType: application/json
      payload:
        eventType: $steps.createEventType.outputs.eventTypeName
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      messageId: $response.body#/id
  outputs:
    eventTypeName: $steps.createEventType.outputs.eventTypeName
    endpointId: $steps.createEndpoint.outputs.endpointId
    messageId: $steps.sendExample.outputs.messageId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/svix-register-event-type-and-send-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.