with Encharge and FluidForms?
The Encharge API lets you automate your marketing by managing contacts, sending emails, and tracking user actions. Using Pipedream's serverless platform, you can connect Encharge with other apps to create custom workflows. Trigger actions based on events, update user segments, or synchronize data across your marketing stack.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
encharge: {
type: "app",
app: "encharge",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.encharge.io/v1/accounts/info`,
headers: {
Authorization: `Bearer ${this.encharge.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fluidforms: {
type: "app",
app: "fluidforms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://fluidforms.co/api/zapier/forms`,
headers: {
Authorization: `Bearer ${this.fluidforms.$auth.oauth_access_token}`,
},
})
},
})