with verifi.email and VerticalResponse?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
verifi_email: {
type: "app",
app: "verifi_email",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.verifi.email/check`,
params: {
token: `${this.verifi_email.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
verticalresponse: {
type: "app",
app: "verticalresponse",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://vrapi.verticalresponse.com/api/v1/contacts?type=basic`,
headers: {
Authorization: `Bearer ${this.verticalresponse.$auth.oauth_access_token}`,
},
})
},
})