import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
maileroo: {
type: "app",
app: "maileroo",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.maileroo.$auth.api_key}`,
"email_address": `sergio@pipedream.com`,
}
return await axios($, {
method: "post",
url: `https://verify.maileroo.net/check`,
data,
})
},
})
Maileroo uses API keys for authentication. When you connect your Maileroo account, Pipedream securely stores the keys so you can easily authenticate to Maileroo APIs in both code and no-code steps.