Enterprise Online Survey Software & Tools
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the Alchemer API, you can build a wide variety of applications and
integrations. Below are just a few examples of what you can do with the
Alchemer API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
alchemer: {
type: "app",
app: "alchemer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.alchemer.com/v5/account`,
params: {
api_token: `${this.alchemer.$auth.api_key}`,
api_token_secret: `${this.alchemer.$auth.api_secret}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})