with WooDelivery and EmailVerify.io?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
woodelivery: {
type: "app",
app: "woodelivery",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.woodelivery.com/v2/auth/test`,
headers: {
"accept": `application/json`,
"content-type": `application/json`,
"authorization": `Basic ${this.woodelivery.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
emailverify_io: {
type: "app",
app: "emailverify_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.emailverify.io/api/v1/validate`,
params: {
key: `${this.emailverify_io.$auth.api_key}`,
email: `integrations@pipedream.com`,
},
})
},
})