TeleSign

Telesign provides Continuous Trust™ to leading global enterprises by connecting, protecting, and defending digital identities through our powerful AI.

Go to site
Explore
/
Apps
/
TeleSign

TeleSign API Integrations

Build and run workflows using the TeleSign API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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,
    })
  },
})

Authentication

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,

  • Navigate to your TeleSign account and sign in
  • Go to “Settings” > “Account Settings”