Wufoo · Arazzo Workflow

Wufoo Report Entry Stats

Version 1.0.0

List reports, count a report's entries, then fetch them when non-empty.

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

Provider

wufoo

Workflows

report-entry-stats
Count a Wufoo report's entries and fetch them only when the report is non-empty.
Lists reports, counts the target report's entries, and branches to fetch the entries when the count is non-zero or end when the report is empty.
3 steps inputs: apiKey, reportIdentifier outputs: entries, entryCount
1
listReports
List all reports to confirm the target report is accessible to the API key.
2
countReportEntries
Count the report's entries to decide whether there are any to retrieve.
3
listReportEntries
Retrieve the report's entries now that the count confirms there are some.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Wufoo Report Entry Stats
  summary: List reports, count a report's entries, then fetch them when non-empty.
  description: >-
    Summarizes activity behind a Wufoo report before pulling data. The workflow
    lists all reports to confirm the target, counts the report's entries, and
    branches: when the report has entries it retrieves them, and when it is
    empty it ends without a wasted fetch. 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: entriesApi
  url: ../openapi/wufoo-entries-api-openapi.yml
  type: openapi
- name: reportsApi
  url: ../openapi/wufoo-reports-api-openapi.yml
  type: openapi
workflows:
- workflowId: report-entry-stats
  summary: Count a Wufoo report's entries and fetch them only when the report is non-empty.
  description: >-
    Lists reports, counts the target report's entries, and branches to fetch
    the entries when the count is non-zero or end when the report is empty.
  inputs:
    type: object
    required:
    - apiKey
    - reportIdentifier
    properties:
      apiKey:
        type: string
        description: Wufoo account API key, used as the HTTP Basic Auth username.
      reportIdentifier:
        type: string
        description: Report hash (preferred) or title to count and read entries from.
  steps:
  - stepId: listReports
    description: List all reports to confirm the target report is accessible to the API key.
    operationId: listReports
    parameters:
    - name: format
      in: path
      value: json
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      reports: $response.body#/Reports
  - stepId: countReportEntries
    description: Count the report's entries to decide whether there are any to retrieve.
    operationId: countReportEntries
    parameters:
    - name: identifier
      in: path
      value: $inputs.reportIdentifier
    - name: format
      in: path
      value: json
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      entryCount: $response.body#/EntryCount
    onSuccess:
    - name: hasEntries
      type: goto
      stepId: listReportEntries
      criteria:
      - context: $response.body
        condition: $.EntryCount != '0'
        type: jsonpath
    - name: noEntries
      type: end
      criteria:
      - context: $response.body
        condition: $.EntryCount == '0'
        type: jsonpath
  - stepId: listReportEntries
    description: Retrieve the report's entries now that the count confirms there are some.
    operationId: listReportEntries
    parameters:
    - name: identifier
      in: path
      value: $inputs.reportIdentifier
    - name: format
      in: path
      value: json
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      entries: $response.body#/Entries
  outputs:
    entryCount: $steps.countReportEntries.outputs.entryCount
    entries: $steps.listReportEntries.outputs.entries

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-report-entry-stats-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.