Mixmax Contact Groups API

Contact groups you own or that are shared with you — deprecated

Operations 8

GET /contactgroups List contact groups #
POST /contactgroups Create a contact group #
GET /contactgroups/{id} Fetch a specific contact group #
PUT /contactgroups/{id} Edit a contact group #
DELETE /contactgroups/{id} Delete a contact group #
GET /contactgroups/{id}/contacts List contact group membership #
POST /contactgroups/{id}/contacts Add a contact to a contact group #
DELETE /contactgroups/{id}/contacts/{contactId} Remove a contact from a contact group #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mixmax-contact-groups-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mixmax-contact-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mixmax REST Contact Groups API
  version: '1'
  description: The Mixmax REST API provides lightweight, real-time access to Mixmax data — contacts, contact groups and notes, sequences and their recipients, file requests, meeting summaries and transcripts, and snippet tags. It is optimized for real-time interactions and is explicitly not designed for bulk exports or high-volume data synchronization. Authentication is via an API token (X-API-Token header or apiToken query parameter) created under Settings > Integrations. Faithful capture of the documented reference at https://developer.mixmax.com/ — response schemas are intentionally left open where the provider does not publish them (no fabrication).
  contact:
    name: Mixmax Developer Support
    url: https://developer.mixmax.com/
  x-apievangelist:
    method: generated
    source: https://developer.mixmax.com/ (llms.txt + reference pages)
    generated: '2026-07-20'
servers:
- url: https://api.mixmax.com/v1
  description: Mixmax production REST API
security:
- apiToken: []
tags:
- name: Contact Groups
  description: Contact groups you own or that are shared with you — deprecated
paths:
  /contactgroups:
    get:
      operationId: listContactGroups
      summary: List contact groups
      description: Contact groups that you have access to (either that you have created, or that have been shared with you).
      deprecated: true
      tags:
      - Contact Groups
      responses:
        '200':
          description: Contact groups
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createContactGroup
      summary: Create a contact group
      deprecated: true
      tags:
      - Contact Groups
      responses:
        '200':
          description: Created contact group
        '401':
          $ref: '#/components/responses/Unauthorized'
  /contactgroups/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
      description: Contact group id
    get:
      operationId: getContactGroup
      summary: Fetch a specific contact group
      deprecated: true
      tags:
      - Contact Groups
      responses:
        '200':
          description: A contact group
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    put:
      operationId: updateContactGroup
      summary: Edit a contact group
      deprecated: true
      tags:
      - Contact Groups
      responses:
        '200':
          description: Updated contact group
        '401':
          $ref: '#/components/responses/Unauthorized'
    delete:
      operationId: deleteContactGroup
      summary: Delete a contact group
      deprecated: true
      tags:
      - Contact Groups
      responses:
        '200':
          description: Deleted
        '401':
          $ref: '#/components/responses/Unauthorized'
  /contactgroups/{id}/contacts:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
      description: Contact group id
    get:
      operationId: listContactGroupMembers
      summary: List contact group membership
      description: Returns membership for a contact group.
      deprecated: true
      tags:
      - Contact Groups
      responses:
        '200':
          description: Group membership
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: addContactGroupMember
      summary: Add a contact to a contact group
      description: Adds a Contact to a Contact Group. You must own the group to add contacts to it.
      deprecated: true
      tags:
      - Contact Groups
      responses:
        '200':
          description: Added
        '401':
          $ref: '#/components/responses/Unauthorized'
  /contactgroups/{id}/contacts/{contactId}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
      description: Contact group id
    - name: contactId
      in: path
      required: true
      schema:
        type: string
      description: Contact id
    delete:
      operationId: removeContactGroupMember
      summary: Remove a contact from a contact group
      deprecated: true
      tags:
      - Contact Groups
      responses:
        '200':
          description: Removed
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
    Unauthorized:
      description: Missing or invalid API token
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
  securitySchemes:
    apiToken:
      type: apiKey
      in: header
      name: X-API-Token
      description: API token created under Mixmax Settings > Integrations. May alternatively be supplied as the apiToken query-string parameter.