Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Add a new contact into a specified group in SendSMS. See the documentation
Checks if a specific phone number is in the blocklist. See the documentation
This action sends an SMS message using the SendSMS.ro API. See the documentation
The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeform: {
type: "app",
app: "typeform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.typeform.com/me`,
headers: {
Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
},
})
},
})
The sendSMS API provides a straightforward way to integrate SMS capabilities into automation workflows on Pipedream. This API allows you to send text messages directly to users' phones, which can be pivotal for timely alerts, critical notifications, or personalized marketing messages. With Pipedream's serverless platform, you can trigger these SMS communications based on a wide variety of events, such as new e-commerce orders, support ticket updates, or even changes in third-party APIs.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendsms: {
type: "app",
app: "sendsms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendsms.ro/json?action=user_get_info`,
params: {
username: `${this.sendsms.$auth.username}`,
password: `${this.sendsms.$auth.api_key}`,
},
})
},
})