get-customers
Retrieve customer data from Shopify using a search query and limit results for targeted insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
searchQuery | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 10,
"type": "number"
},
"searchQuery": {
"type": "string"
}
},
"type": "object"
}