Easily create online surveys and questionnaires for free. Use Zoho Survey to collect data for customer satisfaction, feedback, business, research, and more.
Emit new event when a new survey response is received in Zoho Surveys.
Emit new event for each new local post on a location See the documentation
Emit new event for each new review on a location See the documentation
Create or update a reply to the specified review. See the documentation
Create a new local post associated with a location. See the documentation
List local posts associated with a location. 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}`,
},
})
},
})
The Google My Business API enables businesses to manage their online presence across Google, including Search and Maps. Through Pipedream, you can automate various aspects of your Google My Business account, such as reading and responding to customer reviews, updating business information, and posting new content. This API provides a powerful way to engage with customers and maintain accurate, up-to-date business listings, all through programmable interactions that can save time and enhance visibility.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_my_business: {
type: "app",
app: "google_my_business",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://mybusinessaccountmanagement.googleapis.com/v1/accounts`,
headers: {
Authorization: `Bearer ${this.google_my_business.$auth.oauth_access_token}`,
},
})
},
})