Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Emit new event when the account balance has been updated. See the documentation
Retrieve your current account balance with Mocean API. See the documentation
Send an outbound SMS from your Mocean account. 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 Mocean API provides tools for sending SMS and making voice calls, enabling you to integrate communication features into your applications or workflows seamlessly. With MoceanAPI on Pipedream, you can automate sending notifications, create alert systems, or even implement two-factor authentication (2FA). It interacts with other apps and services to craft powerful, event-driven automation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mocean_api: {
type: "app",
app: "mocean_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.moceanapi.com/rest/2/account/balance`,
params: {
"mocean-api-key": `${this.mocean_api.$auth.api_key}`,
"mocean-api-secret": `${this.mocean_api.$auth.api_secret}`,
},
})
},
})