Integrate WhatsApp messaging via Online Live Support
With the WhatsApp by Online Live Support API, you can easily and quickly
integrate WhatsApp as part of your business process. This API provides
optimized API for Whatsapp and allows your customers to communicate with you
through the world's most popular messaging app. This API not only ensures
customers can conveniently make contact but also increases your customer
service quality and efficiency.
Some examples of what you can build with this API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
online_live_support: {
type: "app",
app: "online_live_support",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://v2.onlinelivesupport.com/sessions/status/${this.online_live_support.$auth.session_id}`,
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})