/mixmax | Type: Application | PCID required: Yes
Tools
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
mixmax_delete_enhancement
Delete an enhancement Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The enhancement ID. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The enhancement ID."
}
},
"required": [
"PCID",
"id"
]
}
mixmax_get_code_snippet
Get a code snippet Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The code snippet ID. |
Show inputSchema
Show inputSchema
{
"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"
]
}
mixmax_get_enhancement
Get an enhancement Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The enhancement ID. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The enhancement ID."
}
},
"required": [
"PCID",
"id"
]
}
mixmax_get_file_request
Get a file request Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The file request ID. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
mixmax_get_message
Get a message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The message ID. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The message ID."
}
},
"required": [
"PCID",
"id"
]
}
mixmax_get_my_appointment_link
Get my appointment linkShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_get_poll
Get a poll Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | — | The poll ID. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"id": {
"type": "string",
"description": "The poll ID."
}
},
"required": [
"PCID",
"id"
]
}
mixmax_get_user_info
Get current user infoShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_list_code_snippets
List code snippetsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_list_enhancements
List enhancementsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_list_file_requests
List file requestsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_list_insights_reports
List insights reportsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_list_integration_commands
List slash commandsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_list_live_feed_searches
List live feed searchesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_list_meeting_types
List meeting typesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_list_messages
List messagesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_list_polls
List pollsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mixmax_list_rules
List rules Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
expand | string | No | — | Pass ‘actions’ to return rule actions as an array. |
Show inputSchema
Show inputSchema
{
"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"
]
}
mixmax_list_sent_sequences
List sent sequence statsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
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’). |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
mixmax_update_my_appointment_link
Update my appointment link Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | — | The new calendar vanity URL name. |
Show inputSchema
Show inputSchema
{
"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"
]
}

