> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# mixmax

> Sales Engagement Platform

**Server path:** `/mixmax` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                        | Description                         |
| ------------------------------------------------------------------------------------------- | ----------------------------------- |
| [`mixmax_add_sequence_recipients`](#mixmax_add_sequence_recipients)                         | Add recipients to a sequence        |
| [`mixmax_check_appointment_link_availability`](#mixmax_check_appointment_link_availability) | Check appointment link availability |
| [`mixmax_create_code_snippet`](#mixmax_create_code_snippet)                                 | Create a code snippet               |
| [`mixmax_create_insights_report`](#mixmax_create_insights_report)                           | Create an insights report           |
| [`mixmax_create_live_feed_search`](#mixmax_create_live_feed_search)                         | Create a live feed search           |
| [`mixmax_create_message`](#mixmax_create_message)                                           | Create a draft message              |
| [`mixmax_delete_enhancement`](#mixmax_delete_enhancement)                                   | Delete an enhancement               |
| [`mixmax_get_code_snippet`](#mixmax_get_code_snippet)                                       | Get a code snippet                  |
| [`mixmax_get_enhancement`](#mixmax_get_enhancement)                                         | Get an enhancement                  |
| [`mixmax_get_file_request`](#mixmax_get_file_request)                                       | Get a file request                  |
| [`mixmax_get_live_feed`](#mixmax_get_live_feed)                                             | Get live feed                       |
| [`mixmax_get_live_feed_events`](#mixmax_get_live_feed_events)                               | Get live feed events                |
| [`mixmax_get_message`](#mixmax_get_message)                                                 | Get a message                       |
| [`mixmax_get_my_appointment_link`](#mixmax_get_my_appointment_link)                         | Get my appointment link             |
| [`mixmax_get_poll`](#mixmax_get_poll)                                                       | Get a poll                          |
| [`mixmax_get_user_info`](#mixmax_get_user_info)                                             | Get current user info               |
| [`mixmax_list_code_snippets`](#mixmax_list_code_snippets)                                   | List code snippets                  |
| [`mixmax_list_enhancements`](#mixmax_list_enhancements)                                     | List enhancements                   |
| [`mixmax_list_file_requests`](#mixmax_list_file_requests)                                   | List file requests                  |
| [`mixmax_list_insights_reports`](#mixmax_list_insights_reports)                             | List insights reports               |
| [`mixmax_list_integration_commands`](#mixmax_list_integration_commands)                     | List slash commands                 |
| [`mixmax_list_live_feed_searches`](#mixmax_list_live_feed_searches)                         | List live feed searches             |
| [`mixmax_list_meeting_types`](#mixmax_list_meeting_types)                                   | List meeting types                  |
| [`mixmax_list_messages`](#mixmax_list_messages)                                             | List messages                       |
| [`mixmax_list_polls`](#mixmax_list_polls)                                                   | List polls                          |
| [`mixmax_list_rules`](#mixmax_list_rules)                                                   | List rules                          |
| [`mixmax_list_sent_sequences`](#mixmax_list_sent_sequences)                                 | List sent sequence stats            |
| [`mixmax_list_sequence_recipients`](#mixmax_list_sequence_recipients)                       | List sequence recipients            |
| [`mixmax_list_sequences`](#mixmax_list_sequences)                                           | List sequences                      |
| [`mixmax_list_unsubscribes`](#mixmax_list_unsubscribes)                                     | List unsubscribes                   |
| [`mixmax_query_report_data`](#mixmax_query_report_data)                                     | Query report data                   |
| [`mixmax_send_message`](#mixmax_send_message)                                               | Send a message                      |
| [`mixmax_send_test_message`](#mixmax_send_test_message)                                     | Send a test message                 |
| [`mixmax_update_code_snippet`](#mixmax_update_code_snippet)                                 | Update a code snippet               |
| [`mixmax_update_insights_report`](#mixmax_update_insights_report)                           | Update an insights report           |
| [`mixmax_update_live_feed_search`](#mixmax_update_live_feed_search)                         | Update a live feed search           |
| [`mixmax_update_meeting_type`](#mixmax_update_meeting_type)                                 | Update a meeting type               |
| [`mixmax_update_message`](#mixmax_update_message)                                           | Update a message                    |
| [`mixmax_update_my_appointment_link`](#mixmax_update_my_appointment_link)                   | Update my appointment link          |

***

## mixmax\_add\_sequence\_recipients

Add recipients to a sequence

**Parameters:**

| Parameter    | Type      | Required | Default | Description                                        |
| ------------ | --------- | -------- | ------- | -------------------------------------------------- |
| `id`         | string    | Yes      | —       | The sequence ID.                                   |
| `recipients` | object\[] | Yes      | —       | Array of recipient objects to add to the sequence. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The sequence ID."
      },
      "recipients": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "The recipient's email address."
            },
            "variables": {
              "type": "object",
              "description": "Template variables to personalize the sequence for this recipient."
            }
          },
          "required": [
            "email"
          ]
        },
        "description": "Array of recipient objects to add to the sequence."
      }
    },
    "required": [
      "PCID",
      "id",
      "recipients"
    ]
  }
  ```
</Expandable>

***

## mixmax\_check\_appointment\_link\_availability

Check appointment link availability

**Parameters:**

| Parameter | Type   | Required | Default | Description                                       |
| --------- | ------ | -------- | ------- | ------------------------------------------------- |
| `name`    | string | Yes      | —       | The calendar link name to check availability for. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "name": {
        "type": "string",
        "description": "The calendar link name to check availability for."
      }
    },
    "required": [
      "PCID",
      "name"
    ]
  }
  ```
</Expandable>

***

## mixmax\_create\_code\_snippet

Create a code snippet

**Parameters:**

| Parameter    | Type   | Required | Default | Description                                          |
| ------------ | ------ | -------- | ------- | ---------------------------------------------------- |
| `background` | string | Yes      | —       | Background color in format rgb(0-255, 0-255, 0-255). |
| `html`       | string | Yes      | —       | The HTML of your code snippet.                       |
| `language`   | string | Yes      | —       | Programming language for syntax highlighting.        |
| `theme`      | string | Yes      | —       | Code editor theme.                                   |
| `title`      | string | No       | —       | Title of the code snippet.                           |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "background": {
        "type": "string",
        "description": "Background color in format rgb(0-255, 0-255, 0-255)."
      },
      "html": {
        "type": "string",
        "description": "The HTML of your code snippet."
      },
      "language": {
        "type": "string",
        "description": "Programming language for syntax highlighting."
      },
      "theme": {
        "type": "string",
        "description": "Code editor theme."
      },
      "title": {
        "type": "string",
        "description": "Title of the code snippet."
      }
    },
    "required": [
      "PCID",
      "background",
      "html",
      "language",
      "theme"
    ]
  }
  ```
</Expandable>

***

## mixmax\_create\_insights\_report

Create an insights report

**Parameters:**

| Parameter | Type   | Required | Default | Description          |
| --------- | ------ | -------- | ------- | -------------------- |
| `query`   | string | No       | —       | Report query string. |
| `title`   | string | No       | —       | Title of the report. |
| `type`    | string | Yes      | —       | Type of report.      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "query": {
        "type": "string",
        "description": "Report query string."
      },
      "title": {
        "type": "string",
        "description": "Title of the report."
      },
      "type": {
        "type": "string",
        "description": "Type of report.",
        "enum": [
          "messages",
          "meetings",
          "groups",
          "users",
          "sequences",
          "templates",
          "delegators",
          "customers"
        ]
      }
    },
    "required": [
      "PCID",
      "type"
    ]
  }
  ```
</Expandable>

***

## mixmax\_create\_live\_feed\_search

Create a live feed search

**Parameters:**

| Parameter | Type   | Required | Default | Description                                |
| --------- | ------ | -------- | ------- | ------------------------------------------ |
| `query`   | string | Yes      | —       | The query string that the search performs. |
| `title`   | string | No       | —       | Title of the saved search.                 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "query": {
        "type": "string",
        "description": "The query string that the search performs."
      },
      "title": {
        "type": "string",
        "description": "Title of the saved search."
      }
    },
    "required": [
      "PCID",
      "query"
    ]
  }
  ```
</Expandable>

***

## mixmax\_create\_message

Create a draft message

**Parameters:**

| Parameter              | Type      | Required | Default | Description                             |
| ---------------------- | --------- | -------- | ------- | --------------------------------------- |
| `bcc`                  | object\[] | No       | —       | Recipients in the BCC field.            |
| `body`                 | string    | No       | —       | The HTML body of the message.           |
| `cc`                   | object\[] | No       | —       | Recipients in the CC field.             |
| `fileTrackingEnabled`  | boolean   | No       | —       | Enable file download tracking.          |
| `inReplyTo`            | string    | No       | —       | Gmail message ID for threading replies. |
| `linkTrackingEnabled`  | boolean   | No       | —       | Enable link click tracking.             |
| `notificationsEnabled` | boolean   | No       | —       | Enable notifications.                   |
| `subject`              | string    | No       | —       | The message subject line.               |
| `to`                   | object\[] | No       | —       | Recipients in the To field.             |
| `trackingEnabled`      | boolean   | No       | —       | Enable open tracking.                   |
| `userHasModified`      | boolean   | No       | —       | Set to true to create a Gmail draft.    |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "bcc": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "The email value"
            },
            "name": {
              "type": "string",
              "description": "The name value"
            }
          }
        },
        "description": "Recipients in the BCC field."
      },
      "body": {
        "type": "string",
        "description": "The HTML body of the message."
      },
      "cc": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "The email value"
            },
            "name": {
              "type": "string",
              "description": "The name value"
            }
          }
        },
        "description": "Recipients in the CC field."
      },
      "fileTrackingEnabled": {
        "type": "boolean",
        "description": "Enable file download tracking."
      },
      "inReplyTo": {
        "type": "string",
        "description": "Gmail message ID for threading replies."
      },
      "linkTrackingEnabled": {
        "type": "boolean",
        "description": "Enable link click tracking."
      },
      "notificationsEnabled": {
        "type": "boolean",
        "description": "Enable notifications."
      },
      "subject": {
        "type": "string",
        "description": "The message subject line."
      },
      "to": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "The email value"
            },
            "name": {
              "type": "string",
              "description": "The name value"
            }
          }
        },
        "description": "Recipients in the To field."
      },
      "trackingEnabled": {
        "type": "boolean",
        "description": "Enable open tracking."
      },
      "userHasModified": {
        "type": "boolean",
        "description": "Set to true to create a Gmail draft."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_delete\_enhancement

Delete an enhancement

**Parameters:**

| Parameter | Type   | Required | Default | Description         |
| --------- | ------ | -------- | ------- | ------------------- |
| `id`      | string | Yes      | —       | The enhancement ID. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The enhancement ID."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_get\_code\_snippet

Get a code snippet

**Parameters:**

| Parameter | Type   | Required | Default | Description          |
| --------- | ------ | -------- | ------- | -------------------- |
| `id`      | string | Yes      | —       | The code snippet ID. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The code snippet ID."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_get\_enhancement

Get an enhancement

**Parameters:**

| Parameter | Type   | Required | Default | Description         |
| --------- | ------ | -------- | ------- | ------------------- |
| `id`      | string | Yes      | —       | The enhancement ID. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The enhancement ID."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_get\_file\_request

Get a file request

**Parameters:**

| Parameter | Type   | Required | Default | Description          |
| --------- | ------ | -------- | ------- | -------------------- |
| `id`      | string | Yes      | —       | The file request ID. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The file request ID."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_get\_live\_feed

Get live feed

**Parameters:**

| Parameter  | Type    | Required | Default | Description                                                                 |
| ---------- | ------- | -------- | ------- | --------------------------------------------------------------------------- |
| `query`    | string  | No       | —       | The query to execute. Takes the same format as queries in the live feed UI. |
| `timezone` | string  | No       | —       | RFC timezone descriptor (e.g. America/Los\_Angeles). Defaults to UTC.       |
| `limit`    | integer | No       | —       | Maximum number of results to return (max 10000). Default 50.                |
| `offset`   | integer | No       | —       | Offset for pagination. Default 0.                                           |
| `stats`    | boolean | No       | —       | Whether to return aggregate stats. Default true.                            |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "query": {
        "type": "string",
        "description": "The query to execute. Takes the same format as queries in the live feed UI."
      },
      "timezone": {
        "type": "string",
        "description": "RFC timezone descriptor (e.g. America/Los_Angeles). Defaults to UTC."
      },
      "limit": {
        "type": "integer",
        "description": "Maximum number of results to return (max 10000). Default 50."
      },
      "offset": {
        "type": "integer",
        "description": "Offset for pagination. Default 0."
      },
      "stats": {
        "type": "boolean",
        "description": "Whether to return aggregate stats. Default true."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_get\_live\_feed\_events

Get live feed events

**Parameters:**

| Parameter          | Type    | Required | Default | Description                               |
| ------------------ | ------- | -------- | ------- | ----------------------------------------- |
| `messageId`        | string  | No       | —       | The message ID to fetch events for.       |
| `contactEmail`     | string  | No       | —       | The contact email to fetch events for.    |
| `wasSentViaMixmax` | boolean | Yes      | —       | Whether the message was sent via Mixmax.  |
| `includeTeammates` | boolean | No       | —       | Whether to include events from teammates. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "messageId": {
        "type": "string",
        "description": "The message ID to fetch events for."
      },
      "contactEmail": {
        "type": "string",
        "description": "The contact email to fetch events for."
      },
      "wasSentViaMixmax": {
        "type": "boolean",
        "description": "Whether the message was sent via Mixmax."
      },
      "includeTeammates": {
        "type": "boolean",
        "description": "Whether to include events from teammates."
      }
    },
    "required": [
      "PCID",
      "wasSentViaMixmax"
    ]
  }
  ```
</Expandable>

***

## mixmax\_get\_message

Get a message

**Parameters:**

| Parameter | Type   | Required | Default | Description     |
| --------- | ------ | -------- | ------- | --------------- |
| `id`      | string | Yes      | —       | The message ID. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The message ID."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_get\_my\_appointment\_link

Get my appointment link

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_get\_poll

Get a poll

**Parameters:**

| Parameter | Type   | Required | Default | Description  |
| --------- | ------ | -------- | ------- | ------------ |
| `id`      | string | Yes      | —       | The poll ID. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The poll ID."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_get\_user\_info

Get current user info

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_code\_snippets

List code snippets

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_enhancements

List enhancements

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_file\_requests

List file requests

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_insights\_reports

List insights reports

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_integration\_commands

List slash commands

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_live\_feed\_searches

List live feed searches

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_meeting\_types

List meeting types

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_messages

List messages

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_polls

List polls

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_rules

List rules

**Parameters:**

| Parameter | Type   | Required | Default | Description                                        |
| --------- | ------ | -------- | ------- | -------------------------------------------------- |
| `expand`  | string | No       | —       | Pass 'actions' to return rule actions as an array. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "expand": {
        "type": "string",
        "description": "Pass 'actions' to return rule actions as an array."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_sent\_sequences

List sent sequence stats

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_sequence\_recipients

List sequence recipients

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                        |
| --------- | ------ | -------- | ------- | ------------------------------------------------------------------ |
| `id`      | string | Yes      | —       | The sequence ID.                                                   |
| `filter`  | string | No       | —       | Filter recipients by status (e.g. 'active', 'paused', 'finished'). |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The sequence ID."
      },
      "filter": {
        "type": "string",
        "description": "Filter recipients by status (e.g. 'active', 'paused', 'finished')."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_sequences

List sequences

**Parameters:**

| Parameter | Type   | Required | Default | Description                                                                                            |
| --------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------ |
| `name`    | string | No       | —       | Returns sequences that match this string.                                                              |
| `expand`  | string | No       | —       | Pass 'stages' to return information about the stages too.                                              |
| `folder`  | string | No       | —       | Filter by folder. Use 'shared' for shared sequences, 'personal' for personal, or a specific folder ID. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "name": {
        "type": "string",
        "description": "Returns sequences that match this string."
      },
      "expand": {
        "type": "string",
        "description": "Pass 'stages' to return information about the stages too."
      },
      "folder": {
        "type": "string",
        "description": "Filter by folder. Use 'shared' for shared sequences, 'personal' for personal, or a specific folder ID."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_list\_unsubscribes

List unsubscribes

**Parameters:**

| Parameter       | Type    | Required | Default | Description                                      |
| --------------- | ------- | -------- | ------- | ------------------------------------------------ |
| `sort`          | string  | No       | —       | Field to sort by: name, email, or createdAt.     |
| `sortAscending` | boolean | No       | —       | Sort in ascending order.                         |
| `next`          | string  | No       | —       | Pagination token for next page.                  |
| `previous`      | string  | No       | —       | Pagination token for previous page.              |
| `limit`         | integer | No       | —       | Maximum number of records to return. Default 50. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "sort": {
        "type": "string",
        "description": "Field to sort by: name, email, or createdAt.",
        "enum": [
          "name",
          "email",
          "createdAt"
        ]
      },
      "sortAscending": {
        "type": "boolean",
        "description": "Sort in ascending order."
      },
      "next": {
        "type": "string",
        "description": "Pagination token for next page."
      },
      "previous": {
        "type": "string",
        "description": "Pagination token for previous page."
      },
      "limit": {
        "type": "integer",
        "description": "Maximum number of records to return. Default 50."
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## mixmax\_query\_report\_data

Query report data

**Parameters:**

| Parameter  | Type    | Required | Default | Description                                                            |
| ---------- | ------- | -------- | ------- | ---------------------------------------------------------------------- |
| `fields`   | string  | No       | —       | Comma-delimited list of fields to return.                              |
| `groupBy`  | string  | No       | —       | Field to group results by.                                             |
| `limit`    | integer | No       | —       | Maximum number of results (max 10000). Default 1000.                   |
| `offset`   | integer | No       | —       | Offset for pagination. Default 0.                                      |
| `query`    | string  | No       | —       | Query string to filter results (e.g. 'sent:last30days from:everyone'). |
| `sortBy`   | string  | No       | —       | Field to sort results by.                                              |
| `sortDesc` | boolean | No       | —       | Sort in descending order. Default true.                                |
| `timezone` | string  | No       | —       | Client timezone. Default UTC.                                          |
| `type`     | string  | Yes      | —       | The type of data to query.                                             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "fields": {
        "type": "string",
        "description": "Comma-delimited list of fields to return."
      },
      "groupBy": {
        "type": "string",
        "description": "Field to group results by."
      },
      "limit": {
        "type": "integer",
        "description": "Maximum number of results (max 10000). Default 1000."
      },
      "offset": {
        "type": "integer",
        "description": "Offset for pagination. Default 0."
      },
      "query": {
        "type": "string",
        "description": "Query string to filter results (e.g. 'sent:last30days from:everyone')."
      },
      "sortBy": {
        "type": "string",
        "description": "Field to sort results by."
      },
      "sortDesc": {
        "type": "boolean",
        "description": "Sort in descending order. Default true."
      },
      "timezone": {
        "type": "string",
        "description": "Client timezone. Default UTC."
      },
      "type": {
        "type": "string",
        "description": "The type of data to query.",
        "enum": [
          "messages",
          "meetings",
          "sequences"
        ]
      }
    },
    "required": [
      "PCID",
      "type"
    ]
  }
  ```
</Expandable>

***

## mixmax\_send\_message

Send a message

**Parameters:**

| Parameter | Type   | Required | Default | Description                                    |
| --------- | ------ | -------- | ------- | ---------------------------------------------- |
| `id`      | string | Yes      | —       | The message ID to send.                        |
| `data`    | object | No       | —       | Message properties to update prior to sending. |
| `options` | object | No       | —       | Sending options.                               |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The message ID to send."
      },
      "data": {
        "type": "object",
        "description": "Message properties to update prior to sending."
      },
      "options": {
        "type": "object",
        "description": "Sending options."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_send\_test\_message

Send a test message

**Parameters:**

| Parameter | Type   | Required | Default | Description                           |
| --------- | ------ | -------- | ------- | ------------------------------------- |
| `body`    | string | Yes      | —       | The HTML body of the test message.    |
| `subject` | string | Yes      | —       | The subject line of the test message. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "body": {
        "type": "string",
        "description": "The HTML body of the test message."
      },
      "subject": {
        "type": "string",
        "description": "The subject line of the test message."
      }
    },
    "required": [
      "PCID",
      "body",
      "subject"
    ]
  }
  ```
</Expandable>

***

## mixmax\_update\_code\_snippet

Update a code snippet

**Parameters:**

| Parameter    | Type   | Required | Default | Description                                          |
| ------------ | ------ | -------- | ------- | ---------------------------------------------------- |
| `id`         | string | Yes      | —       | The code snippet ID to update.                       |
| `background` | string | No       | —       | Background color in format rgb(0-255, 0-255, 0-255). |
| `html`       | string | No       | —       | The HTML of your code snippet.                       |
| `language`   | string | No       | —       | Programming language for syntax highlighting.        |
| `theme`      | string | No       | —       | Code editor theme.                                   |
| `title`      | string | No       | —       | Title of the code snippet.                           |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The code snippet ID to update."
      },
      "background": {
        "type": "string",
        "description": "Background color in format rgb(0-255, 0-255, 0-255)."
      },
      "html": {
        "type": "string",
        "description": "The HTML of your code snippet."
      },
      "language": {
        "type": "string",
        "description": "Programming language for syntax highlighting."
      },
      "theme": {
        "type": "string",
        "description": "Code editor theme."
      },
      "title": {
        "type": "string",
        "description": "Title of the code snippet."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_update\_insights\_report

Update an insights report

**Parameters:**

| Parameter | Type   | Required | Default | Description             |
| --------- | ------ | -------- | ------- | ----------------------- |
| `id`      | string | Yes      | —       | The insights report ID. |
| `query`   | string | No       | —       | Report query string.    |
| `title`   | string | No       | —       | Title of the report.    |
| `type`    | string | No       | —       | Type of report.         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The insights report ID."
      },
      "query": {
        "type": "string",
        "description": "Report query string."
      },
      "title": {
        "type": "string",
        "description": "Title of the report."
      },
      "type": {
        "type": "string",
        "description": "Type of report.",
        "enum": [
          "messages",
          "meetings",
          "groups",
          "users",
          "sequences",
          "templates",
          "delegators",
          "customers"
        ]
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_update\_live\_feed\_search

Update a live feed search

**Parameters:**

| Parameter | Type   | Required | Default | Description                                |
| --------- | ------ | -------- | ------- | ------------------------------------------ |
| `id`      | string | Yes      | —       | The live feed search ID.                   |
| `query`   | string | No       | —       | The query string that the search performs. |
| `title`   | string | No       | —       | Title of the saved search.                 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The live feed search ID."
      },
      "query": {
        "type": "string",
        "description": "The query string that the search performs."
      },
      "title": {
        "type": "string",
        "description": "Title of the saved search."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_update\_meeting\_type

Update a meeting type

**Parameters:**

| Parameter     | Type    | Required | Default | Description                                           |
| ------------- | ------- | -------- | ------- | ----------------------------------------------------- |
| `id`          | string  | Yes      | —       | The meeting type ID.                                  |
| `buffer`      | integer | No       | —       | Buffer time between meetings in minutes (0-60).       |
| `daysFromNow` | object  | No       | —       | Time window for availability with start and end days. |
| `defaults`    | object  | No       | —       | Default calendar event properties.                    |
| `durationMin` | integer | No       | —       | Duration of the meeting in minutes.                   |
| `name`        | string  | No       | —       | The name of the meeting type.                         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The meeting type ID."
      },
      "buffer": {
        "type": "integer",
        "description": "Buffer time between meetings in minutes (0-60)."
      },
      "daysFromNow": {
        "type": "object",
        "description": "Time window for availability with start and end days.",
        "properties": {
          "start": {
            "type": "integer",
            "description": "The start value"
          },
          "end": {
            "type": "integer",
            "description": "The end value"
          }
        }
      },
      "defaults": {
        "type": "object",
        "description": "Default calendar event properties.",
        "properties": {
          "title": {
            "type": "string",
            "description": "The title value"
          },
          "location": {
            "type": "string",
            "description": "The location value"
          },
          "description": {
            "type": "string",
            "description": "The description value"
          }
        }
      },
      "durationMin": {
        "type": "integer",
        "description": "Duration of the meeting in minutes."
      },
      "name": {
        "type": "string",
        "description": "The name of the meeting type."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_update\_message

Update a message

**Parameters:**

| Parameter              | Type      | Required | Default | Description                             |
| ---------------------- | --------- | -------- | ------- | --------------------------------------- |
| `id`                   | string    | Yes      | —       | The message ID.                         |
| `bcc`                  | object\[] | No       | —       | Recipients in the BCC field.            |
| `body`                 | string    | No       | —       | The HTML body of the message.           |
| `cc`                   | object\[] | No       | —       | Recipients in the CC field.             |
| `fileTrackingEnabled`  | boolean   | No       | —       | Enable file download tracking.          |
| `inReplyTo`            | string    | No       | —       | Gmail message ID for threading replies. |
| `linkTrackingEnabled`  | boolean   | No       | —       | Enable link click tracking.             |
| `notificationsEnabled` | boolean   | No       | —       | Enable notifications.                   |
| `subject`              | string    | No       | —       | The message subject line.               |
| `to`                   | object\[] | No       | —       | Recipients in the To field.             |
| `trackingEnabled`      | boolean   | No       | —       | Enable open tracking.                   |
| `userHasModified`      | boolean   | No       | —       | Set to true to create a Gmail draft.    |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "string",
        "description": "The message ID."
      },
      "bcc": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "The email value"
            },
            "name": {
              "type": "string",
              "description": "The name value"
            }
          }
        },
        "description": "Recipients in the BCC field."
      },
      "body": {
        "type": "string",
        "description": "The HTML body of the message."
      },
      "cc": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "The email value"
            },
            "name": {
              "type": "string",
              "description": "The name value"
            }
          }
        },
        "description": "Recipients in the CC field."
      },
      "fileTrackingEnabled": {
        "type": "boolean",
        "description": "Enable file download tracking."
      },
      "inReplyTo": {
        "type": "string",
        "description": "Gmail message ID for threading replies."
      },
      "linkTrackingEnabled": {
        "type": "boolean",
        "description": "Enable link click tracking."
      },
      "notificationsEnabled": {
        "type": "boolean",
        "description": "Enable notifications."
      },
      "subject": {
        "type": "string",
        "description": "The message subject line."
      },
      "to": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "The email value"
            },
            "name": {
              "type": "string",
              "description": "The name value"
            }
          }
        },
        "description": "Recipients in the To field."
      },
      "trackingEnabled": {
        "type": "boolean",
        "description": "Enable open tracking."
      },
      "userHasModified": {
        "type": "boolean",
        "description": "Set to true to create a Gmail draft."
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## mixmax\_update\_my\_appointment\_link

Update my appointment link

**Parameters:**

| Parameter | Type   | Required | Default | Description                       |
| --------- | ------ | -------- | ------- | --------------------------------- |
| `name`    | string | Yes      | —       | The new calendar vanity URL name. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "name": {
        "type": "string",
        "description": "The new calendar vanity URL name."
      }
    },
    "required": [
      "PCID",
      "name"
    ]
  }
  ```
</Expandable>
