Grow your Business with Customer Feedback. Popup-Surveys for E-Commerce and SaaS.
Emit new event when a new survey response is received. See the documentation
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
Format a date string to another date string. For more examples on formatting, see the Sugar Date Format documentation.
The Survser API is designed to streamline survey management and analysis, providing a set of tools to create, distribute, and analyze surveys. On Pipedream, you can automate survey distribution, sync responses with other data systems, and trigger actions based on survey outcomes. This enables seamless integration with other apps for advanced data processing, notifications, and more, enhancing decision-making processes and response times.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
survser: {
type: "app",
app: "survser",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.survser.com/api/public/survey/list`,
params: {
key: `${this.survser.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})