get-customers
Retrieve Shopify customer data with pagination support, using a limit and next page cursor to manage large datasets efficiently.
Instructions
Get shopify customers with pagination support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Limit of customers to return | |
next | No | Next page cursor |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Limit of customers to return",
"type": "number"
},
"next": {
"description": "Next page cursor",
"type": "string"
}
},
"type": "object"
}