Replace outdated software, increase efficiency and boost business growth with Triggre, the complete no-code platform to create custom business applications.
Starts an automation flow within your Triggre application. See the documentation
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Allows you to create a new contact list. See the docs here
The Triggre API offers a gateway to interact with the Triggre platform, enabling you to automate processes, manage data, and integrate with other services. On Pipedream, you can harness this API to create powerful serverless workflows, connecting Triggre with numerous other apps to streamline operations, trigger actions based on events, and manipulate data in real-time. This empowers you to build custom, automated solutions that bridge the gap between Triggre and the rest of your tech stack.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
triggre: {
type: "app",
app: "triggre",
}
},
async run({steps, $}) {
const data = {
"name": "Test User",
"email": "test@sampledomain.com",
"visitors": 10
}
return await axios($, {
method: "post",
url: `${this.triggre.$auth.triggre_application_url}/${this.triggre.$auth.application_environment}/interfaces/rest/finaltest/finaltest`,
auth: {
username: `${this.triggre.$auth.application_username}`,
password: `${this.triggre.$auth.application_password}`,
},
data,
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})