The Judge.me API lets you tap into a rich repository of product review data, enabling you to automate the gathering, moderation, and publication of reviews on your store. You can also trigger actions based on review events, like thanking a customer after they leave a positive review or addressing negative feedback promptly. With Pipedream's serverless platform, you can craft workflows to interact with other apps, streamline processes, and react to review-related activities in real-time, without writing any backend code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
judge_me: {
type: "app",
app: "judge_me",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://judge.me/api/v1/reviews`,
params: {
api_token: `${this.judge_me.$auth.oauth_access_token}`,
shop_domain: `${this.judge_me.$auth.shop_domain}`,
},
})
},
})
Sync Reviews to a Google Sheet: Automatically push new reviews from Judge.me into a Google Sheet for easy monitoring and analysis. This workflow can help with aggregating data for reporting purposes or sharing with your team.
Send Review Thank-You Emails: Trigger an automated thank-you email to customers who've left a review, using an email service like SendGrid. Personalize the message based on the review content and rating, enhancing customer relationships.
Create Support Tickets from Negative Reviews: Whenever a review below a certain rating threshold is received, create a support ticket in a tool like Zendesk. This allows your support team to follow up quickly and address any concerns raised by the customer.
Emit new event when a new review is posted. See the documentation
Create a private reply for a review, on behalf of the shop. Private replies are not shown on the widgets, but can be emailed to the reviewers. See the documentation
Create a public reply for a review on behalf of the shop. Public replies are shown publicly on the widgets. See the documentation
Judge.me uses OAuth authentication. When you connect your Judge.me account, Pipedream will open a popup window where you can sign into Judge.me and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Judge.me API.
Pipedream requests the following authorization scopes when you connect your account:
read_reviews
read_products
write_replies
write_private_replies
GET
https://judge.me/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://judge.me/oauth/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}}