import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
xverify: {
type: "app",
app: "xverify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.xverify.com/v2/ev`,
params: {
api_key: `${this.xverify.$auth.api_key}`,
domain: `${this.xverify.$auth.domain}`,
email: `test@test.com`,
},
})
},
})
Sends an address verification request. See the documentation
Sends an email verification request. See the documentation
Sends a phone verification request. See the documentation
Xverify uses API keys for authentication. When you connect your Xverify account, Pipedream securely stores the keys so you can easily authenticate to Xverify APIs in both code and no-code steps.