Ironclad · Arazzo Workflow

Ironclad Update a Webhook Subscription

Version 1.0.0

Find an existing webhook by target URL, retrieve it, then update its events.

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

Provider

ironclad

Workflows

update-webhook-subscription
List webhooks, retrieve the first one, then update its events and status.
Lists webhooks to resolve a webhook id, retrieves that webhook, and updates its subscribed events and status.
3 steps inputs: authorization, events, status outputs: updatedEvents, updatedStatus, webhookId
1
listWebhooks
list-all-webhooks
List all webhooks to resolve the webhook to update.
2
retrieveWebhook
retrieve-a-webhook
Retrieve the resolved webhook to capture its current configuration.
3
updateWebhook
update-a-webhook
Update the webhook's subscribed events and status.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Ironclad Update a Webhook Subscription
  summary: Find an existing webhook by target URL, retrieve it, then update its events.
  description: >-
    Reconfigures an existing event subscription. The flow lists all webhooks to
    locate the subscription, retrieves the located webhook to capture its
    current configuration, and updates its event list and status. 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: ironcladPublicApi
  url: ../openapi/ironclad-public-api-openapi.yml
  type: openapi
workflows:
- workflowId: update-webhook-subscription
  summary: List webhooks, retrieve the first one, then update its events and status.
  description: >-
    Lists webhooks to resolve a webhook id, retrieves that webhook, and updates
    its subscribed events and status.
  inputs:
    type: object
    required:
    - authorization
    - events
    properties:
      authorization:
        type: string
        description: Bearer token for the Ironclad Authorization header.
      events:
        type: array
        description: The updated set of event types the webhook should subscribe to.
        items:
          type: string
      status:
        type: string
        description: Optional updated webhook status (enabled or disabled).
  steps:
  - stepId: listWebhooks
    description: >-
      List all webhooks to resolve the webhook to update.
    operationId: list-all-webhooks
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: pageSize
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      webhookId: $response.body#/list/0/id
  - stepId: retrieveWebhook
    description: >-
      Retrieve the resolved webhook to capture its current configuration.
    operationId: retrieve-a-webhook
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: id
      in: path
      value: $steps.listWebhooks.outputs.webhookId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentEvents: $response.body#/events
      targetURL: $response.body#/targetURL
  - stepId: updateWebhook
    description: >-
      Update the webhook's subscribed events and status.
    operationId: update-a-webhook
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: id
      in: path
      value: $steps.listWebhooks.outputs.webhookId
    requestBody:
      contentType: application/json
      payload:
        events: $inputs.events
        status: $inputs.status
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedEvents: $response.body#/events
      updatedStatus: $response.body#/status
  outputs:
    webhookId: $steps.listWebhooks.outputs.webhookId
    updatedEvents: $steps.updateWebhook.outputs.updatedEvents
    updatedStatus: $steps.updateWebhook.outputs.updatedStatus

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-update-webhook-subscription"
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 email required.

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