Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Creates a new customer with the provided details. See the documentation
Creates a new internet service with specified details. 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 Splynx API provides a gateway to manage and automate Internet Service Provider (ISP) tasks such as billing, networking, and customer management. By tapping into this API via Pipedream, you can create robust integrations and workflows that streamline operations, enhance customer service, and drive data-driven decisions. Pipedream's platform enables the connection of Splynx's features with hundreds of other apps without the need for extensive coding, facilitating task automation and data synchronization in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
splynx: {
type: "app",
app: "splynx",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.splynx.$auth.subdomain}.splynx.app/api/2.0/admin/customers/customer`,
headers: {
"Authorization": `Splynx-EA (access_token=${this.splynx.$auth.oauth_access_token})`,
},
})
},
})