getProduct
Retrieve detailed product information using a unique product ID to access specific data through the Omnisend MCP Server for marketing platform integration.
Instructions
Retrieve detailed information about a specific product by its unique identifier.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
productId | Yes | Product ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"productId": {
"description": "Product ID",
"type": "string"
}
},
"required": [
"productId"
],
"type": "object"
}