MixMax is a powerful email platform that lets you build rich email applications. With the MixMax API, you can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mixmax: {
type: "app",
app: "mixmax",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mixmax.com/v1/users/me`,
headers: {
"X-API-Token": `${this.mixmax.$auth.api_key}`,
},
})
},
})
Emit new event when a new contact group is created. See docs here
Contact groups that you have access to (either that you have created, or that have been shared with you). See the docs here
Lists all your Mixmax Contacts (ie people you've emailed using Mixmax). Does not currently return contacts shared with you via shared contact groups (a performance limitiation). See the docs here
Search for matching contacts. This API queries across different sources including mixmax, google directory, and salesforce (contacts, leads, accounts, and opportunities). See the docs here
MixMax uses API keys for authentication. When you connect your MixMax account, Pipedream securely stores the keys so you can easily authenticate to MixMax APIs in both code and no-code steps.
To retrieve your API key,