Customer Skills
Customer skills let agents manage customer records for billing and payment contexts.
customer.create
Create a new customer.
{
"skill": "customer.create",
"input": {
"name": "Acme Corporation",
"email": "billing@acme.com",
"tel": "+1-555-0100",
"address": "123 Main St, New York, NY 10001"
}
}
customer.search
Search customers by name or email.
{
"skill": "customer.search",
"input": {
"query": "Acme",
"page": 1,
"pageSize": 20
}
}