with Formidable Forms and Zoho Forms?
Emit new event when a specific form receive a new response.
Fetches the meta information of all the forms present in a Zoho Creator application. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formidable_forms: {
type: "app",
app: "formidable_forms",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.formidable_forms.$auth.url}/wp-json/frm/v2/forms`,
auth: {
username: `${this.formidable_forms.$auth.api_key}`,
password: ``,
},
})
},
})
Zoho Forms API allows you to automate interactions with your forms and the data you collect. Leveraging Pipedream, you can harness this API to trigger workflows upon new form submissions, manipulate form entries, and sync data with other services. Pipedream’s serverless platform simplifies integrating Zoho Forms with hundreds of other apps, empowering you to create custom, scalable workflows without hosting or managing servers.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_forms: {
type: "app",
app: "zoho_forms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://forms.zoho.com/api/zforms?zf_service=Pipedream`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_forms.$auth.oauth_access_token}`,
},
})
},
})