The Remarkety API lets you automate your email marketing campaigns by leveraging customer data. With it, you can build workflows that trigger personalized emails based on shopping behavior and customer profiles. Remarkety's API on Pipedream is a powerhouse for creating dynamic, data-driven marketing strategies by connecting various apps to orchestrate complex workflows, such as syncing customer data, segmenting audiences, or triggering targeted campaigns.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
remarkety: {
type: "app",
app: "remarkety",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.remarkety.com/api/v2/stores/${this.remarkety.$auth.store_id}/customers`,
headers: {
"X-API-Key": `${this.remarkety.$auth.api_token}`,
},
})
},
})
Cart Abandonment Email Trigger: When a customer leaves items in their cart without completing a purchase, you can use the Remarkety API to trigger a targeted cart abandonment email. Combine this with scheduled checks of shopping cart statuses and use Pipedream's cron job feature to send reminders at optimal times.
Customer Segmentation and Targeted Campaigns: Segment customers based on their purchase history and preferences. Use the Remarkety API to tag customers in your database and create targeted email campaigns. Integrate with Shopify to sync customer purchases and create segments based on recent activity or total spend.
Engagement Metrics to Google Sheets: Use Remarkety to track customer engagement with your emails, such as opens and clicks. Then, send this data to a Google Sheet using Pipedream's Google Sheets app. This allows for easy monitoring of campaign performance and can inform future marketing strategies.
Remarkety uses API keys for authentication. When you connect your Remarkety account, Pipedream securely stores the keys so you can easily authenticate to Remarkety APIs in both code and no-code steps.
You can get your API Token and Store ID under Settings > API Keys.