with Dropboard and Twilio?
Emit new event every time an SMS is sent to the phone number set. Configures a webhook in Twilio, tied to an incoming phone number.
Emit new event when a candidate profile is created.
Emit new event when a member is added to a recruiting client (recruiter plan only).
Emit new event each time a call to the phone number is completed. Configures a webhook in Twilio, tied to a phone number.
Creates a new client within Dropboard. Note this is available only for recruiter plan users and may incur additional charges based on your organization's plan. See the documentation
Make a phone call passing text, a URL, or an application that Twilio will use to handle the call. See the documentation
Looks for a client within Dropboard. If not found, it will create a new one. See the documentation
Check if user-provided token is correct. See the documentation
The Dropboard API enables management and optimization of shipping logistics, providing functionality to monitor shipments, manage inventory, and handle orders efficiently. With this API, Pipedream users can automate various aspects of logistics and supply chain operations, enhancing real-time decision-making and operational efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dropboard: {
type: "app",
app: "dropboard",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dropboardhq.com/2024-02/me`,
headers: {
Authorization: `Bearer ${this.dropboard.$auth.oauth_access_token}`,
},
})
},
})
Twilio's API on Pipedream opens up a multitude of communication capabilities, allowing you to build robust, scalable, and automated workflows. With Twilio, you can send and receive SMS and MMS messages, make voice calls, and perform other communication functions programmatically. Leveraging Pipedream's seamless integration, you can connect these communications features with hundreds of other services to automate notifications, streamline customer interactions, and enhance operational efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
twilio: {
type: "app",
app: "twilio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.twilio.com/2010-04-01/Accounts.json`,
auth: {
username: `${this.twilio.$auth.AccountSid}`,
password: `${this.twilio.$auth.AuthToken}`,
},
})
},
})