Vision6

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

Integrate the Vision6 API with the OpenAI (ChatGPT) API

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

Chat with OpenAI (ChatGPT) API on Contact Activated from Vision6 API
Vision6 + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on Contact Deactivated from Vision6 API
Vision6 + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on Contact Subscribed from Vision6 API
Vision6 + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on Contact Unsubscribed from Vision6 API
Vision6 + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on Contact Updated from Vision6 API
Vision6 + OpenAI (ChatGPT)
 
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
Chat with the OpenAI (ChatGPT) API

The Chat API, using the gpt-3.5-turbo or gpt-4 model. See docs here

 
Try it
Summarize Text with the OpenAI (ChatGPT) API

Summarizes text using the Chat API

 
Try it
Classify Items into Categories with the OpenAI (ChatGPT) API

Classify items into specific categories using the Chat API

 
Try it
Translate Text (Whisper) with the OpenAI (ChatGPT) API

Translate text from one language to another using the Chat API

 
Try it
Create Transcription (Whisper) with the OpenAI (ChatGPT) API

Transcribes audio into the input language. See 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 OpenAI (ChatGPT)

OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:

Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:

Connect OpenAI (ChatGPT)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    openai: {
      type: "app",
      app: "openai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.openai.com/v1/models`,
      headers: {
        Authorization: `Bearer ${this.openai.$auth.api_key}`,
      },
    })
  },
})