with DialMyCalls and FlexiSign?
Sends a signature request to the specified recipients for a document generated from a template. See the documentation
The DialMyCalls API lets you harness the power of voice and text messaging for mass communication. With this API, you can automate the creation and dispatch of messages to lists of recipients, schedule calls, manage contacts, and track the delivery status of your messages. This becomes particularly useful in scenarios like emergency alerts, appointment reminders, and promotional campaigns where reaching out to a broad audience swiftly and reliably is key.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dialmycalls: {
type: "app",
app: "dialmycalls",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dialmycalls.com/2.0/account`,
auth: {
username: `${this.dialmycalls.$auth.api_key}`,
password: `x`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flexisign: {
type: "app",
app: "flexisign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.flexisign.io/v1/templates/all`,
headers: {
"api-key": `${this.flexisign.$auth.api_key}`,
},
})
},
})