Australia's Most Reliable Email & SMS Marketing Software. Sign Up for a Free Trial Today!
Finds a row in a table via a custom query. See the documentation
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`,
},
})
},
})
On Pipedream, you can leverage the PostgreSQL app to create workflows that automate database operations, synchronize data across platforms, and react to database events in real-time. Think handling new row entries, updating records from webhooks, or even compiling reports on a set schedule. Pipedream's serverless platform provides a powerful way to connect PostgreSQL with a variety of apps, enabling you to create tailored automation that fits your specific needs.
import postgresql from "@pipedream/postgresql"
export default defineComponent({
props: {
postgresql,
},
async run({ steps, $ }) {
// Component source code:
// https://github.com/PipedreamHQ/pipedream/tree/master/components/postgresql
const queryObj = {
text: "SELECT NOW()",
values: [], // Ignored since query does not contain placeholders
};
return await this.postgresql.executeQuery(queryObj);
},
})