Svix · Arazzo Workflow

Svix Provision Application and Open App Portal

Version 1.0.0

Create an application and mint a magic-link URL into its embedded App Portal.

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

create-app-portal-access
Create an application and return a magic link into its App Portal.
Creates a new application for a customer and requests App Portal access, returning the embeddable portal URL and access token.
2 steps inputs: applicationName, applicationUid outputs: applicationId, portalToken, portalUrl
1
createApplication
Create the application representing the customer. Returns 201 with the application object.
2
appPortalAccess
Mint an App Portal access token and magic-link URL for the application so the customer can manage their own webhooks. Returns 200 with url and token.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Svix Provision Application and Open App Portal
  summary: Create an application and mint a magic-link URL into its embedded App Portal.
  description: >-
    The Svix App Portal is the embeddable consumer UI where your customers
    manage their own endpoints. This workflow creates an application to
    represent a customer, then mints a short-lived App Portal access token and
    magic-link URL so the customer can be dropped straight into their portal.
    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
sourceDescriptions:
- name: applicationApi
  url: ../openapi/svix-application-api-openapi.yml
  type: openapi
- name: authenticationApi
  url: ../openapi/svix-authentication-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-app-portal-access
  summary: Create an application and return a magic link into its App Portal.
  description: >-
    Creates a new application for a customer and requests App Portal access,
    returning the embeddable portal URL and access token.
  inputs:
    type: object
    required:
    - applicationName
    properties:
      applicationName:
        type: string
        description: Human readable name for the customer's application.
      applicationUid:
        type: string
        description: Optional unique identifier for the application.
  steps:
  - stepId: createApplication
    description: >-
      Create the application representing the customer. Returns 201 with the
      application object.
    operationId: v1.application.create
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.applicationName
        uid: $inputs.applicationUid
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      applicationId: $response.body#/id
  - stepId: appPortalAccess
    description: >-
      Mint an App Portal access token and magic-link URL for the application so
      the customer can manage their own webhooks. Returns 200 with url and token.
    operationId: v1.authentication.app-portal-access
    parameters:
    - name: app_id
      in: path
      value: $steps.createApplication.outputs.applicationId
    requestBody:
      contentType: application/json
      payload: {}
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      portalUrl: $response.body#/url
      portalToken: $response.body#/token
  outputs:
    applicationId: $steps.createApplication.outputs.applicationId
    portalUrl: $steps.appPortalAccess.outputs.portalUrl
    portalToken: $steps.appPortalAccess.outputs.portalToken

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-create-app-portal-access-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.