The Ongage API provides a robust platform for email marketing campaign management, allowing for the creation, management, and analysis of email campaigns. With Pipedream's capabilities, you can automate tasks like syncing subscriber lists, triggering email campaigns based on specific events, and analyzing campaign performance directly within your workflow.
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}`,
},
})
},
})
List Synchronization Workflow: Synchronize contact lists between Ongage and a CRM like Salesforce. As contacts are added or updated in Salesforce, the workflow updates the corresponding list in Ongage, ensuring your email campaigns target the right audience without manual intervention.
Behavior-Triggered Email Campaign: Launch email campaigns in Ongage based on user behavior tracked by analytics tools such as Google Analytics. For example, if a user visits a specific product page multiple times but doesn't make a purchase, trigger a personalized discount offer via email through Ongage to encourage conversion.
Campaign Performance Dashboard: Aggregate email campaign performance data from Ongage into a BI tool like Google Data Studio. With each campaign sent, the workflow fetches open rates, click-through rates, and other relevant metrics, providing a real-time dashboard to analyze and optimize your email marketing strategy.
Note: The link provided for the Ongage API appears to be incorrect and points to the invoiced.com website. If further information is required for Ongage, please provide the correct URL.
Ongage uses API keys for authentication. When you connect your Ongage account, Pipedream securely stores the keys so you can easily authenticate to Ongage APIs in both code and no-code steps.
Connect to your Ongage account using the Username and Password of the Ongage User who will be using and issuing the API commands, along with your Account Code, that you can find under the Account Profile. See docs.
x_username
: your_ongage_usernamex_password
: your_ongage_passwordx_account_code
: your_ongage_account_code