EngageBay is an affordable all-in-one CRM with marketing, sales & support solution for growing businesses to engage and convert web visitors to happy customers.
Go to siteEngageBay's API enables you to connect to EngageBay and build integrations with third-party applications. With the API, you can perform actions such as:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
engagebay: {
type: "app",
app: "engagebay",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.engagebay.com/dev/api/panel/users`,
headers: {
"Authorization": `${this.engagebay.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
EngageBay uses API keys for authentication. When you connect your EngageBay account, Pipedream securely stores the keys so you can easily authenticate to EngageBay APIs in both code and no-code steps.
You can find your API Key in the EngageBay Account Admin Settings -> API -> REST API Key.