Australia's Most Reliable Email & SMS Marketing Software. Sign Up for a Free Trial Today!
The Vision6 API offers a powerful way to automate email marketing and audience engagement directly through Pipedream. With it, you can programmatically manage lists, contacts, and messages, and also track campaign performance. This API provides granular control over email workflows, enabling custom triggers, targeted actions, and detailed analytics retrieval. The combination of Vision6 with Pipedream's serverless platform unlocks endless possibilities for syncing data, personalizing communication, and optimizing marketing strategies without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vision6: {
type: "app",
app: "vision6",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.vision6.$auth.region}.api.vision6.com/v1/lists`,
headers: {
Authorization: `Bearer ${this.vision6.$auth.api_key}`,
"Content-Type": `application/json; charset=UTF-8`,
},
})
},
})
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.