Mobile Marketing | SMS Gateway, Mobile Marketing, Dedicated shortcode, Bulk SMS, 2 Way API
Go to siteThe Wire2Air API provides the ability to integrate SMS capabilities into your applications, allowing for sending and receiving text messages, managing contacts, and automating communication processes. On Pipedream, you can leverage these features to create powerful serverless workflows, connecting the Wire2Air API with a multitude of other services for various use cases, such as notifications, marketing, and customer support.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wire2air: {
type: "app",
app: "wire2air",
}
},
async run({steps, $}) {
const data = {
"To": `{your_to_number}`,
"From": `${this.wire2air.$auth.short_code_number}`,
"Text": `{your_message_text}`,
}
return await axios($, {
method: "post",
url: `https://msgapi.wire2air.com/rest/v1/message/`,
headers: {
"apikey": `${this.wire2air.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})
SMS Notifications for E-commerce Orders: Trigger a workflow on Pipedream when a new order is placed on an e-commerce platform like Shopify. Use the Wire2Air API to send a confirmation SMS to the customer with order details.
Automated Customer Support Messages: Combine Wire2Air with a CRM app like HubSpot. When a new ticket is created, automatically send an SMS to the customer acknowledging the receipt of their query and providing an estimated response time.
Event Reminder Service: Use Google Calendar events to trigger SMS reminders. Before an event starts, a Pipedream workflow can send a text message reminder to participants with the Wire2Air API.
Wire2Air uses API keys for authentication. When you connect your Wire2Air account, Pipedream securely stores the keys so you can easily authenticate to Wire2Air APIs in both code and no-code steps.
To retrieve your API credentials,
Now, to get your API Key
Finally, to get your Short Code Number