fluentcrm_list_webhooks
Retrieve webhooks configured in FluentCRM to monitor and manage automated data flows between your marketing platform and external applications.
Instructions
Pobiera webhooks
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/fluentcrm-mcp-server.ts:995-996 (handler)Executes the fluentcrm_list_webhooks tool by calling the client's listWebhooks method and returning the JSON-formatted response.case 'fluentcrm_list_webhooks': return { content: [{ type: 'text', text: JSON.stringify(await client.listWebhooks(), null, 2) }] };
- src/fluentcrm-mcp-server.ts:795-801 (registration)Registers the fluentcrm_list_webhooks tool in the MCP server's tools list, including its name, description, and empty input schema.name: 'fluentcrm_list_webhooks', description: 'Pobiera webhooks', inputSchema: { type: 'object', properties: {}, }, },
- src/fluentcrm-mcp-server.ts:284-287 (helper)FluentCRMClient helper method that performs the actual API GET request to '/webhooks' endpoint to retrieve the list of webhooks.async listWebhooks(params: any = {}) { const response = await this.apiClient.get('/webhooks', { params }); return response.data; }