Ironclad · Arazzo Workflow

Ironclad Register and Verify a Webhook

Version 1.0.0

Create a webhook, retrieve it to confirm, then list all webhooks.

1 workflow 1 source API 1 provider
View Spec View on GitHub Contract Lifecycle ManagementCLMContractsLegal TechLegalOpsEnterpriseWorkflowsE-SignatureClickwrapArtificial IntelligenceAuthenticationSCIMWebhookArazzoWorkflows

Provider

ironclad

Workflows

register-and-verify-webhook
Create a webhook, retrieve it, then list all webhooks.
Creates a webhook for the supplied events and target URL, retrieves it by id, and lists all webhooks for confirmation.
3 steps inputs: authorization, events, targetURL outputs: status, webhookId, webhooks
1
createWebhook
Create a webhook subscribing to the supplied events for the target URL.
2
retrieveWebhook
Retrieve the created webhook to confirm its registration and status.
3
listWebhooks
List all webhooks to confirm the new subscription is present.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Ironclad Register and Verify a Webhook
  summary: Create a webhook, retrieve it to confirm, then list all webhooks.
  description: >-
    Stands up an event subscription for contract lifecycle events. The flow
    creates a webhook for a set of event types and a target URL, retrieves the
    created webhook to confirm its registration and status, and then lists all
    webhooks to confirm the new subscription is present. Each step inlines its
    request so the chain can be read and executed without opening the underlying
    OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: webhooksApi
  url: ../openapi/ironclad-webhooks-api-openapi.yml
  type: openapi
workflows:
- workflowId: register-and-verify-webhook
  summary: Create a webhook, retrieve it, then list all webhooks.
  description: >-
    Creates a webhook for the supplied events and target URL, retrieves it by
    id, and lists all webhooks for confirmation.
  inputs:
    type: object
    required:
    - authorization
    - events
    - targetURL
    properties:
      authorization:
        type: string
        description: Bearer token for the Ironclad Authorization header.
      events:
        type: array
        description: The event types to subscribe to (e.g. ["workflow_launched", "workflow_completed"]).
        items:
          type: string
      targetURL:
        type: string
        description: The HTTPS URL to receive webhook event payloads.
  steps:
  - stepId: createWebhook
    description: >-
      Create a webhook subscribing to the supplied events for the target URL.
    operationId: create-a-webhook
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: application/json
      payload:
        events: $inputs.events
        targetURL: $inputs.targetURL
        status: enabled
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      webhookId: $response.body#/id
  - stepId: retrieveWebhook
    description: >-
      Retrieve the created webhook to confirm its registration and status.
    operationId: retrieve-a-webhook
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: id
      in: path
      value: $steps.createWebhook.outputs.webhookId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      events: $response.body#/events
  - stepId: listWebhooks
    description: >-
      List all webhooks to confirm the new subscription is present.
    operationId: list-all-webhooks
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      webhooks: $response.body#/list
  outputs:
    webhookId: $steps.createWebhook.outputs.webhookId
    status: $steps.retrieveWebhook.outputs.status
    webhooks: $steps.listWebhooks.outputs.webhooks

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/ironclad-register-and-verify-webhook"
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.