tag-customer
Assign specified tags to a customer's profile using their unique ID, enabling better segmentation and organization within Shopify MCP Server.
Instructions
Add tags to a customer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customerId | Yes | Customer ID to tag | |
tags | Yes | Tags to add to the customer |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"customerId": {
"description": "Customer ID to tag",
"type": "string"
},
"tags": {
"description": "Tags to add to the customer",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"customerId",
"tags"
],
"type": "object"
}