update_white_label
Modify white-label branding elements including name, description, domain, and color scheme for custom voice AI solutions.
Instructions
Update White Label details: name, description, domain and color
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| whitelabel_name | No | White label name | |
| whitelabel_description | No | White label description | |
| whitelabel_domain | No | White label domain | |
| whitelabel_color | No | White label color (hex code) |
Implementation Reference
- index.js:497-506 (handler)Handler for the 'update_white_label' tool: prepares a PATCH request to update user white label settings via the backend API.case 'update_white_label': url = `${this.baseUrl}/user`; method = 'PATCH'; body = { whitelabel_name: args.whitelabel_name, whitelabel_description: args.whitelabel_description, whitelabel_domain: args.whitelabel_domain, whitelabel_color: args.whitelabel_color }; break;
- index.js:51-63 (schema)Schema definition and registration of the 'update_white_label' tool in the ListTools response, including input schema for white label parameters.name: 'update_white_label', description: 'Update White Label details: name, description, domain and color', inputSchema: { type: 'object', properties: { whitelabel_name: { type: 'string', description: 'White label name' }, whitelabel_description: { type: 'string', description: 'White label description' }, whitelabel_domain: { type: 'string', description: 'White label domain' }, whitelabel_color: { type: 'string', description: 'White label color (hex code)' } }, required: [] } },