with chatra and Short Menu?
The Chatra API enables the automation of customer support processes by allowing the programmatic sending of messages, retrieval of chat history, and management of ongoing conversations. With Pipedream's serverless platform, you can harness this API to integrate real-time chat capabilities with other applications, set up automated responses based on specific triggers, and analyze customer interactions to enhance support strategies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chatra: {
type: "app",
app: "chatra",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.chatra.io/api/messages/XGDsxHtLppJTJ3vZk`,
headers: {
"Content-Type": `application/json`,
"Authorization": `Chatra.Simple ${this.chatra.$auth.public_key}:${this.chatra.$auth.secret_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
short_menu: {
type: "app",
app: "short_menu",
}
},
async run({steps, $}) {
const data = {
"destinationUrl": "https://pipedream.com/explore?via=go",
"domain": `${this.short_menu.$auth.custom_domain}`,
"tags": [
{
"name": "mytag"
}
]
}
return await axios($, {
method: "post",
url: `https://api.shortmenu.com/links`,
headers: {
"x-api-key": `${this.short_menu.$auth.api_key}`,
},
data,
})
},
})