Wufoo · Arazzo Workflow

Wufoo Add a Form Webhook

Version 1.0.0

Confirm a form exists, then subscribe a URL to its submission webhook.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub FormsForm BuilderSurveysData CollectionWebhookPaymentsSurveyMonkeyArazzoWorkflows

Provider

wufoo

Workflows

add-form-webhook
Subscribe an endpoint to a Wufoo form's submission webhook.
Gets the target form to confirm it exists, then creates a webhook subscription pointing at the supplied URL and returns the new webhook hash.
2 steps inputs: apiKey, formIdentifier, handshakeKey, metadata, url outputs: formHash, webhookHash
1
getForm
Fetch the target form to confirm it exists and capture its hash.
2
addWebhook
Subscribe the supplied URL to the form's submission webhook.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Wufoo Add a Form Webhook
  summary: Confirm a form exists, then subscribe a URL to its submission webhook.
  description: >-
    Wires a Wufoo form up to an external endpoint. The workflow fetches the
    single target form to confirm it exists and to capture its hash, then adds
    a webhook subscription so the supplied URL receives a POST on every new
    submission, optionally echoing a handshake key and including form and field
    structure metadata. 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/wufoo-forms-api-openapi.yml
  type: openapi
- name: webhooksApi
  url: ../openapi/wufoo-webhooks-api-openapi.yml
  type: openapi
workflows:
- workflowId: add-form-webhook
  summary: Subscribe an endpoint to a Wufoo form's submission webhook.
  description: >-
    Gets the target form to confirm it exists, then creates a webhook
    subscription pointing at the supplied URL and returns the new webhook hash.
  inputs:
    type: object
    required:
    - apiKey
    - formIdentifier
    - url
    properties:
      apiKey:
        type: string
        description: Wufoo account API key, used as the HTTP Basic Auth username.
      formIdentifier:
        type: string
        description: Form hash (preferred) or title to attach the webhook to.
      url:
        type: string
        description: Subscriber endpoint that Wufoo will POST submissions to.
      handshakeKey:
        type: string
        description: Shared secret echoed back as HandshakeKey in payloads.
      metadata:
        type: boolean
        description: When true, include FormStructure and FieldStructure in the payload.
        default: false
  steps:
  - stepId: getForm
    description: Fetch the target form to confirm it exists and capture its hash.
    operationId: getForm
    parameters:
    - name: identifier
      in: path
      value: $inputs.formIdentifier
    - name: format
      in: path
      value: json
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      hash: $response.body#/Forms/0/Hash
      name: $response.body#/Forms/0/Name
  - stepId: addWebhook
    description: Subscribe the supplied URL to the form's submission webhook.
    operationId: putFormWebhook
    parameters:
    - name: identifier
      in: path
      value: $inputs.formIdentifier
    - name: format
      in: path
      value: json
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        url: $inputs.url
        handshakeKey: $inputs.handshakeKey
        metadata: $inputs.metadata
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      webhookHash: $response.body#/WebHookPutResult/Hash
  outputs:
    formHash: $steps.getForm.outputs.hash
    webhookHash: $steps.addWebhook.outputs.webhookHash

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/wufoo-add-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.