One SMS app for your entire company. 2-way texting, SMS marketing, calling, & more.
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
Adds a contact to a specific static list. See the documentation
Retrieves the list of all the conversations of a specific contact id. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
The Salesmsg API facilitates two-way SMS and MMS communications, allowing users to send, receive, and manage messages programmatically. It provides a suite of tools to integrate texting capabilities into various workflows and systems. On Pipedream, you can harness this API to automate conversations, sync with customer databases, trigger notifications, and much more, utilizing Pipedream's serverless platform to connect Salesmsg with a plethora of other apps and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
salesmsg: {
type: "app",
app: "salesmsg",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.salesmessage.com/pub/v2.1/users/me`,
headers: {
Authorization: `Bearer ${this.salesmsg.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})