with NioLeads and JustCall?
Emit new event when a new contact is added. See the documentation
Emit new event when a new text message is received.
Finds a business email address using a full name and a website domain. See the documentation
Add a contact to your existing JustCall Sales Dialer campaign. See the documentation
Checks the deliverability of a specified email address. See the documentation
Send a text from your JustCall SMS capabled number. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nioleads: {
type: "app",
app: "nioleads",
}
},
async run({steps, $}) {
const data = {
"email": `support@pipedream.com`,
}
return await axios($, {
method: "post",
url: `https://api.nioleads.com/v1/openapi/verify_email`,
headers: {
Authorization: `Bearer ${this.nioleads.$auth.api_key}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
data,
})
},
})
The JustCall API allows for the automation and integration of telephony services into diverse workflows, enabling users to effectively manage calls and SMS within their business processes. By leveraging Pipedream's capabilities, one can create custom event-driven automation that responds to various triggers from JustCall, such as incoming/outgoing call events or new SMS messages, and connects them with over 300+ apps available on the Pipedream platform. This enables seamless data flow and interaction between JustCall and CRM systems, helpdesk software, marketing automation tools, and more, optimizing communication strategies and improving customer engagement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
justcall: {
type: "app",
app: "justcall",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.justcall.io/v2.1/users`,
headers: {
"accept": `application/json`,
"authorization": `${this.justcall.$auth.api_key}:${this.justcall.$auth.api_secret}`,
"x-justcall-client": `@PipedreamHQ/pipedream v0.1`,
},
})
},
})