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