list_recipients
Retrieve and filter notification recipients in a Honeycomb environment. This tool provides a detailed list of recipient names, types, targets, and metadata for effective notification management.
Instructions
Lists available recipients for notifications in a specific environment. This tool returns a list of all recipients available in the specified environment, including their names, types, targets, and metadata.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| environment | Yes | The Honeycomb environment | |
| limit | No | Number of items per page | |
| page | No | Page number (1-based) | |
| search | No | Search term to filter results | |
| search_fields | No | Fields to search in (string or array of strings) | |
| sort_by | No | Field to sort by | |
| sort_order | No | Sort direction | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "environment": {
      "description": "The Honeycomb environment",
      "minLength": 1,
      "type": "string"
    },
    "limit": {
      "description": "Number of items per page",
      "exclusiveMinimum": 0,
      "type": "integer"
    },
    "page": {
      "description": "Page number (1-based)",
      "exclusiveMinimum": 0,
      "type": "integer"
    },
    "search": {
      "description": "Search term to filter results",
      "type": "string"
    },
    "search_fields": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "items": {
            "minLength": 1,
            "type": "string"
          },
          "type": "array"
        }
      ],
      "description": "Fields to search in (string or array of strings)"
    },
    "sort_by": {
      "description": "Field to sort by",
      "type": "string"
    },
    "sort_order": {
      "description": "Sort direction",
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string"
    }
  },
  "required": [
    "environment"
  ],
  "type": "object"
}