create_product_campaign
Generate multi-post campaigns to promote specific art supply products or collections across Facebook and Instagram platforms.
Instructions
Create a multi-post campaign to promote a specific product or collection across platforms.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | Yes | Campaign duration in days | |
platforms | Yes | Platforms: facebook, instagram, or both | |
productSku | Yes | Product SKU to promote |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"description": "Campaign duration in days",
"type": "number"
},
"platforms": {
"description": "Platforms: facebook, instagram, or both",
"type": "string"
},
"productSku": {
"description": "Product SKU to promote",
"type": "string"
}
},
"required": [
"productSku",
"duration",
"platforms"
],
"type": "object"
}