get_global_helper
Retrieve comprehensive details of a global helper by its ID, including Python code and usage information. Requires 'View Rules' permissions for access.
Instructions
Get detailed information about a Panther global helper by ID
Returns complete global helper information including Python body code and usage details.
Permissions:{'all_of': ['View Rules']}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
helper_id | Yes | The ID of the global helper to fetch |
Input Schema (JSON Schema)
{
"properties": {
"helper_id": {
"description": "The ID of the global helper to fetch",
"examples": [
"MyGlobalHelper",
"AWSUtilities",
"CrowdStrikeHelpers"
],
"title": "Helper Id",
"type": "string"
}
},
"required": [
"helper_id"
],
"type": "object"
}