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`,
},
})
},
})
EmailVerify.io uses API keys for authentication. When you connect your EmailVerify.io account, Pipedream securely stores the keys so you can easily authenticate to EmailVerify.io APIs in both code and no-code steps.