Simplesat is a survey tool that makes it easy for any business to collect, analyze and publish customer feedback.
Emit a new event when the form is answered. See the documentation
Emit a new event when an answer is sent or updated. See the documentation
The Simplesat API allows you to automate and integrate customer feedback workflows directly with your other business processes. With this API, you can seamlessly gather customer satisfaction ratings, Net Promoter Scores, and firsthand testimonials. You can trigger actions based on feedback, sync data to CRM or support tools, and analyze customer sentiment in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
simplesat: {
type: "app",
app: "simplesat",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.simplesat.io/api/answers/`,
headers: {
"X-Simplesat-Token": `${this.simplesat.$auth.api_key}`,
},
})
},
})
The Google Forms API lets you programmatically access and manipulate your forms and responses. In Pipedream, integrating Google Forms can automate mundane tasks, sync form data with other services, and trigger actions based on submission events. You can create, edit, and collaborate on forms, and analyze responses in real-time combined with Pipedream's serverless platform to create powerful workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_forms: {
type: "app",
app: "google_forms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.google_forms.$auth.oauth_access_token}`,
},
})
},
})