Vision6

Australia's Most Reliable Email & SMS Marketing Software. Sign Up for a Free Trial Today!

Integrate the Vision6 API with the Python API

Setup the Vision6 API trigger to run a workflow which integrates with the Python API. Pipedream's integration platform allows you to integrate Vision6 and Python remarkably fast. Free for developers.

Run Python Code with Python API on Contact Activated from Vision6 API
Vision6 + Python
 
Try it
Run Python Code with Python API on Contact Deactivated from Vision6 API
Vision6 + Python
 
Try it
Run Python Code with Python API on Contact Subscribed from Vision6 API
Vision6 + Python
 
Try it
Run Python Code with Python API on Contact Unsubscribed from Vision6 API
Vision6 + Python
 
Try it
Run Python Code with Python API on Contact Updated from Vision6 API
Vision6 + Python
 
Try it
Contact Activated from the Vision6 API

Emit new event when a contact is activated

 
Try it
Contact Deactivated from the Vision6 API

Emit new event when a contact is deactivated

 
Try it
Contact Subscribed from the Vision6 API

Emit new event when a contact is subscribed

 
Try it
Contact Unsubscribed from the Vision6 API

Emit new event when a contact is unsubscribed

 
Try it
Contact Updated from the Vision6 API

Emit new event when a contact is updated

 
Try it
Run Python Code with the Python API

Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.

 
Try it
Create Contact with the Vision6 API

Create a new contact. See the docs here

 
Try it
Deactivate Contact with the Vision6 API

Deactivate an existing contact. See the docs here

 
Try it
Delete Contact with the Vision6 API

Delete a contact. See the docs here

 
Try it
Reactivate Contact with the Vision6 API

Reactivate an existing contact. See the docs here

 
Try it

Overview of Vision6

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.

Connect Vision6

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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`,
      },
    })
  },
})

Overview of Python

Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.

This includes installing PyPI packages, within your code without having to manage a requirements.txt file or running pip.

Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:

Connect Python

1
2
3
4
5
def handler(pd: "pipedream"):
  # Reference data from previous steps
  print(pd.steps["trigger"]["context"]["id"])
  # Return data for use in future steps
  return {"foo": {"test":True}}