get_customer
Retrieve current team or customer details including tier level, mascot configurations, and brand color settings from the Cuti-E admin platform.
Instructions
Get current team/customer info including tier, mascot settings, and brand color.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:469-472 (handler)The handler for 'get_customer' makes a GET request to '/v1/customer'.
case "get_customer": { result = await apiRequest("GET", "/v1/customer"); break; } - index.js:265-273 (registration)The tool definition for 'get_customer', defining its name and empty input schema.
{ name: "get_customer", description: "Get current team/customer info including tier, mascot settings, and brand color.", inputSchema: { type: "object", properties: {}, }, },