with WildApricot and Trustpilot (Customer)?
Emit new event when a contact or member in WildApricot is updated
Emit new event when a registration to an existing event in WildApricot is newly created.
Emit new event when a new conversation is started on Trustpilot. This source periodically polls the Trustpilot API to detect new customer-business conversations. Each event contains conversation details including participants, subject, business unit, and creation timestamp. Useful for tracking customer inquiries, support requests, and maintaining real-time communication with customers.
Emit new event each time a new payment is received in WildApricot
Emit new event when a business replies to a product review on Trustpilot. This source periodically polls the Trustpilot API to detect new replies to product reviews. Each event includes the reply text, creation timestamp, and associated review details (product name, star rating, consumer info). Ideal for monitoring business responses to customer feedback, tracking customer service performance, and ensuring timely engagement with product reviews.
Adds or updates a contact or member details in the user's WildApricot database. See the documentation
Retrieves detailed information about a specific product review on Trustpilot. Use this action to get comprehensive data about a single product review, including customer feedback, star rating, review text, and metadata. Perfect for analyzing individual customer experiences, responding to specific feedback, or integrating review data into your customer service workflows. See the documentation
Searches event registrations using a contact email. If a match is found, the registration details are updated. If not, a new registration is added to the event. See the documentation
Retrieves a list of product reviews for a specific business unit on Trustpilot. This action enables you to fetch multiple product reviews with powerful filtering options including star ratings, language, tags, and sorting preferences. Ideal for monitoring product feedback trends, generating reports, analyzing customer sentiment across your product catalog, or building review dashboards. Supports pagination for handling large review volumes. See the documentation
Removes an event registration from the user's WildApricot database. See the documentation
The WildApricot API opens up a world of possibilities for managing your membership-driven organization efficiently by automating tasks and integrating with other services. With this API on Pipedream, you can craft workflows that manipulate member data, automate event creation and management, handle financial operations such as invoicing, and engage with members through tailored communication. Pipedream's serverless platform simplifies the process of setting up these automations with pre-built components and easy-to-use triggers and actions for the WildApricot API.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wildapricot: {
type: "app",
app: "wildapricot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.wildapricot.org/v2.2/accounts`,
headers: {
Authorization: `Bearer ${this.wildapricot.$auth.oauth_access_token}`,
},
})
},
})
The Trustpilot (Customer) API lets you tap into the rich pool of customer review data on Trustpilot. You can use it to automate the process of collecting and managing reviews, responding to feedback, and analyzing customer sentiment. With Pipedream's integration, you can trigger workflows based on new reviews, aggregate review data for analysis, and sync Trustpilot data with other services like CRMs, support tickets, and marketing tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
trustpilot: {
type: "app",
app: "trustpilot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://invitations-api.trustpilot.com/v1/private/business-units/${this.trustpilot.$auth.business_unit_id}/templates`,
headers: {
Authorization: `Bearer ${this.trustpilot.$auth.oauth_access_token}`,
},
})
},
})