Textline is the most secure business texting platform for modern customer support, sales, marketing, and logistics teams.
Create or update a contact in the Textline address book. See the documentation.
Send an announcement to a group of contacts. See the documentation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
textline: {
type: "app",
app: "textline",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://application.textline.com/api/users.json`,
headers: {
"x-tgp-access-token": `${this.textline.$auth.access_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.