Wufoo · Arazzo Workflow

Wufoo Provision Builder User Forms

Version 1.0.0

Exchange a user's credentials for their API key, then list that user's forms.

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

Provider

wufoo

Workflows

provision-builder-user-forms
Exchange a Wufoo user's login for an API key and list their forms.
Exchanges a user's credentials and the builder integration key for the user's API key and subdomain, then lists the forms accessible with that newly issued key.
2 steps inputs: email, integrationKey, password, subdomain outputs: apiKey, forms, subdomain
1
exchangeCredentials
Exchange the user's credentials and integration key for their API key and subdomain.
2
listUserForms
List the forms accessible with the user's newly issued API key.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Wufoo Provision Builder User Forms
  summary: Exchange a user's credentials for their API key, then list that user's forms.
  description: >-
    The builder onboarding pattern. Integrators embedding Wufoo for third-party
    customers exchange a user's email and password (plus the builder's
    integration key) for that user's own API key, then immediately use the
    returned key and subdomain to list the forms that user can access. The first
    step authenticates with no credential, while the second uses the freshly
    issued API key. 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: loginApi
  url: ../openapi/wufoo-login-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-builder-user-forms
  summary: Exchange a Wufoo user's login for an API key and list their forms.
  description: >-
    Exchanges a user's credentials and the builder integration key for the
    user's API key and subdomain, then lists the forms accessible with that
    newly issued key.
  inputs:
    type: object
    required:
    - email
    - password
    - integrationKey
    properties:
      email:
        type: string
        description: The end user's Wufoo account email address.
      password:
        type: string
        description: The end user's Wufoo account password.
      integrationKey:
        type: string
        description: The builder's Wufoo integration key.
      subdomain:
        type: string
        description: Optional account subdomain to scope the login to.
  steps:
  - stepId: exchangeCredentials
    description: Exchange the user's credentials and integration key for their API key and subdomain.
    operationId: login
    parameters:
    - name: format
      in: path
      value: json
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        email: $inputs.email
        password: $inputs.password
        integrationKey: $inputs.integrationKey
        subdomain: $inputs.subdomain
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      apiKey: $response.body#/ApiKey
      subdomain: $response.body#/Subdomain
  - stepId: listUserForms
    description: List the forms accessible with the user's newly issued API key.
    operationId: listForms
    parameters:
    - name: format
      in: path
      value: json
    - name: limit
      in: query
      value: 1000
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      forms: $response.body#/Forms
  outputs:
    apiKey: $steps.exchangeCredentials.outputs.apiKey
    subdomain: $steps.exchangeCredentials.outputs.subdomain
    forms: $steps.listUserForms.outputs.forms

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-provision-builder-user-forms-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.