Effortlessly share 2FA SMS with your team
Emit new event for each new SMS received. See the documentation
Retrieve all phone numbers owned by the user. See the documentation
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
team_sms: {
type: "app",
app: "team_sms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://teamsms.io/api/me`,
headers: {
"X-API-KEY": `${this.team_sms.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})