with Zoho Survey and DocsAutomator?
Emit new event when a new survey response is received in Zoho Surveys.
Generate a new document from a pre-existing template. See the documentation
The Zoho Survey API enables you to integrate your surveys and their data with other applications, automating your workflows and allowing you to manage surveys and responses efficiently. Within Pipedream, you can harness this API to trigger workflows, process survey responses, create or update surveys, and sync your survey data with other services. This streamlined interaction facilitates real-time data collection and analysis, leading to informed decision-making and proactive engagement with your audience.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_survey: {
type: "app",
app: "zoho_survey",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://survey.${this.zoho_survey.$auth.base_api_uri}/survey/api/v1/private/userinfos`,
headers: {
Authorization: `Bearer ${this.zoho_survey.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docsautomator: {
type: "app",
app: "docsautomator",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.docsautomator.co/automations`,
headers: {
Authorization: `Bearer ${this.docsautomator.$auth.api_key}`,
},
})
},
})