get_blueprints
Retrieve product blueprints from Printify's print-on-demand platform using pagination. Specify the page number and limit to fetch structured data for efficient product management and design integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of blueprints per page | |
page | No | Page number |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 10,
"description": "Number of blueprints per page",
"type": "number"
},
"page": {
"default": 1,
"description": "Page number",
"type": "number"
}
},
"type": "object"
}