Freshmarketer is a complete marketing automation suite that helps you manage your contacts and lists, design, and deliver compelling marketing campaigns and automate your email marketing.
Go to siteThe Freshmarketer API enables automation of marketing efforts, providing tools to manage campaigns, leads, and more. In Pipedream, you can leverage these capabilities to create custom workflows that interact with Freshmarketer's data and connect it to other services. Combining Freshmarketer with Pipedream's serverless platform allows you to automate actions like syncing contacts, triggering campaigns based on external events, or analyzing marketing performance with external analytics tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
freshmarketer: {
type: "app",
app: "freshmarketer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.freshmarketer.$auth.domain}.myfreshworks.com/crm/sales/api/sales_accounts/filters`,
headers: {
"Authorization": `Token token=${this.freshmarketer.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
Sync New Shopify Customers to Freshmarketer: Automatically add new customers from your Shopify store as contacts in Freshmarketer, tagging them based on the products they purchased. This makes targeted campaigns simpler and more effective.
Automated Support Ticket Creation: When a lead scores reach a certain threshold in Freshmarketer, create a support ticket in Freshdesk for personalized engagement. This workflow unites marketing intelligence with customer support.
Slack Notifications for Campaign Performance: Send daily summaries of campaign performance to a designated Slack channel. This workflow keeps teams informed and enables quick reactions to marketing data.
Searches for a contact by email and returns contact details if found. See the documentation
Removes a contact from a specific list by email or contact ID. See the documentation
Freshmarketer uses API keys for authentication. When you connect your Freshmarketer account, Pipedream securely stores the keys so you can easily authenticate to Freshmarketer APIs in both code and no-code steps.