E-goi is a multichannel marketing solution that automates and integrates e-mail, mobile, web, voice and social media campaigns into a single online system, making it a breeze to grow leads and automate customer life cycle!
Go to siteE-goi's API lets you automate multichannel marketing campaigns, manage contacts, send out transactional emails, and much more. Pipedream, as a serverless integration and compute platform, amplifies these capabilities by allowing you to create workflows that trigger actions in E-goi based on events from a myriad of other services or custom logic.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
e_goi: {
type: "app",
app: "e_goi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.egoiapp.com/my-account`,
headers: {
"Apikey": `${this.e_goi.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
Sync New E-commerce Customers to E-goi: Automatically add new customers from Shopify to a specific list in E-goi. When a customer is created in Shopify, the workflow triggers, adding the customer's details to E-goi for future email marketing campaigns.
Update CRM Leads with Email Engagement Data: Sync engagement data from E-goi to Salesforce leads. If someone opens an email or clicks a link, the corresponding lead in Salesforce is updated with this interaction, keeping sales teams informed about prospect engagement.
Automate Support Ticket Creation from Email Replies: When a customer replies to a marketing email, automatically create a support ticket in Zendesk. This ensures that customer inquiries are swiftly addressed without manual email monitoring.
E-goi uses API keys for authentication. When you connect your E-goi account, Pipedream securely stores the keys so you can easily authenticate to E-goi APIs in both code and no-code steps.
Navigate to the user menu in the upper right corner of your E-goi account, click Integrations and copy your API key.