Hookdeck · Arazzo Workflow

Hookdeck Create an Inline Connection

Version 1.0.0

Create a connection along with its source and destination in a single call.

1 workflow 1 source API 1 provider
View Spec View on GitHub WebhookEvent GatewaysGatewaysEventEvent InfrastructureEvent-DrivenMessagingQueuesRetriesTransformationObservabilityArazzoWorkflows

Provider

hookdeck

Workflows

inline-connection
Provision a full source-to-destination pipeline with one connection call.
Creates a connection whose source and destination are declared inline, then confirms the created connection and surfaces the generated source and destination ids.
2 steps inputs: connectionName, destinationName, destinationUrl, sourceName outputs: connectionId, destinationId, sourceId
1
createConnection
Create a connection with an inline WEBHOOK source and an inline HTTP destination, provisioning all three resources at once.
2
confirmConnection
Read the connection back to confirm it was created and to capture the final source and destination ids.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Hookdeck Create an Inline Connection
  summary: Create a connection along with its source and destination in a single call.
  description: >-
    Hookdeck lets a connection declare its source and destination inline so the
    whole pipeline is provisioned with one request. This workflow creates a
    connection with embedded source and destination objects, then reads the
    connection back to capture the ids Hookdeck generated for each resource.
    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: hookdeck-connections-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: connectionsApi
  url: ../openapi/hookdeck-connections-api-openapi.yml
  type: openapi
workflows:
- workflowId: inline-connection
  summary: Provision a full source-to-destination pipeline with one connection call.
  description: >-
    Creates a connection whose source and destination are declared inline, then
    confirms the created connection and surfaces the generated source and
    destination ids.
  inputs:
    type: object
    required:
    - connectionName
    - sourceName
    - destinationName
    - destinationUrl
    properties:
      connectionName:
        type: string
        description: A unique name for the connection.
      sourceName:
        type: string
        description: A unique name for the inline source.
      destinationName:
        type: string
        description: A unique name for the inline destination.
      destinationUrl:
        type: string
        description: The HTTP URL the inline destination should deliver events to.
  steps:
  - stepId: createConnection
    description: >-
      Create a connection with an inline WEBHOOK source and an inline HTTP
      destination, provisioning all three resources at once.
    operationId: createConnection
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.connectionName
        source:
          name: $inputs.sourceName
          type: WEBHOOK
        destination:
          name: $inputs.destinationName
          type: HTTP
          config:
            url: $inputs.destinationUrl
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      connectionId: $response.body#/id
      sourceId: $response.body#/source_id
      destinationId: $response.body#/destination_id
  - stepId: confirmConnection
    description: >-
      Read the connection back to confirm it was created and to capture the
      final source and destination ids.
    operationId: getConnection
    parameters:
    - name: id
      in: path
      value: $steps.createConnection.outputs.connectionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      connectionId: $response.body#/id
      sourceId: $response.body#/source_id
      destinationId: $response.body#/destination_id
  outputs:
    connectionId: $steps.confirmConnection.outputs.connectionId
    sourceId: $steps.confirmConnection.outputs.sourceId
    destinationId: $steps.confirmConnection.outputs.destinationId

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/hookdeck-inline-connection-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.