with Veedea and Formatting?
Get the list of campaigns created in the Veedea Dashboard. See the documentation
Retrieves a list of leads who purchased products through the specified campaign. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
veedea: {
type: "app",
app: "veedea",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://veedea.com/api/getcampaign`,
params: {
api_key: this.veedea.$auth.api_key,
token: this.veedea.$auth.access_token,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})