with Ayrshare and EmailVerify.io?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ayrshare: {
type: "app",
app: "ayrshare",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.ayrshare.com/api/user`,
headers: {
Authorization: `Bearer ${this.ayrshare.$auth.api_key}`,
},
})
},
})
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`,
},
})
},
})