What do you want to automate

with SMS Messages and Altiria?

Prompt, edit and deploy AI agents that connect to SMS Messages, Altiria and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Send SMS with the Altiria API

Send an SMS message. The message will be sent to the phone numbers you specify. See the documentation

 
Try it
Integrate the SMS Messages API with the Altiria API
Setup the SMS Messages API trigger to run a workflow which integrates with the Altiria API. Pipedream's integration platform allows you to integrate SMS Messages and Altiria remarkably fast. Free for developers.

Connect SMS Messages

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
30
31
32
33
34
35
36
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sms_messages: {
      type: "app",
      app: "sms_messages",
    }
  },
  async run({steps, $}) {
    const data = {
      "sms": 
      {
        "user":`${this.sms_messages.$auth.username}`, 
        "dst":
        {
          "num":
          [
            "++3460000000"
          ]
        },
        "txt":"Hello world!"
      }
    }
    return await axios($, {
      method: "post",
      url: `https://api.lleida.net/sms/v2/`,
      headers: {
        "content-type": `application/json; charset=utf-8`,
        "accept": `application/json`,
        "authorization": `x-api-key ${this.sms_messages.$auth.api_key}`,
      },
      data,
    })
  },
})

Connect Altiria

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    altiria: {
      type: "app",
      app: "altiria",
    }
  },
  async run({steps, $}) {
    const data = {
    "credentials":{
        "apikey": `${this.altiria.$auth.api_key}`,
        "apisecret": `${this.altiria.$auth.api_secret}`
        }
    }
    return await axios($, {
      method: "post",
      url: `https://www.altiria.net:8443/apirest/ws/getCredit`,
      data,
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo