What do you want to automate

with SMS Messages and Wufoo?

Prompt, edit and deploy AI agents that connect to SMS Messages, Wufoo and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
New Form Entry from the Wufoo API

Emit new event when a new form entry received.

 
Try it
Submit Form Entry with the Wufoo API

Submit a new entry to a specific form. See the documentation

 
Try it
Integrate the SMS Messages API with the Wufoo API
Setup the SMS Messages API trigger to run a workflow which integrates with the Wufoo API. Pipedream's integration platform allows you to integrate SMS Messages and Wufoo remarkably fast. Free for developers.

Connect SMS Messages

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sms_messages: {
      type: "app",
      app: "sms_messages",
    }
  },
  async run({steps, $}) {
    const data = {
      "sms": 
      {
        "user":`${this.sms_messages.$auth.username}`, 
        "dst":
        {
          "num":
          [
            "++3460000000"
          ]
        },
        "txt":"Hello world!"
      }
    }
    return await axios($, {
      method: "post",
      url: `https://api.lleida.net/sms/v2/`,
      headers: {
        "content-type": `application/json; charset=utf-8`,
        "accept": `application/json`,
        "authorization": `x-api-key ${this.sms_messages.$auth.api_key}`,
      },
      data,
    })
  },
})

Overview of Wufoo

The Wufoo API allows you to interact with the Wufoo platform, where you can create custom online forms for data collection and surveys. With this API on Pipedream, you can automate form submissions, retrieve form data, and integrate with other services to streamline workflows. Use cases include synchronizing form entries to a database, triggering email notifications upon form submission, and analyzing survey responses for insights.

Connect Wufoo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    wufoo: {
      type: "app",
      app: "wufoo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.wufoo.$auth.subdomain}.wufoo.com/api/v3/forms.json`,
      auth: {
        username: `${this.wufoo.$auth.api_key}`,
        password: `footastic`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo