X

Overview

Events

Actions

Jump to a Section

Overview

wufoosubdomain

To authenticate Wufoo, you’ll need your subdomain and your API key.

To find the subdomain, you will need to first log into Wufoo. Once logged in, you can simply copy the subdomain from the your URL bar. Your URL will have the form “https://your-subdomain.wufoo.com".

Alternatively, you can click on Account at the top right-hand side of the menu and then “My Account” and you’ll see:

wufooauthentication

To find your API key, form’s hash, or field API IDs, just open the API information for your form:

  1. Log in and go to Forms.
  2. To the right of the form, hover over More and click API Information.
  3. Copy your API Key, or look at the table to find your form’s hash or field API IDs.

wufooapikey

Wufoo’s documentation on finding your API Key is here.

    Events

    • New Entry

      Runs the Flow whenever there is a new entry for a form. This event uses a webhook so there is no need to set how often to check Wufoo – the Flow should run as soon as the new entry is added.

      Every time a Flow is activated using this card Wufoo will be checked for a corresponding Webhook. If a Webhook doesn’t exist, then this card will create a new Webhook. Different Wufoo plans have different limits on the amount of Webhooks they can use. If the card isn’t able to create a Webhook, then it will fail to activate. To fix this error Webhooks in Wufoo need to be deleted.

      Options

      • Your Forms:  Choose from the dropdown the Wufoo form you want to monitor.

      Output Fields

      • EntryID (text):  The ID that Wufoo uses to refer to the new entry. To get the values that were entered into the form, you’ll need to add a Read Entry card to your Flow and then pass this ID into the ID input on the Read Entry card.

      • Execution ID (text):  This output field appears on every event card and is the unique ID to identify the execution instance (primarily used for advanced debugging purposes).

    Actions

    • Read Entry

      Read Entry

      Given an Entry ID, gets the values that were entered into a form.

      Options

      • Your Forms:  Choose from the dropdown the Wufoo form you want to read values from.

      Input Fields

      • EntryID (text):  The ID that Wufoo uses to refer to the new entry.

      Output Fields

      • Metadata: This section of outputs is the same for every form entry.

        • Created Date (text):  The date and time that this entry was submitted, in the timezone of the user who submitted the entry.
        • Created By (text):  The person who created the entry, or “public” if the entry was created through a public web form.
        • Updated Date (text):  The date and time that this entry was edited through Wufoo’s Entry Manager. If the submission has never been updated, this value is blank.
        • Updated By (text):  The person who updated the entry in Wufoo’s Entry Manager; otherwise, blank.
      • Answer:  This section of outputs contains the list of fields that are in the form.

        • NOTE: These fields are not on by default – you have to use Choose Fields to select the values you want to use in your Flow. Choose Fields pops up automatically when you first insert the card or you can get back to it anytime by clicking the cog at the bottom right of the card.
    • Submit Entry

      Submit Entry

      Creates a new entry for a Wufoo form.

      Options

      • Your Forms:  Choose from the dropdown the Wufoo form you want to create an entry for.

      Input Fields

      • Entry:  The inputs are dynamically generated to match the inputs for the selected form.

      Output Fields

      • Entry ID: The unique ID that Wufoo assigns to the newly created entry if the submit succeeds. If the submit fails, the value for Entry ID is blank. (The submit could fail if an input doesn’t meet the input field requirements, e.g. a number is outside a required range.)