get_image
Retrieve specific images by their unique ID using the Klaviyo MCP Server tool, designed for managing marketing automation resources efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the image to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "ID of the image to retrieve",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}