import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
numverify: {
type: "app",
app: "numverify",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://apilayer.net/api/validate`,
params: {
access_key: `${this.numverify.$auth.api_key}`,
number: `14158586273`,
},
})
},
})
Validates a phone number. See the documentation
numverify uses API keys for authentication. When you connect your numverify account, Pipedream securely stores the keys so you can easily authenticate to numverify APIs in both code and no-code steps.