deleteProduct
Remove a product from the Omnisend catalog using its unique ID. This tool helps maintain accurate product listings by deleting outdated or unwanted items.
Instructions
Remove a product from the Omnisend catalog 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"
}