with Piped and Cliengo?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
piped: {
type: "app",
app: "piped",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.piped.$auth.instance_api_url}/suggestions`,
params: {
query: `Game`,
},
})
},
})
Cliengo is a chatbot platform that lets you automate conversations with visitors on your website, aiding in lead capture and customer service. The Cliengo API offers capabilities to programmatically manage these conversations, extract chat data, and integrate with CRM systems. By leveraging Pipedream, you can connect Cliengo to a variety of different apps and services to streamline workflows, such as syncing chat data to your CRM, triggering emails based on chat events, or analyzing customer interaction patterns.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cliengo: {
type: "app",
app: "cliengo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cliengo.com/1.0/account`,
params: {
api_key: `${this.cliengo.$auth.api_key}`,
},
})
},
})