Your Gateway to Stellar Customer Experience.
The Survey2Connect API grants you the power to automate and integrate your survey data with ease. With this API on Pipedream, you can streamline survey logistics, responses, and analytics, making your data work harder for you. Fetch survey results, manage contacts, and trigger actions in real-time as responses come in. It's a dynamic way to connect feedback with your existing tools and workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
survey2connect: {
type: "app",
app: "survey2connect",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://${this.survey2connect.$auth.environment}.survey2connect.com/v2/api/tickets`,
headers: {
"x-api-key": `${this.survey2connect.$auth.api_key}`,
"Content-Type": `application/json`,
},
data: {}
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.