with Reputation Lyncs and SyncMate by Assitro?
Emit new event when a new customer is added to the system. See the documentation
Adds a new customer to the Reputation Lyncs platform. See the documentation
Send multiple WhatsApp messages in bulk. See the documentation
Send a single WhatsApp message using SyncMate by Assistro. See the documentation
Reputation Lyncs offers an API that allows you to monitor and manage online reviews and ratings across various platforms. In Pipedream, this API can be harnessed to create powerful workflows that automate the process of tracking your business's reputation, responding to reviews, and analyzing sentiment across different review sites. Pipedream's serverless platform enables you to integrate these features with other apps seamlessly, triggering actions based on review data or updating dashboards with real-time insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
reputation_lyncs: {
type: "app",
app: "reputation_lyncs",
}
},
async run({steps, $}) {
const data = {
"Apikey": `${this.reputation_lyncs.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://reputationlync.com/app/api/customer/validateApiKey`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
syncmate_by_assitro: {
type: "app",
app: "syncmate_by_assitro",
}
},
async run({steps, $}) {
const data = {
"msgs": [
{
"number": 14159371662, //Your whatsapp number with country code
"message": "This is a test via Pipedream and SyncMate by Assitro integration."
}
]
}
return await axios($, {
method: "post",
url: `https://app.assistro.co/api/v1/wapushplus/single/message`,
headers: {
Authorization: `Bearer ${this.syncmate_by_assitro.$auth.api_key}`,
"content-type": `application/json`,
},
data,
})
},
})