get_campaign_messages
Retrieve messages associated with a specific campaign using the campaign ID. This tool integrates with the Klaviyo MCP Server to access and manage marketing automation features efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to retrieve messages for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"campaign_id": {
"description": "ID of the campaign to retrieve messages for",
"type": "string"
}
},
"required": [
"campaign_id"
],
"type": "object"
}