Campaign Cleaner

The Ultimate Tool for Optimized, High-Performance Email Campaigns

Integrate the Campaign Cleaner API with the OpenAI (ChatGPT) API

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

Get Campaign Status with Campaign Cleaner API on New File Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + Campaign Cleaner
 
Try it
Get Campaign Status with Campaign Cleaner API on New Fine Tuning Job Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + Campaign Cleaner
 
Try it
Get Campaign Status with Campaign Cleaner API on New Run State Changed from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + Campaign Cleaner
 
Try it
Send Campaign with Campaign Cleaner API on New File Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + Campaign Cleaner
 
Try it
Send Campaign with Campaign Cleaner API on New Fine Tuning Job Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + Campaign Cleaner
 
Try it
New File Created from the OpenAI (ChatGPT) API

Emit new event when a new file is created in OpenAI. See the documentation

 
Try it
New Fine Tuning Job Created from the OpenAI (ChatGPT) API

Emit new event when a new fine-tuning job is created in OpenAI. See the documentation

 
Try it
New Run State Changed from the OpenAI (ChatGPT) API

Emit new event every time a run changes its status. See the documentation

 
Try it
Get Campaign Status with the Campaign Cleaner API

Check the status of your campaign. See the documentation

 
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
Send Campaign with the Campaign Cleaner API

Send in a campaign to be processed and analyzed. See the documentation

 
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

Overview of Campaign Cleaner

The Campaign Cleaner API offers tools to clean and verify email lists, improving email campaign performance and sender reputation. By integrating with Pipedream, you can automate workflows that enhance your email marketing efforts. Use the API to check the validity of email addresses, remove duplicates, and classify email types. Pipedream's serverless platform allows you to trigger these processes from various events, schedule them, or manually invoke them as needed.

Connect Campaign Cleaner

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: {
    campaign_cleaner: {
      type: "app",
      app: "campaign_cleaner",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.campaigncleaner.com/v1/get_credits`,
      headers: {
        "X-CC-API-Key": `${this.campaign_cleaner.$auth.api_key}`,
        "accept": `application/json`,
      },
    })
  },
})

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}`,
      },
    })
  },
})