with VerticalResponse and EmailVerify.io?
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
emailverify_io: {
type: "app",
app: "emailverify_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.emailverify.io/api/v1/validate`,
params: {
key: `${this.emailverify_io.$auth.api_key}`,
email: `integrations@pipedream.com`,
},
})
},
})