with Team SMS and SMSlink nc?
Emit new event for each new SMS received. See the documentation
Retrieve all phone numbers owned by the user. See the documentation
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`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
smslink_nc: {
type: "app",
app: "smslink_nc",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.smslink.nc/api/user/me`,
headers: {
Authorization: `Bearer ${this.smslink_nc.$auth.personal_access_token}`,
"accept": `application/json`,
},
})
},
})