Yotpo is an eCommerce marketing platform with the most advanced solutions for customer reviews, visual marketing, loyalty, referrals, and SMS marketing.
Go to siteThe Yotpo - Loyalty & Referrals API unlocks the potential to craft custom loyalty and referral programs by integrating with your tech stack through Pipedream. With this API, you can manage rewards, referrals, and customer loyalty data in real-time. Automate the process of rewarding customers for their engagement, track referral sources, and analyze program effectiveness directly through Pipedream's serverless platform.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yotpo_loyalty_referrals: {
type: "app",
app: "yotpo_loyalty_referrals",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://loyalty.yotpo.com/api/v2/campaigns`,
headers: {
"Content-Type": `application/json`,
"x-guid": `${this.yotpo_loyalty_referrals.$auth.guid}`,
"x-api-key": `${this.yotpo_loyalty_referrals.$auth.api_key}`,
},
})
},
})
Sync New Referral Sign-ups to CRM: When a user signs up through a referral link, trigger a workflow to add the new customer details to your CRM system. This maintains an updated list of leads generated via referrals, allowing for targeted follow-ups or engagement campaigns.
Reward Points Balance Updates to Email Marketing Tool: Automate the process of updating customer reward points balance in an email marketing tool like Mailchimp. Once points are updated or redeemed, Pipedream can trigger a personalized email campaign to encourage further purchases or reward redemptions.
Aggregate Customer Loyalty Data for Analytics: Collect and send customer loyalty data points to a service like Google Sheets or a BI tool. Use this aggregated data to analyze trends, measure program ROI, and adjust strategies for maximizing engagement and retention.
Yotpo - Loyalty & Referrals uses API keys for authentication. When you connect your Yotpo - Loyalty & Referrals account, Pipedream securely stores the keys so you can easily authenticate to Yotpo - Loyalty & Referrals APIs in both code and no-code steps.
Yotpo uses a combination of your guid
and api_key
to authenticate requests. You can find your authentication credentials in the Settings page of your Loyalty admin account.