Acquire is a powerful customer engagement platform that makes it easy to build custom applications. With Acquire, you can create custom chatbots, live chat interfaces, and more.
Here are a few examples of what you can build with the Acquire API:
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}`,
},
})
},
})
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