honeycomb_marker_get
Retrieve detailed information about a specific marker using its dataset slug and marker ID to support precise data analysis and management.
Instructions
Get information about a specific marker
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasetSlug | Yes | Dataset slug the marker belongs to, or 'all' | |
markerId | Yes | Marker ID to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"datasetSlug": {
"description": "Dataset slug the marker belongs to, or 'all'",
"type": "string"
},
"markerId": {
"description": "Marker ID to retrieve",
"type": "string"
}
},
"required": [
"datasetSlug",
"markerId"
],
"type": "object"
}