get_variants
Retrieve product variant details by specifying a blueprint ID and print provider ID to access available options for customization and ordering on Printify's print-on-demand platform.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blueprintId | Yes | Blueprint ID | |
printProviderId | Yes | Print provider ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blueprintId": {
"description": "Blueprint ID",
"type": "string"
},
"printProviderId": {
"description": "Print provider ID",
"type": "string"
}
},
"required": [
"blueprintId",
"printProviderId"
],
"type": "object"
}