Kuwaits' #1 SMS Provider
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,
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.