Telesign provides Continuous Trust™ to leading global enterprises by connecting, protecting, and defending digital identities through our powerful AI.
Go to siteimport { 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,
})
},
})
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,