list_contact_points
Retrieve Grafana notification contact points with filtering options to manage alert destinations and configurations.
Instructions
Lists Grafana notification contact points, returning a summary including UID, name, and type
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return | |
| name | No | Filter contact points by name |
Implementation Reference
- GrafanaClient helper method that performs the actual API call to fetch contact points from Grafana's /api/v1/provisioning/contact-points endpoint.
async listContactPoints(): Promise<any[]> { try { const response = await this.client.get('/api/v1/provisioning/contact-points'); return response.data; } catch (error) { this.handleError(error); } }