/clicksend-email | Type: Application | PCID required: Yes
Tools
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
clicksend_email_allowed_email_address_post
Create allowed Email Address Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
email_address | string | Yes | — | Email to be allowed. |
Show inputSchema
Show inputSchema
{
"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"
]
}
clicksend_email_campaign_get
Get specific email campaign Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
email_campaign_id | integer | Yes | — | Allowed email campaign id |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
clicksend_email_cancel_email_campaign_put
Cancel email campaign Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
email_campaign_id | integer | Yes | — | Allowed email campaign id |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
clicksend_email_master_email_template_get
Get specific master email template Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
template_id | integer | Yes | — | Email template id |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
clicksend_email_send_verification_token_get
Send verification token Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
email_address_id | integer | Yes | — | Allowed email address id |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
clicksend_email_template_delete
Delete user email template Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
template_id | integer | Yes | — | Email template id |
Show inputSchema
Show inputSchema
{
"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"
]
}
clicksend_email_template_get
Get specific user email template Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
template_id | integer | Yes | — | Email template id |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}
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 |
Show inputSchema
Show inputSchema
{
"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"
]
}
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}

