with JVZoo and Team SMS?
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: {
jvzoo: {
type: "app",
app: "jvzoo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.jvzoo.com/v2.0`,
headers: {
"Content-Type": `application/json`,
},
auth: {
username: `${this.jvzoo.$auth.api_key}`,
password: `x`,
},
})
},
})
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`,
},
})
},
})