Textline is the most secure business texting platform for modern customer support, sales, marketing, and logistics teams.
Go to siteimport { 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}`,
},
})
},
})
Create or update a contact in the Textline address book. See the documentation.
Send an announcement to a group of contacts. See the documentation.
Textline uses API keys for authentication. When you connect your Textline account, Pipedream securely stores the keys so you can easily authenticate to Textline APIs in both code and no-code steps.