with BenchmarkONE and numverify?
Emit new event when a webhook automation step is triggered in BenchmarkONE.
Adds a note to a BenchmarkONE contact. See the documentation
Adds tags to a contact. If the contact does not exist, it will be created first. See the documentation
Creates a new contact in BenchmarkONE. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
benchmarkone: {
type: "app",
app: "benchmarkone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hatchbuck.com/api/v1/settings/source`,
params: {
api_key: `${this.benchmarkone.$auth.api_key}`,
},
})
},
})
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`,
},
})
},
})