Webflow · Arazzo Workflow

Webflow Register a Form-Submission Webhook

Version 1.0.0

Resolve a site, confirm it has at least one form, then register a form_submission webhook.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub CMSE-CommerceNo-CodeWeb DevelopmentArazzoWorkflows

Provider

webflow

Workflows

register-form-webhook
Register a form_submission webhook on a site that has forms.
Lists sites, lists the forms on the chosen site, confirms at least one form exists, and registers a form_submission webhook pointing at the callback URL.
3 steps inputs: callbackUrl, siteId outputs: siteId, webhookId
1
listSites
List accessible sites to resolve a target site id.
2
listForms
List the forms on the resolved site and branch on whether any forms exist before registering a webhook.
3
registerWebhook
Register a webhook that fires on every form submission for the site, delivering the payload to the supplied callback URL.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Webflow Register a Form-Submission Webhook
  summary: Resolve a site, confirm it has at least one form, then register a form_submission webhook.
  description: >-
    A webhook bootstrapping flow for form integrations. It resolves the target
    site, lists the site's forms, branches on whether any forms exist, and then
    registers a webhook that fires on every form submission to a supplied
    callback URL. 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: formsApi
  url: ../openapi/webflow-forms-api-openapi.yml
  type: openapi
- name: sitesApi
  url: ../openapi/webflow-sites-api-openapi.yml
  type: openapi
- name: webhooksApi
  url: ../openapi/webflow-webhooks-api-openapi.yml
  type: openapi
workflows:
- workflowId: register-form-webhook
  summary: Register a form_submission webhook on a site that has forms.
  description: >-
    Lists sites, lists the forms on the chosen site, confirms at least one form
    exists, and registers a form_submission webhook pointing at the callback
    URL.
  inputs:
    type: object
    required:
    - callbackUrl
    properties:
      siteId:
        type: string
        description: Optional site id; when omitted the first accessible site is used.
      callbackUrl:
        type: string
        description: The HTTPS URL Webflow should POST form submissions to.
  steps:
  - stepId: listSites
    description: List accessible sites to resolve a target site id.
    operationId: list-sites
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstSiteId: $response.body#/sites/0/id
  - stepId: listForms
    description: >-
      List the forms on the resolved site and branch on whether any forms exist
      before registering a webhook.
    operationId: list-forms
    parameters:
    - name: site_id
      in: path
      value: $steps.listSites.outputs.firstSiteId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstFormId: $response.body#/forms/0/id
    onSuccess:
    - name: hasForms
      type: goto
      stepId: registerWebhook
      criteria:
      - context: $response.body
        condition: $.forms.length > 0
        type: jsonpath
    - name: noForms
      type: end
      criteria:
      - context: $response.body
        condition: $.forms.length == 0
        type: jsonpath
  - stepId: registerWebhook
    description: >-
      Register a webhook that fires on every form submission for the site,
      delivering the payload to the supplied callback URL.
    operationId: create-webhook
    parameters:
    - name: site_id
      in: path
      value: $steps.listSites.outputs.firstSiteId
    requestBody:
      contentType: application/json
      payload:
        triggerType: form_submission
        url: $inputs.callbackUrl
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      webhookId: $response.body#/id
      triggerType: $response.body#/triggerType
  outputs:
    siteId: $steps.listSites.outputs.firstSiteId
    webhookId: $steps.registerWebhook.outputs.webhookId

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/webflow-register-form-webhook-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.