Telesign provides Continuous Trust™ to leading global enterprises by connecting, protecting, and defending digital identities through our powerful AI.
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.
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 TeleSign API furnishes developers with tools for communication and security. You can send SMS messages, voice alerts, and leverage phone number intelligence for risk assessments. Within Pipedream, you can integrate TeleSign to automate notifications, verification, and fraud prevention processes. It fosters real-time, event-driven actions, such as sending an SMS when a new user signs up, or assessing the risk of a transaction based on phone number data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
telesign: {
type: "app",
app: "telesign",
}
},
async run({steps, $}) {
const data = {
"phone_number": ``,
"message": ``,
"message_type": ``,
}
return await axios($, {
method: "post",
url: `https://rest-ww.telesign.com/v1/messaging`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
},
auth: {
username: `${this.telesign.$auth.customer_id}`,
password: `${this.telesign.$auth.api_key}`,
},
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}`,
},
})
},
})