/mailerlite | Type: Application | PCID required: Yes
Tools
mailerlite_assign_subscribers_groups
Assign subscriber to a group Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
subscriber_id | string | Yes | — | The subscriber id |
group_id | string | Yes | — | The group id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"subscriber_id": {
"type": "string",
"description": "The subscriber id"
},
"group_id": {
"type": "string",
"description": "The group id"
}
},
"required": [
"PCID",
"subscriber_id",
"group_id"
]
}
mailerlite_cancel_campaigns_cancel
Cancel a ready campaign Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
campaign_id | string | Yes | — | The campaign id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"campaign_id": {
"type": "string",
"description": "The campaign id"
}
},
"required": [
"PCID",
"campaign_id"
]
}
mailerlite_create_campaigns
Create a campaign Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
emails | object[] | No | — | Campaign email configurations |
name | string | No | — | Maximum string length of 255 characters |
type | string | No | — | Must be one of the following: regular, ab, resend. Type resend is only available for accounts on growing or advanced plans |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"emails": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subject": {
"type": "string",
"description": "Maximum string length of 255 characters"
},
"from_name": {
"type": "string",
"description": "Maximum string length of 255 characters"
},
"from": {
"type": "string",
"description": "Must be a valid email address that has been already verified on MailerLite"
}
}
},
"description": "Campaign email configurations"
},
"name": {
"type": "string",
"description": "Maximum string length of 255 characters"
},
"type": {
"type": "string",
"description": "Must be one of the following: regular, ab, resend. Type resend is only available for accounts on growing or advanced plans"
}
},
"required": [
"PCID"
]
}
mailerlite_create_fields
Create a field Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
name | string | No | — | Maximum length of 255 characters |
type | string | No | — | Can be text, number or date |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"name": {
"type": "string",
"description": "Maximum length of 255 characters"
},
"type": {
"type": "string",
"description": "Can be text, number or date"
}
},
"required": [
"PCID"
]
}
mailerlite_create_groups
Create a group Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | No | — | Maximum length of 255 characters |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"name": {
"type": "string",
"description": "Maximum length of 255 characters"
}
},
"required": [
"PCID"
]
}
mailerlite_create_subscribers
Create/upsert subscriber Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
email | string | No | — | Valid email address as per RFC 2821 |
fields | object | No | — | Subscriber fields. Keys are field names (e.g. name, last_name, company). |
groups | string[] | No | — | array must contain existing group ids. Subscriber can only be added to groups this way and will not be removed by omission |
ip_address | string | No | — | Must be a valid ip address |
opted_in_at | string | No | — | Must be a valid date in the format yyyy-MM-dd HH:mm:ss |
optin_ip | string | No | — | Must be a valid ip address |
status | string | No | — | Can be one of the following: active, unsubscribed, unconfirmed, bounced, junk |
subscribed_at | string | No | — | Must be a valid date in the format yyyy-MM-dd HH:mm:ss |
unsubscribed_at | string | No | — | Must be a valid date in the format yyyy-MM-dd HH:mm:ss |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"email": {
"type": "string",
"description": "Valid email address as per RFC 2821"
},
"fields": {
"type": "object",
"description": "Subscriber fields. Keys are field names (e.g. name, last_name, company)."
},
"groups": {
"type": "array",
"items": {
"type": "string"
},
"description": "array must contain existing group ids. Subscriber can only be added to groups this way and will not be removed by omission"
},
"ip_address": {
"type": "string",
"description": "Must be a valid ip address"
},
"opted_in_at": {
"type": "string",
"description": "Must be a valid date in the format yyyy-MM-dd HH:mm:ss"
},
"optin_ip": {
"type": "string",
"description": "Must be a valid ip address"
},
"status": {
"type": "string",
"description": "Can be one of the following: active, unsubscribed, unconfirmed, bounced, junk"
},
"subscribed_at": {
"type": "string",
"description": "Must be a valid date in the format yyyy-MM-dd HH:mm:ss"
},
"unsubscribed_at": {
"type": "string",
"description": "Must be a valid date in the format yyyy-MM-dd HH:mm:ss"
}
},
"required": [
"PCID"
]
}
mailerlite_create_webhooks
Create a webhook Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
events | string[] | No | — | Must be one of the events described in following table |
name | string | No | — | The name value |
url | string | No | — | The url value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"events": {
"type": "array",
"items": {
"type": "string"
},
"description": "Must be one of the events described in following table"
},
"name": {
"type": "string",
"description": "The name value"
},
"url": {
"type": "string",
"description": "The url value"
}
},
"required": [
"PCID"
]
}
mailerlite_delete_campaigns
Delete a campaign Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
campaign_id | string | Yes | — | The campaign id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"campaign_id": {
"type": "string",
"description": "The campaign id"
}
},
"required": [
"PCID",
"campaign_id"
]
}
mailerlite_delete_fields
Delete a field Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
field_id | string | Yes | — | The field id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"field_id": {
"type": "string",
"description": "The field id"
}
},
"required": [
"PCID",
"field_id"
]
}
mailerlite_delete_forms
Delete a form Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
form_id | string | Yes | — | The form id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"form_id": {
"type": "string",
"description": "The form id"
}
},
"required": [
"PCID",
"form_id"
]
}
mailerlite_delete_groups
Delete group Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
group_id | string | Yes | — | The group id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"group_id": {
"type": "string",
"description": "The group id"
}
},
"required": [
"PCID",
"group_id"
]
}
mailerlite_delete_segments
Delete segment Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
segment_id | string | Yes | — | The segment id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"segment_id": {
"type": "string",
"description": "The segment id"
}
},
"required": [
"PCID",
"segment_id"
]
}
mailerlite_delete_subscribers
Delete a subscriber Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
subscriber_id | string | Yes | — | The subscriber id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"subscriber_id": {
"type": "string",
"description": "The subscriber id"
}
},
"required": [
"PCID",
"subscriber_id"
]
}
mailerlite_delete_webhooks
Delete a webhook Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
webhook_id | string | Yes | — | The webhook id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"webhook_id": {
"type": "string",
"description": "The webhook id"
}
},
"required": [
"PCID",
"webhook_id"
]
}
mailerlite_get_automations
Get an automation Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
automation_id | string | Yes | — | The automation id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"automation_id": {
"type": "string",
"description": "The automation id"
}
},
"required": [
"PCID",
"automation_id"
]
}
mailerlite_get_automations_activity
Get the subscriber activity for an automation Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
filter[status] | string | No | — | Must be one of the following: completed, active, canceled, failed |
automation_id | string | Yes | — | The automation id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"filter[status]": {
"type": "string",
"description": "Must be one of the following: completed, active, canceled, failed"
},
"automation_id": {
"type": "string",
"description": "The automation id"
}
},
"required": [
"PCID",
"automation_id"
]
}
mailerlite_get_campaigns
Get a campaign Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
campaign_id | string | Yes | — | The campaign id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"campaign_id": {
"type": "string",
"description": "The campaign id"
}
},
"required": [
"PCID",
"campaign_id"
]
}
mailerlite_get_campaigns_reports_subscriber_activity
Get subscribers’ activity of a sent campaign Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
campaign_id | string | Yes | — | The campaign id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"campaign_id": {
"type": "string",
"description": "The campaign id"
}
},
"required": [
"PCID",
"campaign_id"
]
}
mailerlite_get_forms
Get a form Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
form_id | string | Yes | — | The form id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"form_id": {
"type": "string",
"description": "The form id"
}
},
"required": [
"PCID",
"form_id"
]
}
mailerlite_get_forms_popup
List all forms Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
}
},
"required": [
"PCID"
]
}
mailerlite_get_subscribers
Fetch a subscriber Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
subscriber_id | string | Yes | — | The subscriber id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"subscriber_id": {
"type": "string",
"description": "The subscriber id"
}
},
"required": [
"PCID",
"subscriber_id"
]
}
mailerlite_get_subscribers_import
Get single import Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
import_id | string | Yes | — | The import id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"import_id": {
"type": "string",
"description": "The import id"
}
},
"required": [
"PCID",
"import_id"
]
}
mailerlite_get_subscribers_stats
Get subscriber statistics Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
X-Locale | string | No | — | The x-locale value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"X-Locale": {
"type": "string",
"description": "The x-locale value"
}
},
"required": [
"PCID"
]
}
mailerlite_get_webhooks
Get a webhook Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
webhook_id | string | Yes | — | The webhook id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"webhook_id": {
"type": "string",
"description": "The webhook id"
}
},
"required": [
"PCID",
"webhook_id"
]
}
mailerlite_list_automations
List all automations Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
}
},
"required": [
"PCID"
]
}
mailerlite_list_campaigns
Campaigns list Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
}
},
"required": [
"PCID"
]
}
mailerlite_list_fields
List all fields Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
}
},
"required": [
"PCID"
]
}
mailerlite_list_forms_subscribers
Get subscribers who signed up to a specific form Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
form_id | string | Yes | — | The form id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"form_id": {
"type": "string",
"description": "The form id"
}
},
"required": [
"PCID",
"form_id"
]
}
mailerlite_list_groups
List all groupsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mailerlite_list_groups_subscribers
Get subscribers belonging to a group Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
group_id | string | Yes | — | The group id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"group_id": {
"type": "string",
"description": "The group id"
}
},
"required": [
"PCID",
"group_id"
]
}
mailerlite_list_segments
List all segmentsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mailerlite_list_segments_subscribers
Get subscribers belonging to a segment Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
segment_id | string | Yes | — | The segment id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"segment_id": {
"type": "string",
"description": "The segment id"
}
},
"required": [
"PCID",
"segment_id"
]
}
mailerlite_list_subscribers
Fetch total subscribers countShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
mailerlite_list_webhooks
List all webhooks Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
}
},
"required": [
"PCID"
]
}
mailerlite_schedule_campaigns_schedule
Schedule a campaign Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
campaign_id | string | Yes | — | The campaign id |
delivery | string | No | — | Must be one of the following: instant, scheduled, timezone_based |
resend | object | No | — | Resend configuration |
schedule | object | No | — | Schedule configuration |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"campaign_id": {
"type": "string",
"description": "The campaign id"
},
"delivery": {
"type": "string",
"description": "Must be one of the following: instant, scheduled, timezone_based"
},
"resend": {
"type": "object",
"description": "Resend configuration",
"properties": {
"delivery": {
"type": "string",
"description": "Must be Must be one of the following: day, scheduled"
},
"date": {
"type": "string",
"description": "Must be a date in the future"
},
"hours": {
"type": "string",
"description": "Must be a valid hour in HH format"
},
"minutes": {
"type": "string",
"description": "Must be a valid minute in ii format"
},
"timezone_id": {
"type": "string",
"description": "Must be a valid timezone id, defaults to the account's timezone id"
}
}
},
"schedule": {
"type": "object",
"description": "Schedule configuration",
"properties": {
"date": {
"type": "string",
"description": "Must be a date in the future"
},
"hours": {
"type": "string",
"description": "Must be a valid hour in HH format"
},
"minutes": {
"type": "string",
"description": "Must be a valid minute in ii format"
},
"timezone_id": {
"type": "string",
"description": "Must be a valid timezone id, defaults to the account's timezone id"
}
}
}
},
"required": [
"PCID",
"campaign_id"
]
}
mailerlite_unassign_subscribers_groups
Unassign subscriber from a group Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
subscriber_id | string | Yes | — | The subscriber id |
group_id | string | Yes | — | The group id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"subscriber_id": {
"type": "string",
"description": "The subscriber id"
},
"group_id": {
"type": "string",
"description": "The group id"
}
},
"required": [
"PCID",
"subscriber_id",
"group_id"
]
}
mailerlite_update_campaigns
Update campaign Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
campaign_id | string | Yes | — | The campaign id |
emails | object[] | No | — | Campaign email configurations |
name | string | No | — | Maximum string length of 255 characters |
type | string | No | — | Must be one of the following: regular, ab, resend. Type resend is only available for accounts on growing or advanced plans |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"campaign_id": {
"type": "string",
"description": "The campaign id"
},
"emails": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subject": {
"type": "string",
"description": "Maximum string length of 255 characters"
},
"from_name": {
"type": "string",
"description": "Maximum string length of 255 characters"
},
"from": {
"type": "string",
"description": "Must be a valid email address that has been already verified on MailerLite"
}
}
},
"description": "Campaign email configurations"
},
"name": {
"type": "string",
"description": "Maximum string length of 255 characters"
},
"type": {
"type": "string",
"description": "Must be one of the following: regular, ab, resend. Type resend is only available for accounts on growing or advanced plans"
}
},
"required": [
"PCID",
"campaign_id"
]
}
mailerlite_update_fields
Update a field Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
field_id | string | Yes | — | The field id |
name | string | No | — | Maximum length of 255 characters |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"field_id": {
"type": "string",
"description": "The field id"
},
"name": {
"type": "string",
"description": "Maximum length of 255 characters"
}
},
"required": [
"PCID",
"field_id"
]
}
mailerlite_update_forms
Update a form Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
form_id | string | Yes | — | The form id |
name | string | No | — | Maximum length of 255 characters |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"form_id": {
"type": "string",
"description": "The form id"
},
"name": {
"type": "string",
"description": "Maximum length of 255 characters"
}
},
"required": [
"PCID",
"form_id"
]
}
mailerlite_update_groups
Update a group Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
group_id | string | Yes | — | The group id |
name | string | No | — | New name for the group. Maximum length of 255 characters |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"group_id": {
"type": "string",
"description": "The group id"
},
"name": {
"type": "string",
"description": "New name for the group. Maximum length of 255 characters"
}
},
"required": [
"PCID",
"group_id"
]
}
mailerlite_update_segments
Update segment Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
segment_id | string | Yes | — | The segment id |
name | string | No | — | Maximum length of 255 characters |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"segment_id": {
"type": "string",
"description": "The segment id"
},
"name": {
"type": "string",
"description": "Maximum length of 255 characters"
}
},
"required": [
"PCID",
"segment_id"
]
}
mailerlite_update_webhooks
Update a webhook Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Content-Type | string | No | — | The content-type value |
webhook_id | string | Yes | — | The webhook id |
enabled | boolean | No | — | Whether the webhook is enabled |
events | string[] | No | — | Must be one of the events described in following table |
name | string | No | — | The name value |
url | string | No | — | The url value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
},
"webhook_id": {
"type": "string",
"description": "The webhook id"
},
"enabled": {
"type": "boolean",
"description": "Whether the webhook is enabled"
},
"events": {
"type": "array",
"items": {
"type": "string"
},
"description": "Must be one of the events described in following table"
},
"name": {
"type": "string",
"description": "The name value"
},
"url": {
"type": "string",
"description": "The url value"
}
},
"required": [
"PCID",
"webhook_id"
]
}

