with Botcake and Omniconvert?
Get a list of tools associated with the specified page. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
botcake: {
type: "app",
app: "botcake",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://botcake.io/api/public_api/v1/pages/${this.botcake.$auth.page_id}/keywords`,
headers: {
"access-token": `${this.botcake.$auth.api_key}`,
},
})
},
})
Omniconvert is a versatile API that enables businesses to optimize, personalize, and survey their e-commerce platforms. With it, you can automate A/B testing, personalize customer experiences based on a variety of metrics, and generate insights from customer feedback through surveys. Pipedream, as a serverless integration and automation platform, takes this a step further by allowing you to create complex workflows that trigger actions in other apps based on events in Omniconvert.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
omniconvert: {
type: "app",
app: "omniconvert",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://api.omniconvert.com/v1/websites`,
headers: {
"X-Api-User": `${this.omniconvert.$auth.api_user}`,
"X-Api-Key": `${this.omniconvert.$auth.api_key}`,
},
})
},
})