Ongage

Email Marketing Platform For Data-Driven Growth

Integrate the Ongage API with the Data Stores API

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

Ongage Find Subscriber with the Ongage API

Find a list subscriber in Ongage.

 
Try it
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Ongage Subscribe with the Ongage API

Subscribe to a list in Ongage.

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Ongage Update Subscriber with the Ongage API

Update a list subscriber in Ongage.

 
Try it

Overview of Ongage

With the Ongage API, you can build powerful, data-driven marketing automation
tools that make complex campaigns easy to manage, saving both time and money.
Here are some examples of what you can build by leveraging the Ongage API:

  • Create dynamic segments of customers and prospects based on a variety of
    criteria.
  • Create and schedule email campaigns, automated messages, and SMS messages.
  • Monitor the performance of campaigns and optimize ad impressions for more
    effective results.
  • Integrate with third-party services such as Salesforce, HubSpot, and Marketo
    to easily store and track customer and prospect data for better marketing
    decision-making.
  • Automate marketing processes like onboarding and retention, providing a
    seamless experience for customers and prospects.
  • Track results from multiple campaigns and measure ROI using detailed
    analytics and reporting.
  • Build custom dashboards and reporting based on the data collected from
    campaigns.
  • Automate segmentation and targeting to ensure campaigns are always sent to
    the right audience.
  • Create automated triggered campaigns that respond in real-time to customer
    and prospect behavior.
  • Easily sync data between multiple platforms to keep customer and prospect
    data up-to-date.
  • And much more!

Connect Ongage

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    ongage: {
      type: "app",
      app: "ongage",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.ongage.net/api/lists`,
      headers: {
        "x_username": `${this.ongage.$auth.x_username}`,
        "x_password": `${this.ongage.$auth.x_password}`,
        "x_account_code": `${this.ongage.$auth.x_account_code}`,
      },
    })
  },
})

Overview of Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})