get_dashboard_assistant
Retrieve the dashboard assistant for authenticated VoiceAI users to manage custom voice and AI chat integrations.
Instructions
Get the dashboard assistant for the authenticated user
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:591-593 (handler)Handler implementation in the executeTool switch statement: sets the API endpoint URL for fetching the dashboard assistant via GET request.case 'get_dashboard_assistant': url = `${this.baseUrl}/assistants/gohighlevel/dashboard`; break;
- index.js:288-296 (registration)Tool registration in the ListToolsRequestHandler response: defines name, description, and empty input schema.{ name: 'get_dashboard_assistant', description: 'Get the dashboard assistant for the authenticated user', inputSchema: { type: 'object', properties: {}, required: [] } },
- index.js:291-295 (schema)Input schema for the tool: accepts no parameters (empty object).inputSchema: { type: 'object', properties: {}, required: [] }