The kwtsms API provides SMS services that allow you to send text messages globally. Integrating this API with Pipedream can make your workflows smarter by incorporating SMS notifications, alerts, and marketing communications. With Pipedream's serverless platform, you can trigger these SMS actions based on a variety of events, such as form submissions, ecommerce transactions, or app notifications, unleashing a host of automation possibilities that save time and enhance engagement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kwtsms: {
type: "app",
app: "kwtsms",
}
},
async run({steps, $}) {
const data = {
"username": `${this.kwtsms.$auth.api_username}`,
"password": `${this.kwtsms.$auth.api_password}`,
}
return await axios($, {
method: "post",
url: `https://www.kwtsms.com/API/balance/`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
Order Confirmation Texts: Automatically send SMS confirmations when a customer completes an order. Combine kwtsms with Shopify or WooCommerce on Pipedream to send custom messages post-purchase.
Appointment Reminders: Set up a workflow that sends SMS reminders to clients for upcoming appointments. This can be linked with Google Calendar events in Pipedream, ensuring clients receive timely notifications.
System Outage Alerts: Create a rapid alert system that texts IT staff when system downtime is detected. Pair kwtsms with monitoring apps like Datadog in Pipedream to notify when there's an issue that needs immediate attention.
kwtsms uses API keys for authentication. When you connect your kwtsms account, Pipedream securely stores the keys so you can easily authenticate to kwtsms APIs in both code and no-code steps.
Sign in and copy your API username and password from API information.