with 46elks and Dropbox?
Emit new event when a new file is added to your account or a specific folder. Make sure the number of files/folders in the watched folder does not exceed 4000.
Emit new event when data related to your 46elks account changes, primarily used to keep an eye out for changes in account balance, name, or email. See the documentation
Emit new event when a new folder is created. Make sure the number of files/folders in the watched folder does not exceed 4000.
Emit new event instantly when an SMS is received by a specific number linked to your 46elks account. See the documentation
Emit new event when a file or folder is added or modified. Make sure the number of files/folders in the watched folder does not exceed 4000.
Dials and connects two phone numbers using the 46elks service. See the documentation
Creates a brand new text file from plain text content you specify. See the documentation
Composes and sends an SMS message to a specified phone number. See the documentation
Adds a new line to an existing text file, or creates a file if it doesn't exist. See the documentation
The 46elks API grants access to a powerful suite of telephony services including SMS, MMS, and voice calls. You can use Pipedream to automate interactions with this API, creating workflows that respond to incoming messages, initiate outbound communication, or integrate with other services for enhanced functionality. Whether you're setting up SMS alerts, automating voice responses, or facilitating customer support, the 46elks API on Pipedream can streamline these processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
_46elks: {
type: "app",
app: "_46elks",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.46elks.com/a1/me`,
auth: {
username: `${this._46elks.$auth.username}`,
password: `${this._46elks.$auth.password}`,
},
})
},
})
The Dropbox API on Pipedream enables you to automate file and folder operations, streamlining workflows that involve storing, syncing, and sharing content. With this API, you can programmatically manage files, set up event-driven triggers based on changes within Dropbox, and leverage Pipedream's capabilities to connect with hundreds of other apps for extended automation scenarios. It's ideal for building custom file management solutions, archiving systems, or collaborative content workflows without writing extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dropbox: {
type: "app",
app: "dropbox",
}
},
async run({steps, $}) {
const data = {
"account_id": `${this.dropbox.$auth.oauth_uid}`,
}
return await axios($, {
method: "post",
url: `https://api.dropboxapi.com/2/users/get_account`,
headers: {
Authorization: `Bearer ${this.dropbox.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
data,
})
},
})