With the Mailify API, you can build applications that allow users to:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailify: {
type: "app",
app: "mailify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://mailifyapis.com/v1/users`,
auth: {
username: `${this.mailify.$auth.account_number}`,
password: `${this.mailify.$auth.api_key}`,
},
})
},
})
Mailify uses API keys for authentication. When you connect your Mailify account, Pipedream securely stores the keys so you can easily authenticate to Mailify APIs in both code and no-code steps.
To retrieve your Account Number and API Key,