with Catch-all Verifier and VerticalResponse?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
catch_all_verifier: {
type: "app",
app: "catch_all_verifier",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.catchallverifier.com/api/v1/verify/single`,
headers: {
"authorization": `${this.catch_all_verifier.$auth.api_key}`,
"accept": `application/json`,
},
params: {
id: `${this.catch_all_verifier.$auth.single_verification_id}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
verticalresponse: {
type: "app",
app: "verticalresponse",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://vrapi.verticalresponse.com/api/v1/contacts?type=basic`,
headers: {
Authorization: `Bearer ${this.verticalresponse.$auth.oauth_access_token}`,
},
})
},
})