Replace outdated software, increase efficiency and boost business growth with Triggre, the complete no-code platform to create custom business applications.
Emit new event when a specified property is provided or updated on a company. See the documentation
Emit new event when a specified property is provided or updated on a contact. See the documentation
Emit new event when a specified property is provided or updated on a custom object.
Starts an automation flow within your Triggre application. See the documentation
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
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 HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})