publish_product
Automate publishing of Printify product details including title, description, images, variants, and tags by specifying product ID and publish settings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
productId | Yes | Product ID | |
publishDetails | No | Publish details |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"productId": {
"description": "Product ID",
"type": "string"
},
"publishDetails": {
"additionalProperties": false,
"description": "Publish details",
"properties": {
"description": {
"default": true,
"description": "Publish description",
"type": "boolean"
},
"images": {
"default": true,
"description": "Publish images",
"type": "boolean"
},
"tags": {
"default": true,
"description": "Publish tags",
"type": "boolean"
},
"title": {
"default": true,
"description": "Publish title",
"type": "boolean"
},
"variants": {
"default": true,
"description": "Publish variants",
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"productId"
],
"type": "object"
}