with WATI and ChartHop?
Emit new event when a contact is created from an incoming WhatsApp message.
Emit new event when a new employee is added to the organization. See the documentation
Emit new event when there is an incoming message on your number.
Emit new event when a new group is added to the organization. See the documentation
Emit new event when a new job is added to the organization. See the documentation
Enables sending of WhatsApp messages using a pre-approved template. See the documentation
Allows updating attributes/tags related to an existing contact. See the documentation
Return people, job, group, and field data for a particular org that match a provided search string. See the documentation
The WATI API allows you to power up your customer engagement by leveraging WhatsApp messaging. With Pipedream's capabilities, you can create serverless workflows that integrate WATI to automate personalized notifications, process inbound messages, and manage contacts. This can help scale your customer service, marketing campaigns, and streamline communications with WhatsApp's wide user base.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wati: {
type: "app",
app: "wati",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.wati.$auth.api_endpoint}/api/v1/getContacts`,
headers: {
"Accept": `*/*`,
"Authorization": `${this.wati.$auth.access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
charthop: {
type: "app",
app: "charthop",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.charthop.com/v1/user/me`,
headers: {
Authorization: `Bearer ${this.charthop.$auth.api_token}`,
},
})
},
})