get_list_templates
Retrieve customizable product templates for a Shopify store by specifying domain, limit, page, sort, and filter parameters to streamline e-commerce template management.
Instructions
Get list templates with shop domain
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | The filter | |
limit | No | The limit of the templates | |
page | No | The page number | |
shopDomain | No | The shop domain ends with .myshopify.com | |
sort | No | The sort order | updatedAt__desc |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"description": "The filter",
"format": "string__has__",
"type": "string"
},
"limit": {
"default": 5,
"description": "The limit of the templates",
"type": "number"
},
"page": {
"default": 1,
"description": "The page number",
"type": "number"
},
"shopDomain": {
"description": "The shop domain ends with .myshopify.com",
"type": "string"
},
"sort": {
"default": "updatedAt__desc",
"description": "The sort order",
"type": "string"
}
},
"type": "object"
}