The Acquire API integrates customer support tools into your apps, enabling live chat, voice and video calls, co-browsing, and AI chatbots. With Pipedream, you can automate customer interaction workflows, sync support tickets with other platforms, or trigger actions based on customer behavior. Pipedream's serverless platform allows you to connect Acquire with hundreds of other apps for seamless automation, all with minimal coding.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
acquire: {
type: "app",
app: "acquire",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.acquire.$auth.account_id}.acquire.io/api/v1/account/department`,
headers: {
Authorization: `Bearer ${this.acquire.$auth.api_key}`,
},
})
},
})
Support Ticket Routing: Automatically route new support tickets created in Acquire to a designated Slack channel. This keeps your support team immediately informed and helps ensure that no customer queries fall through the cracks.
Customer Feedback Aggregation: Collect feedback submitted through Acquire and send it to a Google Sheet for analysis. This workflow could trigger follow-up actions, like sending a thank you email from Gmail or a discount code for their next purchase, based on the feedback.
Real-Time Alerts for High-Value Customers: Set up a workflow that triggers when a high-value customer starts a chat on Acquire. Automatically send a notification to a VIP support agent via Microsoft Teams, along with the customer's purchase history from Salesforce, to provide personalized and immediate service.
Acquire uses API keys for authentication. When you connect your Acquire account, Pipedream securely stores the keys so you can easily authenticate to Acquire APIs in both code and no-code steps.
API keys can be generated from the settings. Here is an example of the API Key dashboard in the settings.
Settings > For Developers > API Key