lookup_customer
Find customer details including purchase history, loyalty points, and preferences using name, email, or phone number to support personalized service and business management.
Instructions
Find customer information by name, email, or phone. Returns purchase history, loyalty points, and preferences.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | Yes | Customer name, email, or phone number |
Input Schema (JSON Schema)
{
"properties": {
"identifier": {
"description": "Customer name, email, or phone number",
"type": "string"
}
},
"required": [
"identifier"
],
"type": "object"
}