with SyncMate by Assitro and Workiz?
Emit new event when a new job is created in Workiz. See the documentation
Emit new event when a new lead is created in Workiz. See the documentation
Send multiple WhatsApp messages in bulk. See the documentation
Send a single WhatsApp message using SyncMate by Assistro. See the documentation
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,
})
},
})
The Workiz API opens up a world of possibilities for managing field service operations. By tapping into Workiz with Pipedream, you can automate workflows, sync data across apps, and react to events in real-time. Whether you're automating job scheduling, dispatch notifications, or customer follow-ups, integrating Workiz with Pipedream allows you to streamline operations, reduce manual entry, and keep your team in sync.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
workiz: {
type: "app",
app: "workiz",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.workiz.com/api/v1/${this.workiz.$auth.api_token}/team/all/`,
headers: {
"accept": `application/json`,
},
})
},
})