EZ Texting is the #1 text marketing software. We deliver the smartest, fastest, easiest, and most reliable ways to connect with your mobile audience.
Go to siteThe 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.
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`,
},
})
},
})
Automate CRM Updates with New Listings: Listen for new property listings in the iHomefinder API and automatically update your CRM—like Salesforce or HubSpot—with fresh listings to keep sales teams informed and responsive.
Dynamic Website Content Updates: Use the iHomefinder API to fetch new property data and automatically push updates to your website's listings page. This can be done through Pipedream's HTTP actions or by integrating with a CMS like WordPress.
Lead Management with Email Automation: When a new lead registers through iHomefinder, trigger workflows in Pipedream to add the lead to an email marketing tool like Mailchimp, and send them a personalized welcome email along with curated property recommendations.
EZ Texting uses OAuth authentication. When you connect your EZ Texting account, Pipedream will open a popup window where you can sign into EZ Texting and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any EZ Texting API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://a.eztexting.com/v1/tokens/create
content-type: application/json
accept: */*
appKey={{custom_fields.email}}
&
appSecret={{custom_fields.password}}
POST
https://a.eztexting.com/v1/tokens/refresh
content-type: application/json
accept: */*
refreshToken={{custom_fields.refreshToken}}