Telesign provides Continuous Trust™ to leading global enterprises by connecting, protecting, and defending digital identities through our powerful AI.
Go to siteThe 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,
})
},
})
User Registration Verification: Automate the sending of verification codes via SMS when new users register on your platform. Trigger the TeleSign SMS API to dispatch a secure code and validate user phone numbers as part of your onboarding workflow.
Transaction Fraud Alert: Couple TeleSign's Score API with a payment platform like Stripe. Assess the risk associated with phone numbers during transactions. If a high-risk score is detected, trigger an alert and hold the transaction for further review.
Appointment Reminders: Streamline appointment management by integrating TeleSign with a calendar app like Google Calendar. Set up a workflow that sends SMS reminders when an appointment is upcoming, reducing no-shows and enhancing customer experience.
TeleSign uses API keys for authentication. When you connect your TeleSign account, Pipedream securely stores the keys so you can easily authenticate to TeleSign APIs in both code and no-code steps.
To retrieve your API keys,