What do you want to automate

with EZ Texting and Alerty?

Prompt, edit and deploy AI agents that connect to EZ Texting, Alerty 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
Notify Devices with the Alerty API

Sends a notification to active devices. See the documentation

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

Overview of EZ Texting

The iHomefinder API provides real estate data services, including property listings, market info, and lead management. With Pipedream, you can automate how you interact with this data. For instance, you can sync new listings to a CRM, update your website with the latest properties, or trigger marketing emails when a new lead is captured.

Connect EZ Texting

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    ez_texting: {
      type: "app",
      app: "ez_texting",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://a.eztexting.com/v1/credits`,
      headers: {
        Authorization: `Bearer ${this.ez_texting.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})

Connect Alerty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    alerty: {
      type: "app",
      app: "alerty",
    }
  },
  async run({steps, $}) {
    const data = {
      "title": `alerty.dev test notification`,
      "message": `My first notification through the Alerty API via Pipedream!`,
    }
    return await axios($, {
      method: "post",
      url: `${this.alerty.$auth.notification_url}`,
      headers: {
        Authorization: `Bearer ${this.alerty.$auth.api_key}`,
      },
      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