Wufoo · Capability

Wufoo REST API — Fields

Fields surface of the Wufoo REST API v3. 1 operation. Lead operation: List Form Fields. Self-contained Naftiko capability covering one Wufoo business surface.

Wufoo REST API — Fields is a Naftiko capability published by Wufoo, one of 8 capabilities the APIs.io network indexes for this provider. It bundles 1 operation across the GET method rooted at /v1/forms/{…}/fields.

The capability includes 1 read-only operation. Lead operation: List form fields. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Wufoo, Fields, and FormSchema.

Run with Naftiko WufooFieldsFormSchema

What You Can Do

GET
Listformfields — List form fields.
/v1/forms/{identifier}/fields

MCP Tools

list-form-fields

List form fields.

read-only idempotent

Capability Spec

rest-v3-fields.yaml Raw ↑
naftiko: "1.0.0-alpha2"

info:
  label: "Wufoo REST API — Fields"
  description: >-
    Fields surface of the Wufoo REST API v3. 1 operation. Lead operation: List
    Form Fields. Self-contained Naftiko capability covering one Wufoo business
    surface.
  tags:
    - Wufoo
    - Fields
    - FormSchema
  created: "2026-05-23"
  modified: "2026-05-23"

binds:
  - namespace: env
    keys:
      WUFOO_SUBDOMAIN: WUFOO_SUBDOMAIN
      WUFOO_API_KEY: WUFOO_API_KEY

capability:

  consumes:
    - type: http
      namespace: "rest-v3-fields"
      baseUri: "https://{{env.WUFOO_SUBDOMAIN}}.wufoo.com/api/v3"
      description: "Wufoo REST API — Fields business capability. Self-contained, no shared references."
      authentication:
        type: basic
        username: "{{env.WUFOO_API_KEY}}"
        password: "footastic"
      resources:
        - name: "form-fields"
          path: "/forms/{identifier}/fields.{format}"
          operations:
            - name: "listFormFields"
              method: GET
              description: "List field structure for the form."
              inputParameters:
                - { name: identifier, in: path, type: string, required: true, description: "Form hash or title." }
                - { name: format, in: path, type: string, required: true, description: "json or xml" }
                - { name: system, in: query, type: boolean, required: false, description: "Include system fields." }
                - { name: pretty, in: query, type: boolean, required: false, description: "Pretty-print response." }
              outputRawFormat: json
              outputParameters: [{ name: result, type: object, value: "$." }]

  exposes:
    - type: rest
      namespace: "rest-v3-fields-rest"
      port: 8080
      description: "REST adapter for Wufoo REST API — Fields."
      resources:
        - path: "/v1/forms/{identifier}/fields"
          name: "form-fields"
          description: "Form field structure."
          operations:
            - method: GET
              name: "listFormFields"
              description: "List form fields."
              call: "rest-v3-fields.listFormFields"
              with:
                identifier: "rest.identifier"
                format: "rest.format"
                system: "rest.system"
                pretty: "rest.pretty"
              outputParameters: [{ type: object, mapping: "$." }]

    - type: mcp
      namespace: "rest-v3-fields-mcp"
      port: 9090
      transport: http
      description: "MCP adapter for Wufoo REST API — Fields."
      tools:
        - name: "list-form-fields"
          description: "List form fields."
          hints: { readOnly: true, destructive: false, idempotent: true }
          call: "rest-v3-fields.listFormFields"
          with:
            identifier: "tools.identifier"
            format: "tools.format"
            system: "tools.system"
            pretty: "tools.pretty"
          outputParameters: [{ type: object, mapping: "$." }]