set_default
Configure default settings for options like 'model', 'aspectRatio', or 'raw' in the Printify MCP Server to streamline AI-driven product creation and design workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
option | Yes | The option name to set (e.g., 'model', 'aspectRatio', 'raw', etc.) | |
value | No | The value to set for the option |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"option": {
"description": "The option name to set (e.g., 'model', 'aspectRatio', 'raw', etc.)",
"type": "string"
},
"value": {
"description": "The value to set for the option"
}
},
"required": [
"option"
],
"type": "object"
}