> ## 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.

# clicksend-email

> ClickSend Email

**Server path:** `/clicksend-email` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                                | Description                                    |
| ------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- |
| [`clicksend_email_allowed_email_address_get`](#clicksend_email_allowed_email_address_get)                           | Get all email addresses                        |
| [`clicksend_email_allowed_email_address_post`](#clicksend_email_allowed_email_address_post)                         | Create allowed Email Address                   |
| [`clicksend_email_campaign_get`](#clicksend_email_campaign_get)                                                     | Get specific email campaign                    |
| [`clicksend_email_campaign_history_export_get`](#clicksend_email_campaign_history_export_get)                       | Export specific email campaign history         |
| [`clicksend_email_campaign_history_get`](#clicksend_email_campaign_history_get)                                     | Get specific email campaign history            |
| [`clicksend_email_campaign_post`](#clicksend_email_campaign_post)                                                   | Send email campaign                            |
| [`clicksend_email_campaign_price_post`](#clicksend_email_campaign_price_post)                                       | Calculate email campaign price                 |
| [`clicksend_email_campaign_put`](#clicksend_email_campaign_put)                                                     | Edit email campaign                            |
| [`clicksend_email_campaigns_get`](#clicksend_email_campaigns_get)                                                   | Get all email campaigns                        |
| [`clicksend_email_cancel_email_campaign_put`](#clicksend_email_cancel_email_campaign_put)                           | Cancel email campaign                          |
| [`clicksend_email_delivery_receipt_automation_delete`](#clicksend_email_delivery_receipt_automation_delete)         | Delete email delivery receipt automation       |
| [`clicksend_email_delivery_receipt_automation_get`](#clicksend_email_delivery_receipt_automation_get)               | Get specific email delivery receipt automation |
| [`clicksend_email_delivery_receipt_automation_post`](#clicksend_email_delivery_receipt_automation_post)             | Create email delivery receipt automations      |
| [`clicksend_email_delivery_receipt_automation_put`](#clicksend_email_delivery_receipt_automation_put)               | Update email delivery receipt automation       |
| [`clicksend_email_delivery_receipt_automations_get`](#clicksend_email_delivery_receipt_automations_get)             | Get all email delivery receipt automations     |
| [`clicksend_email_history_export_get`](#clicksend_email_history_export_get)                                         | Export all Transactional Email history         |
| [`clicksend_email_history_get`](#clicksend_email_history_get)                                                       | Get all transactional email history            |
| [`clicksend_email_master_email_template_categories_get`](#clicksend_email_master_email_template_categories_get)     | Get all master email template categories       |
| [`clicksend_email_master_email_template_category_get`](#clicksend_email_master_email_template_category_get)         | Get specific master email template category    |
| [`clicksend_email_master_email_template_get`](#clicksend_email_master_email_template_get)                           | Get specific master email template             |
| [`clicksend_email_master_email_templates_get`](#clicksend_email_master_email_templates_get)                         | Get all master email templates                 |
| [`clicksend_email_master_email_templates_in_category_get`](#clicksend_email_master_email_templates_in_category_get) | Get all master email templates in a category   |
| [`clicksend_email_price_post`](#clicksend_email_price_post)                                                         | Get transactional email price                  |
| [`clicksend_email_send_post`](#clicksend_email_send_post)                                                           | Send transactional email                       |
| [`clicksend_email_send_verification_token_get`](#clicksend_email_send_verification_token_get)                       | Send verification token                        |
| [`clicksend_email_specific_allowed_email_address_delete`](#clicksend_email_specific_allowed_email_address_delete)   | Delete specific email address                  |
| [`clicksend_email_specific_allowed_email_address_get`](#clicksend_email_specific_allowed_email_address_get)         | Get specific email address                     |
| [`clicksend_email_template_delete`](#clicksend_email_template_delete)                                               | Delete user email template                     |
| [`clicksend_email_template_get`](#clicksend_email_template_get)                                                     | Get specific user email template               |
| [`clicksend_email_template_post`](#clicksend_email_template_post)                                                   | Create email template                          |
| [`clicksend_email_template_put`](#clicksend_email_template_put)                                                     | Update email template                          |
| [`clicksend_email_templates_get`](#clicksend_email_templates_get)                                                   | Get all user email templates                   |
| [`clicksend_email_verify_allowed_email_address_get`](#clicksend_email_verify_allowed_email_address_get)             | Verify email address using verification token  |

***

## clicksend\_email\_allowed\_email\_address\_get

Get all email addresses

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `page`    | integer | No       | —       | Page number                |
| `limit`   | integer | No       | —       | Number of records per page |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "limit": {
        "type": "integer",
        "description": "Number of records per page"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_allowed\_email\_address\_post

Create allowed Email Address

**Parameters:**

| Parameter       | Type   | Required | Default | Description          |
| --------------- | ------ | -------- | ------- | -------------------- |
| `email_address` | string | Yes      | —       | Email to be allowed. |

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

***

## clicksend\_email\_campaign\_get

Get specific email campaign

**Parameters:**

| Parameter           | Type    | Required | Default | Description               |
| ------------------- | ------- | -------- | ------- | ------------------------- |
| `email_campaign_id` | integer | Yes      | —       | Allowed email campaign id |

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

***

## clicksend\_email\_campaign\_history\_export\_get

Export specific email campaign history

**Parameters:**

| Parameter           | Type    | Required | Default | Description               |
| ------------------- | ------- | -------- | ------- | ------------------------- |
| `email_campaign_id` | integer | Yes      | —       | Allowed email campaign id |
| `date_from`         | integer | No       | —       | Start date                |
| `date_to`           | integer | No       | —       | End date                  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "email_campaign_id": {
        "type": "integer",
        "description": "Allowed email campaign id"
      },
      "date_from": {
        "type": "integer",
        "description": "Start date"
      },
      "date_to": {
        "type": "integer",
        "description": "End date"
      }
    },
    "required": [
      "PCID",
      "email_campaign_id"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_campaign\_history\_get

Get specific email campaign history

**Parameters:**

| Parameter           | Type    | Required | Default | Description                |
| ------------------- | ------- | -------- | ------- | -------------------------- |
| `email_campaign_id` | integer | Yes      | —       | Allowed email campaign id  |
| `date_from`         | integer | No       | —       | Start date                 |
| `date_to`           | integer | No       | —       | End date                   |
| `page`              | integer | No       | —       | Page number                |
| `limit`             | integer | No       | —       | Number of records per page |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "email_campaign_id": {
        "type": "integer",
        "description": "Allowed email campaign id"
      },
      "date_from": {
        "type": "integer",
        "description": "Start date"
      },
      "date_to": {
        "type": "integer",
        "description": "End date"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "limit": {
        "type": "integer",
        "description": "Number of records per page"
      }
    },
    "required": [
      "PCID",
      "email_campaign_id"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_campaign\_post

Send email campaign

**Parameters:**

| Parameter               | Type    | Required | Default | Description                   |
| ----------------------- | ------- | -------- | ------- | ----------------------------- |
| `body`                  | string  | Yes      | —       | Your campaign message.        |
| `from_email_address_id` | number  | Yes      | —       | The allowed email address id. |
| `from_name`             | string  | Yes      | —       | Your name or business name.   |
| `list_id`               | number  | Yes      | —       | Your contact list id.         |
| `name`                  | string  | Yes      | —       | Your campaign name.           |
| `schedule`              | integer | No       | —       | Your schedule timestamp.      |
| `subject`               | string  | Yes      | —       | Your campaign subject.        |
| `template_id`           | number  | No       | —       | Your template id.             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "body": {
        "type": "string",
        "description": "Your campaign message."
      },
      "from_email_address_id": {
        "type": "number",
        "description": "The allowed email address id."
      },
      "from_name": {
        "type": "string",
        "description": "Your name or business name."
      },
      "list_id": {
        "type": "number",
        "description": "Your contact list id."
      },
      "name": {
        "type": "string",
        "description": "Your campaign name."
      },
      "schedule": {
        "type": "integer",
        "description": "Your schedule timestamp."
      },
      "subject": {
        "type": "string",
        "description": "Your campaign subject."
      },
      "template_id": {
        "type": "number",
        "description": "Your template id."
      }
    },
    "required": [
      "PCID",
      "body",
      "from_email_address_id",
      "from_name",
      "list_id",
      "name",
      "subject"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_campaign\_price\_post

Calculate email campaign price

**Parameters:**

| Parameter               | Type    | Required | Default | Description                   |
| ----------------------- | ------- | -------- | ------- | ----------------------------- |
| `body`                  | string  | Yes      | —       | Your campaign message.        |
| `from_email_address_id` | number  | Yes      | —       | The allowed email address id. |
| `from_name`             | string  | Yes      | —       | Your name or business name.   |
| `list_id`               | number  | Yes      | —       | Your contact list id.         |
| `name`                  | string  | Yes      | —       | Your campaign name.           |
| `schedule`              | integer | No       | —       | Your schedule timestamp.      |
| `subject`               | string  | Yes      | —       | Your campaign subject.        |
| `template_id`           | number  | No       | —       | Your template id.             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "body": {
        "type": "string",
        "description": "Your campaign message."
      },
      "from_email_address_id": {
        "type": "number",
        "description": "The allowed email address id."
      },
      "from_name": {
        "type": "string",
        "description": "Your name or business name."
      },
      "list_id": {
        "type": "number",
        "description": "Your contact list id."
      },
      "name": {
        "type": "string",
        "description": "Your campaign name."
      },
      "schedule": {
        "type": "integer",
        "description": "Your schedule timestamp."
      },
      "subject": {
        "type": "string",
        "description": "Your campaign subject."
      },
      "template_id": {
        "type": "number",
        "description": "Your template id."
      }
    },
    "required": [
      "PCID",
      "body",
      "from_email_address_id",
      "from_name",
      "list_id",
      "name",
      "subject"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_campaign\_put

Edit email campaign

**Parameters:**

| Parameter               | Type    | Required | Default | Description                   |
| ----------------------- | ------- | -------- | ------- | ----------------------------- |
| `email_campaign_id`     | integer | Yes      | —       | Allowed email campaign id     |
| `body`                  | string  | Yes      | —       | Your campaign message.        |
| `from_email_address_id` | number  | Yes      | —       | The allowed email address id. |
| `from_name`             | string  | Yes      | —       | Your name or business name.   |
| `list_id`               | number  | Yes      | —       | Your contact list id.         |
| `name`                  | string  | Yes      | —       | Your campaign name.           |
| `schedule`              | integer | No       | —       | Your schedule timestamp.      |
| `subject`               | string  | Yes      | —       | Your campaign subject.        |
| `template_id`           | number  | No       | —       | Your template id.             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "email_campaign_id": {
        "type": "integer",
        "description": "Allowed email campaign id"
      },
      "body": {
        "type": "string",
        "description": "Your campaign message."
      },
      "from_email_address_id": {
        "type": "number",
        "description": "The allowed email address id."
      },
      "from_name": {
        "type": "string",
        "description": "Your name or business name."
      },
      "list_id": {
        "type": "number",
        "description": "Your contact list id."
      },
      "name": {
        "type": "string",
        "description": "Your campaign name."
      },
      "schedule": {
        "type": "integer",
        "description": "Your schedule timestamp."
      },
      "subject": {
        "type": "string",
        "description": "Your campaign subject."
      },
      "template_id": {
        "type": "number",
        "description": "Your template id."
      }
    },
    "required": [
      "PCID",
      "email_campaign_id",
      "body",
      "from_email_address_id",
      "from_name",
      "list_id",
      "name",
      "subject"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_campaigns\_get

Get all email campaigns

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `page`    | integer | No       | —       | Page number                |
| `limit`   | integer | No       | —       | Number of records per page |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "limit": {
        "type": "integer",
        "description": "Number of records per page"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_cancel\_email\_campaign\_put

Cancel email campaign

**Parameters:**

| Parameter           | Type    | Required | Default | Description               |
| ------------------- | ------- | -------- | ------- | ------------------------- |
| `email_campaign_id` | integer | Yes      | —       | Allowed email campaign id |

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

***

## clicksend\_email\_delivery\_receipt\_automation\_delete

Delete email delivery receipt automation

**Parameters:**

| Parameter         | Type    | Required | Default | Description     |
| ----------------- | ------- | -------- | ------- | --------------- |
| `receipt_rule_id` | integer | Yes      | —       | Receipt rule id |

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

***

## clicksend\_email\_delivery\_receipt\_automation\_get

Get specific email delivery receipt automation

**Parameters:**

| Parameter         | Type    | Required | Default | Description     |
| ----------------- | ------- | -------- | ------- | --------------- |
| `receipt_rule_id` | integer | Yes      | —       | Receipt rule id |

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

***

## clicksend\_email\_delivery\_receipt\_automation\_post

Create email delivery receipt automations

**Parameters:**

| Parameter        | Type   | Required | Default | Description                                                                                                                                                                                                                        |
| ---------------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `action`         | string | Yes      | —       | Action to be taken (AUTO\_REPLY, EMAIL\_USER, EMAIL\_FIXED, URL, SMS, POLL, GROUP\_SMS, MOVE\_CONTACT, CREATE\_CONTACT, CREATE\_CONTACT\_PLUS\_EMAIL, CREATE\_CONTACT\_PLUS\_NAME\_EMAIL CREATE\_CONTACT\_PLUS\_NAME, SMPP, NONE). |
| `action_address` | string | Yes      | —       | Action address.                                                                                                                                                                                                                    |
| `enabled`        | number | Yes      | —       | Enabled: Disabled=0 or Enabled=1.                                                                                                                                                                                                  |
| `match_type`     | number | Yes      | —       | Match Type. 0=All reports.                                                                                                                                                                                                         |
| `rule_name`      | string | Yes      | —       | Rule Name.                                                                                                                                                                                                                         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "action": {
        "type": "string",
        "description": "Action to be taken (AUTO_REPLY, EMAIL_USER, EMAIL_FIXED, URL, SMS, POLL, GROUP_SMS, MOVE_CONTACT, CREATE_CONTACT, CREATE_CONTACT_PLUS_EMAIL, CREATE_CONTACT_PLUS_NAME_EMAIL CREATE_CONTACT_PLUS_NAME, SMPP, NONE)."
      },
      "action_address": {
        "type": "string",
        "description": "Action address."
      },
      "enabled": {
        "type": "number",
        "description": "Enabled: Disabled=0 or Enabled=1."
      },
      "match_type": {
        "type": "number",
        "description": "Match Type. 0=All reports."
      },
      "rule_name": {
        "type": "string",
        "description": "Rule Name."
      }
    },
    "required": [
      "PCID",
      "action",
      "action_address",
      "enabled",
      "match_type",
      "rule_name"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_delivery\_receipt\_automation\_put

Update email delivery receipt automation

**Parameters:**

| Parameter         | Type    | Required | Default | Description                                                                                                                                                                                                                        |
| ----------------- | ------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `receipt_rule_id` | integer | Yes      | —       | Receipt rule id                                                                                                                                                                                                                    |
| `action`          | string  | Yes      | —       | Action to be taken (AUTO\_REPLY, EMAIL\_USER, EMAIL\_FIXED, URL, SMS, POLL, GROUP\_SMS, MOVE\_CONTACT, CREATE\_CONTACT, CREATE\_CONTACT\_PLUS\_EMAIL, CREATE\_CONTACT\_PLUS\_NAME\_EMAIL CREATE\_CONTACT\_PLUS\_NAME, SMPP, NONE). |
| `action_address`  | string  | Yes      | —       | Action address.                                                                                                                                                                                                                    |
| `enabled`         | number  | Yes      | —       | Enabled: Disabled=0 or Enabled=1.                                                                                                                                                                                                  |
| `match_type`      | number  | Yes      | —       | Match Type. 0=All reports.                                                                                                                                                                                                         |
| `rule_name`       | string  | Yes      | —       | Rule Name.                                                                                                                                                                                                                         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "receipt_rule_id": {
        "type": "integer",
        "description": "Receipt rule id"
      },
      "action": {
        "type": "string",
        "description": "Action to be taken (AUTO_REPLY, EMAIL_USER, EMAIL_FIXED, URL, SMS, POLL, GROUP_SMS, MOVE_CONTACT, CREATE_CONTACT, CREATE_CONTACT_PLUS_EMAIL, CREATE_CONTACT_PLUS_NAME_EMAIL CREATE_CONTACT_PLUS_NAME, SMPP, NONE)."
      },
      "action_address": {
        "type": "string",
        "description": "Action address."
      },
      "enabled": {
        "type": "number",
        "description": "Enabled: Disabled=0 or Enabled=1."
      },
      "match_type": {
        "type": "number",
        "description": "Match Type. 0=All reports."
      },
      "rule_name": {
        "type": "string",
        "description": "Rule Name."
      }
    },
    "required": [
      "PCID",
      "receipt_rule_id",
      "action",
      "action_address",
      "enabled",
      "match_type",
      "rule_name"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_delivery\_receipt\_automations\_get

Get all email delivery receipt automations

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `q`       | string  | No       | —       | Your keyword or query.     |
| `page`    | integer | No       | —       | Page number                |
| `limit`   | integer | No       | —       | Number of records per page |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "q": {
        "type": "string",
        "description": "Your keyword or query."
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "limit": {
        "type": "integer",
        "description": "Number of records per page"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_history\_export\_get

Export all Transactional Email history

**Parameters:**

| Parameter   | Type    | Required | Default | Description                     |
| ----------- | ------- | -------- | ------- | ------------------------------- |
| `filename`  | string  | Yes      | —       | Filename to download history as |
| `date_from` | integer | No       | —       | Start date                      |
| `date_to`   | integer | No       | —       | End date                        |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "filename": {
        "type": "string",
        "description": "Filename to download history as"
      },
      "date_from": {
        "type": "integer",
        "description": "Start date"
      },
      "date_to": {
        "type": "integer",
        "description": "End date"
      }
    },
    "required": [
      "PCID",
      "filename"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_history\_get

Get all transactional email history

**Parameters:**

| Parameter   | Type    | Required | Default | Description                |
| ----------- | ------- | -------- | ------- | -------------------------- |
| `date_from` | integer | No       | —       | Start date                 |
| `date_to`   | integer | No       | —       | End date                   |
| `page`      | integer | No       | —       | Page number                |
| `limit`     | integer | No       | —       | Number of records per page |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "date_from": {
        "type": "integer",
        "description": "Start date"
      },
      "date_to": {
        "type": "integer",
        "description": "End date"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "limit": {
        "type": "integer",
        "description": "Number of records per page"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_master\_email\_template\_categories\_get

Get all master email template categories

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `page`    | integer | No       | —       | Page number                |
| `limit`   | integer | No       | —       | Number of records per page |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "limit": {
        "type": "integer",
        "description": "Number of records per page"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_master\_email\_template\_category\_get

Get specific master email template category

**Parameters:**

| Parameter     | Type    | Required | Default | Description       |
| ------------- | ------- | -------- | ------- | ----------------- |
| `category_id` | integer | Yes      | —       | Email category id |

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

***

## clicksend\_email\_master\_email\_template\_get

Get specific master email template

**Parameters:**

| Parameter     | Type    | Required | Default | Description       |
| ------------- | ------- | -------- | ------- | ----------------- |
| `template_id` | integer | Yes      | —       | Email template id |

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

***

## clicksend\_email\_master\_email\_templates\_get

Get all master email templates

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `page`    | integer | No       | —       | Page number                |
| `limit`   | integer | No       | —       | Number of records per page |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "limit": {
        "type": "integer",
        "description": "Number of records per page"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_master\_email\_templates\_in\_category\_get

Get all master email templates in a category

**Parameters:**

| Parameter     | Type    | Required | Default | Description                |
| ------------- | ------- | -------- | ------- | -------------------------- |
| `category_id` | integer | Yes      | —       | Email category id          |
| `page`        | integer | No       | —       | Page number                |
| `limit`       | integer | No       | —       | Number of records per page |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "category_id": {
        "type": "integer",
        "description": "Email category id"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "limit": {
        "type": "integer",
        "description": "Number of records per page"
      }
    },
    "required": [
      "PCID",
      "category_id"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_price\_post

Get transactional email price

**Parameters:**

| Parameter     | Type      | Required | Default | Description                   |
| ------------- | --------- | -------- | ------- | ----------------------------- |
| `attachments` | object\[] | No       | —       | Array of Attachment items.    |
| `bcc`         | object\[] | No       | —       | Array of Bcc Recipient items. |
| `body`        | string    | Yes      | —       | Body of the email.            |
| `cc`          | object\[] | No       | —       | Array of Cc Recipient items.  |
| `from`        | object    | Yes      | —       | From Email object.            |
| `schedule`    | number    | No       | —       | Schedule.                     |
| `subject`     | string    | No       | —       | Subject of the email.         |
| `to`          | object\[] | Yes      | —       | Array of To Recipient items.  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "attachments": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "content": {
              "type": "string",
              "description": "The base64-encoded contents of the file."
            },
            "type": {
              "type": "string",
              "description": "The type of file being attached."
            },
            "filename": {
              "type": "string",
              "description": "The name of the file being attached."
            },
            "disposition": {
              "type": "string",
              "description": "Inline for content that can be displayed within the email, or attachment for any other files."
            },
            "content_id": {
              "type": "string",
              "description": "An ID for the content."
            }
          },
          "required": [
            "content",
            "content_id",
            "disposition",
            "filename",
            "type"
          ]
        },
        "description": "Array of Attachment items."
      },
      "bcc": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "Email of the recipient."
            },
            "name": {
              "type": "string",
              "description": "Name of the recipient."
            }
          },
          "required": [
            "email"
          ]
        },
        "description": "Array of Bcc Recipient items."
      },
      "body": {
        "type": "string",
        "description": "Body of the email."
      },
      "cc": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "Email of the recipient."
            },
            "name": {
              "type": "string",
              "description": "Name of the recipient."
            }
          },
          "required": [
            "email"
          ]
        },
        "description": "Array of Cc Recipient items."
      },
      "from": {
        "type": "object",
        "description": "From Email object.",
        "properties": {
          "email_address_id": {
            "type": "string",
            "description": "Email address id of the verified sender."
          },
          "name": {
            "type": "string",
            "description": "Name of the sender."
          }
        },
        "required": [
          "email_address_id"
        ]
      },
      "schedule": {
        "type": "number",
        "description": "Schedule."
      },
      "subject": {
        "type": "string",
        "description": "Subject of the email."
      },
      "to": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "Email of the recipient."
            },
            "name": {
              "type": "string",
              "description": "Name of the recipient."
            }
          },
          "required": [
            "email"
          ]
        },
        "description": "Array of To Recipient items."
      }
    },
    "required": [
      "PCID",
      "body",
      "from",
      "to"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_send\_post

Send transactional email

**Parameters:**

| Parameter     | Type      | Required | Default | Description                   |
| ------------- | --------- | -------- | ------- | ----------------------------- |
| `attachments` | object\[] | No       | —       | Array of Attachment items.    |
| `bcc`         | object\[] | No       | —       | Array of Bcc Recipient items. |
| `body`        | string    | Yes      | —       | Body of the email.            |
| `cc`          | object\[] | No       | —       | Array of Cc Recipient items.  |
| `from`        | object    | Yes      | —       | From Email object.            |
| `schedule`    | number    | No       | —       | Schedule.                     |
| `subject`     | string    | No       | —       | Subject of the email.         |
| `to`          | object\[] | Yes      | —       | Array of To Recipient items.  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "attachments": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "content": {
              "type": "string",
              "description": "The base64-encoded contents of the file."
            },
            "type": {
              "type": "string",
              "description": "The type of file being attached."
            },
            "filename": {
              "type": "string",
              "description": "The name of the file being attached."
            },
            "disposition": {
              "type": "string",
              "description": "Inline for content that can be displayed within the email, or attachment for any other files."
            },
            "content_id": {
              "type": "string",
              "description": "An ID for the content."
            }
          },
          "required": [
            "content",
            "content_id",
            "disposition",
            "filename",
            "type"
          ]
        },
        "description": "Array of Attachment items."
      },
      "bcc": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "Email of the recipient."
            },
            "name": {
              "type": "string",
              "description": "Name of the recipient."
            }
          },
          "required": [
            "email"
          ]
        },
        "description": "Array of Bcc Recipient items."
      },
      "body": {
        "type": "string",
        "description": "Body of the email."
      },
      "cc": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "Email of the recipient."
            },
            "name": {
              "type": "string",
              "description": "Name of the recipient."
            }
          },
          "required": [
            "email"
          ]
        },
        "description": "Array of Cc Recipient items."
      },
      "from": {
        "type": "object",
        "description": "From Email object.",
        "properties": {
          "email_address_id": {
            "type": "string",
            "description": "Email address id of the verified sender."
          },
          "name": {
            "type": "string",
            "description": "Name of the sender."
          }
        },
        "required": [
          "email_address_id"
        ]
      },
      "schedule": {
        "type": "number",
        "description": "Schedule."
      },
      "subject": {
        "type": "string",
        "description": "Subject of the email."
      },
      "to": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "Email of the recipient."
            },
            "name": {
              "type": "string",
              "description": "Name of the recipient."
            }
          },
          "required": [
            "email"
          ]
        },
        "description": "Array of To Recipient items."
      }
    },
    "required": [
      "PCID",
      "body",
      "from",
      "to"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_send\_verification\_token\_get

Send verification token

**Parameters:**

| Parameter          | Type    | Required | Default | Description              |
| ------------------ | ------- | -------- | ------- | ------------------------ |
| `email_address_id` | integer | Yes      | —       | Allowed email address id |

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

***

## clicksend\_email\_specific\_allowed\_email\_address\_delete

Delete specific email address

**Parameters:**

| Parameter          | Type    | Required | Default | Description              |
| ------------------ | ------- | -------- | ------- | ------------------------ |
| `email_address_id` | integer | Yes      | —       | Allowed email address id |

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

***

## clicksend\_email\_specific\_allowed\_email\_address\_get

Get specific email address

**Parameters:**

| Parameter          | Type    | Required | Default | Description              |
| ------------------ | ------- | -------- | ------- | ------------------------ |
| `email_address_id` | integer | Yes      | —       | Allowed email address id |

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

***

## clicksend\_email\_template\_delete

Delete user email template

**Parameters:**

| Parameter     | Type    | Required | Default | Description       |
| ------------- | ------- | -------- | ------- | ----------------- |
| `template_id` | integer | Yes      | —       | Email template id |

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

***

## clicksend\_email\_template\_get

Get specific user email template

**Parameters:**

| Parameter     | Type    | Required | Default | Description       |
| ------------- | ------- | -------- | ------- | ----------------- |
| `template_id` | integer | Yes      | —       | Email template id |

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

***

## clicksend\_email\_template\_post

Create email template

**Parameters:**

| Parameter            | Type   | Required | Default | Description                                        |
| -------------------- | ------ | -------- | ------- | -------------------------------------------------- |
| `template_id_master` | number | Yes      | —       | The ID of the master template you want to base on. |
| `template_name`      | string | Yes      | —       | The intended name for the new template.            |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "template_id_master": {
        "type": "number",
        "description": "The ID of the master template you want to base on."
      },
      "template_name": {
        "type": "string",
        "description": "The intended name for the new template."
      }
    },
    "required": [
      "PCID",
      "template_id_master",
      "template_name"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_template\_put

Update email template

**Parameters:**

| Parameter       | Type    | Required | Default | Description                         |
| --------------- | ------- | -------- | ------- | ----------------------------------- |
| `template_id`   | integer | Yes      | —       | Email template id                   |
| `body`          | string  | Yes      | —       | Your template body.                 |
| `template_name` | string  | No       | —       | The intended name for the template. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "template_id": {
        "type": "integer",
        "description": "Email template id"
      },
      "body": {
        "type": "string",
        "description": "Your template body."
      },
      "template_name": {
        "type": "string",
        "description": "The intended name for the template."
      }
    },
    "required": [
      "PCID",
      "template_id",
      "body"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_templates\_get

Get all user email templates

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `page`    | integer | No       | —       | Page number                |
| `limit`   | integer | No       | —       | Number of records per page |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "limit": {
        "type": "integer",
        "description": "Number of records per page"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## clicksend\_email\_verify\_allowed\_email\_address\_get

Verify email address using verification token

**Parameters:**

| Parameter          | Type    | Required | Default | Description              |
| ------------------ | ------- | -------- | ------- | ------------------------ |
| `email_address_id` | integer | Yes      | —       | Allowed email address id |
| `activation_token` | string  | Yes      | —       | Your activation token.   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "email_address_id": {
        "type": "integer",
        "description": "Allowed email address id"
      },
      "activation_token": {
        "type": "string",
        "description": "Your activation token."
      }
    },
    "required": [
      "PCID",
      "email_address_id",
      "activation_token"
    ]
  }
  ```
</Expandable>
