get_catalog_items
Retrieve catalog items from the Klaviyo MCP Server using a catalog ID, filter query, pagination cursor, and page size. Efficiently manage and access product data for marketing automation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
catalog_id | Yes | ID of the catalog | |
filter | No | Filter query for catalog items | |
page_cursor | No | Cursor for pagination | |
page_size | No | Number of items per page (1-100) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"catalog_id": {
"description": "ID of the catalog",
"type": "string"
},
"filter": {
"description": "Filter query for catalog items",
"type": "string"
},
"page_cursor": {
"description": "Cursor for pagination",
"type": "string"
},
"page_size": {
"description": "Number of items per page (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"catalog_id"
],
"type": "object"
}