Building a two-way chatbot application is now easy and enjoyable thanks to the Waboxapp API. With its simple and straightforward API, developers and businesses can create a powerful bot that communicates effortlessly with customers, automatically providing support, information and more.
The API can be used to build a wide range of applications, such as:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
waboxapp: {
type: "app",
app: "waboxapp",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://www.waboxapp.com/api/status/[UID]`,
params: {
token: `${this.waboxapp.$auth.api_token}`,
},
})
},
})
Waboxapp uses API keys for authentication. When you connect your Waboxapp account, Pipedream securely stores the keys so you can easily authenticate to Waboxapp APIs in both code and no-code steps.
The API token in Waboxapp is located in the Developers page that is available in the left menu from the Dashboard.