International Quality Bulk SMS Service Provider. 1s2u.com is committed to be the best international Bulk SMS services provider in the world with high quality and real-time support for 24/7.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ones2u: {
type: "app",
app: "ones2u",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.1s2u.io/checkbalance`,
params: {
user: `${this.ones2u.$auth.username}`,
pass: `${this.ones2u.$auth.password}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})