with Rocketadmin and Keap (Infusionsoft)?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rocketadmin: {
type: "app",
app: "rocketadmin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.rocketadmin.com/api/check/apikey`,
headers: {
"x-api-key": `${this.rocketadmin.$auth.api_key}`,
},
})
},
})
The Keap (Infusionsoft) API is a powerful tool that unlocks advanced customer relationship management, marketing automation, and sales features. It allows you to manage contacts, create and update customer records, send emails, set up marketing campaigns, and more, automating and integrating these processes within your business workflows. With Pipedream's serverless execution environment, you can harness this API to craft custom automations, trigger sequences based on specific actions, and connect Keap to a multitude of other apps and services, streamlining your sales and marketing efforts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
infusionsoft: {
type: "app",
app: "infusionsoft",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.infusionsoft.com/crm/rest/v1/oauth/connect/userinfo`,
headers: {
Authorization: `Bearer ${this.infusionsoft.$auth.oauth_access_token}`,
},
})
},
})