Yotpo is an eCommerce marketing platform with the most advanced solutions for customer reviews, visual marketing, loyalty, referrals, and SMS marketing.
Go to siteYotpo - Reviews & Ratings API empowers businesses to leverage customer feedback by managing and utilizing user-generated content. With this API, you can programmatically fetch reviews, respond to customer feedback, and analyze sentiment to improve products and services. Integrating it with Pipedream allows for automation of these tasks, streamlining the process of collecting and acting on customer insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yotpo: {
type: "app",
app: "yotpo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://developers.yotpo.com/v2/${this.yotpo.$auth.app_key}/orders?access_token=${this.yotpo.$auth.oauth_access_token}`,
headers: {
Authorization: `Bearer ${this.yotpo.$auth.oauth_access_token}`,
},
})
},
})
Sync Reviews to a Google Sheet for Analysis: Automatically transfer new reviews from Yotpo to a Google Sheets document using a Pipedream workflow. This enables easy monitoring and analysis of customer feedback trends over time without manual data entry.
Trigger Email Campaigns Based on Review Ratings: Set up a workflow that triggers a specific email campaign from a marketing platform like Mailchimp when a review with either a high or low rating is received. High ratings could trigger a "thank you" campaign, while low ratings might start a customer service follow-up sequence.
Post Top Reviews to Social Media: Create a Pipedream workflow that filters and posts 5-star reviews to your company's social media channels, such as Twitter or Facebook, using their respective APIs. This can automatically highlight positive customer experiences, boosting social proof and brand reputation.
Yotpo - Reviews & Ratings uses OAuth authentication. When you connect your Yotpo - Reviews & Ratings account, Pipedream will open a popup window where you can sign into Yotpo - Reviews & Ratings and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Yotpo - Reviews & Ratings API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://integrations-center.yotpo.com/app/#/install/applications/d870f05a85ac44df86cf77e86d788a87?state={{oauth.state}}
?
response_type=code
&
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
access_type=offline
POST
https://developers.yotpo.com/v2/oauth2/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}