← MixMax

Get Contacts with MixMax API

Pipedream makes it easy to connect APIs for MixMax and 2,000+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Get Contacts with the MixMax API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
4 min
Watch now ➜

Trusted by 800,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

Create a workflow to Get Contacts with the MixMax API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Get Contacts action
    1. Connect your MixMax account
    2. Optional- Select a Sort Field
    3. Optional- Configure Sort Ascending
    4. Optional- Configure Email
    5. Optional- Configure Name
    6. Optional- Select one or more Groups
    7. Optional- Configure Include Shared
    8. Optional- Select one or more Expand
    9. Optional- Configure With Analytics
    10. Optional- Select a Dates
    11. Optional- Configure Limit
    12. Optional- Select one or more Fields
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Get Contacts with MixMax API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + MixMax
 
Try it
Get Contacts with MixMax API on New Submission from Typeform API
Typeform + MixMax
 
Try it
Get Contacts with MixMax API on Custom Events from Zoom API
Zoom + MixMax
 
Try it
Get Contacts with MixMax API on New Submission (Instant) from Jotform API
Jotform + MixMax
 
Try it
Get Contacts with MixMax API on New Custom Webhook Events from Stripe API
Stripe + MixMax
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Get Contacts on MixMax
Description: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](https://developer.mixmax.com/reference/contacts)
Version:0.0.1
Key:mixmax-get-contacts

Code

import { ConfigurationError } from "@pipedream/platform";
import common from "../common/base.mjs";
import FIELDS from "../common/fields.mjs";

export default {
  ...common,
  key: "mixmax-get-contacts",
  name: "Get Contacts",
  description: "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](https://developer.mixmax.com/reference/contacts)",
  version: "0.0.1",
  type: "action",
  props: {
    ...common.props,
    sort: {
      type: "string",
      label: "Sort Field",
      description: "Sort by this field in order to get a list of results to then return in pages.",
      optional: true,
      options: FIELDS.SORTCONTACT,
    },
    sortAscending: {
      type: "boolean",
      label: "Sort Ascending",
      description: "True to sort ascending (A-Z).",
      optional: true,
    },
    email: {
      propDefinition: [
        common.props.mixmax,
        "email",
      ],
      optional: true,
    },
    name: {
      propDefinition: [
        common.props.mixmax,
        "name",
      ],
      optional: true,
    },
    groups: {
      propDefinition: [
        common.props.mixmax,
        "groups",
      ],
      withLabel: true,
      optional: true,
    },
    includeShared: {
      type: "boolean",
      label: "Include Shared",
      description: "True to include contacts shared with you. Can only be used when also using any filters due to current performance limitations.",
      optional: true,
    },
    expand: {
      type: "string[]",
      label: "Expand",
      description: "Fields to expand.",
      options: FIELDS.EXPAND,
      optional: true,
    },
    withAnalytics: {
      type: "boolean",
      label: "With Analytics",
      description: "Include analytics in the response",
      optional: true,
    },
    dates: {
      type: "string",
      label: "Dates",
      description: "A string describing the analytics date range.",
      reloadProps: true,
      options: FIELDS.DATES,
      optional: true,
    },
    limit: {
      propDefinition: [
        common.props.mixmax,
        "limit",
      ],
      optional: true,
    },
    fields: {
      propDefinition: [
        common.props.mixmax,
        "fields",
      ],
      options: FIELDS.CONTACT,
      optional: true,
    },
  },
  async additionalProps() {
    const props = {};
    if (this.dates) {
      props.timezoneOffset = {
        type: "integer",
        label: "Timezone Offset",
        description: "The client's timezone offset, in minutes. Used to determine date ranges.",
        optional: true,
      };

      if (this.dates === "specific") {
        props.since = {
          type: "string",
          label: "Since",
          description: "When dates is `specific`, the lower bound (in ms).",
          optional: true,
        };
        props.until = {
          type: "string",
          label: "Until",
          description: "When dates is `specific`, the upper bound (in ms).",
          optional: true,
        };
      }
    }
    return props;
  },
  methods: {
    async processEvent() {
      const {
        limit,
        sort,
        sortAscending,
        email,
        name,
        groups,
        includeShared,
        expand,
        withAnalytics,
        dates,
        timezoneOffset,
        since,
        until,
        fields,
      } = this;

      const search = [];
      if (email?.length) search.push(`email:${email.toString()}`);
      if (name) search.push(`name:${name}`);
      if (groups?.length) search.push(`group:${groups.map((group) => `"${group.label}"`).toString()}`);

      if (includeShared === true && !search.length) {
        throw new ConfigurationError("Either `email` or `name` or `groups` if using `includeShared=true`");
      }

      const items = this.mixmax.paginate({
        fn: this.mixmax.listContacts,
        maxResults: limit,
        params: {
          sort,
          sortAscending,
          search: search?.toString(),
          includeShared,
          expand: expand?.toString(),
          withAnalytics,
          dates,
          timezoneOffset,
          since,
          until,
          fields: fields?.toString(),
        },
      });

      const results = [];
      for await (const item of items) {
        results.push(item);
      }
      return results;
    },
    getSummary() {
      return "Contacts Successfully fetched!";
    },
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
MixMaxmixmaxappThis component uses the MixMax app.
Sort FieldsortstringSelect a value from the drop down menu:emailnametimestampusedCount
Sort AscendingsortAscendingboolean

True to sort ascending (A-Z).

Emailemailstring[]

Exact email required. Matches case-insensitively.

Namenamestring

Partial match on contact name. Matches case-insensitively. Only one name search operator supported.

Groupsgroupsstring[]Select a value from the drop down menu.
Include SharedincludeSharedboolean

True to include contacts shared with you. Can only be used when also using any filters due to current performance limitations.

Expandexpandstring[]Select a value from the drop down menu:firstNamelastNamegroupsnotessalesforce
With AnalyticswithAnalyticsboolean

Include analytics in the response

DatesdatesstringSelect a value from the drop down menu:todayyesterdaylast7thisWeeklastWeeklast30thisMonthlastMonthlast12MonthsthisYearlastYearallTimespecific
Limitlimitinteger

The number of results you'd like to get back. Defaults to 10.

Fieldsfieldsstring[]Select a value from the drop down menu:_iduserIdemailnametimestampusedCountcontactIdsalesforceIdanalyticslocked

Authentication

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,

  • Navigate to your MixMax account and sign in
  • Go to “Settings” > “Integrations” > “API”

About MixMax

The #1 Sales Engagement Platform for Gmail.

More Ways to Use MixMax

Triggers

New Contact from the MixMax API

Emit new event when a new contact is created. See docs here

 
Try it
New Contact Group from the MixMax API

Emit new event when a new contact group is created. See docs here

 
Try it

Actions

Create Contact with the MixMax API

Create one contact. See the docs here

 
Try it
Create Contact Group with the MixMax API

Create a contact group. See the docs here

 
Try it
Get Contact Groups with the MixMax API

Contact groups that you have access to (either that you have created, or that have been shared with you). See the docs here

 
Try it
Search Contacts with the MixMax API

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

 
Try it
Update Contact with the MixMax API

Update a specific contact. See the docs here

 
Try it

Explore Other Apps

1
-
24
of
2,000+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Salesforce (REST API)
Salesforce (REST API)
Web services API for interacting with Salesforce
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify Developer App
Shopify Developer App
Shopify is a user-friendly e-commerce platform that helps small businesses build an online store and sell online through one streamlined dashboard.
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Snowflake
Snowflake
A data warehouse built for the cloud
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.