productivity
FireHydrant CLI for AI Agents
Use the FireHydrant CLI from KosmoKrator to call FireHydrant tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.FireHydrant CLI Setup
FireHydrant can be configured headlessly with `kosmokrator integrations:configure firehydrant`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure firehydrant --set api_token="$FIREHYDRANT_API_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor firehydrant --json
kosmokrator integrations:status --json Credentials
Authentication type: API token api_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
api_token | FIREHYDRANT_API_TOKEN | Secret secret | yes | API Token |
url | FIREHYDRANT_URL | URL url | no | API Base URL |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call firehydrant.firehydrant_ping '{}' --json kosmo integrations:firehydrant firehydrant_ping '{}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs firehydrant --json
kosmo integrations:docs firehydrant.firehydrant_ping --json
kosmo integrations:schema firehydrant.firehydrant_ping --json
kosmo integrations:search "FireHydrant" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
firehydrant.firehydrant_ping
Check API connectivity Official FireHydrant endpoint: GET /v1/ping Simple endpoint to verify your API connection is working
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_ping '{}' --json kosmo integrations:firehydrant firehydrant_ping '{}' --json firehydrant.firehydrant_list_environments
List environments Official FireHydrant endpoint: GET /v1/environments List all of the environments that have been added to the organiation
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_environments '{}' --json kosmo integrations:firehydrant firehydrant_list_environments '{}' --json firehydrant.firehydrant_create_environment
Create an environment Official FireHydrant endpoint: POST /v1/environments Creates an environment for the organization
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_environment '{}' --json kosmo integrations:firehydrant firehydrant_create_environment '{}' --json firehydrant.firehydrant_get_environment
Get an environment Official FireHydrant endpoint: GET /v1/environments/{environment_id} Retrieves a single environment by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_environment '{}' --json kosmo integrations:firehydrant firehydrant_get_environment '{}' --json firehydrant.firehydrant_update_environment
Update an environment Official FireHydrant endpoint: PATCH /v1/environments/{environment_id} Update a environments attributes
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_environment '{}' --json kosmo integrations:firehydrant firehydrant_update_environment '{}' --json firehydrant.firehydrant_delete_environment
Archive an environment Official FireHydrant endpoint: DELETE /v1/environments/{environment_id} Archive an environment
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_environment '{}' --json kosmo integrations:firehydrant firehydrant_delete_environment '{}' --json firehydrant.firehydrant_list_environment_services
List services for an environment Official FireHydrant endpoint: GET /v1/environments/{environment_id}/services List services for an environment
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_environment_services '{}' --json kosmo integrations:firehydrant firehydrant_list_environment_services '{}' --json firehydrant.firehydrant_list_environment_functionalities
List functionalities for an environment Official FireHydrant endpoint: GET /v1/environments/{environment_id}/functionalities List functionalities for an environment
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_environment_functionalities '{}' --json kosmo integrations:firehydrant firehydrant_list_environment_functionalities '{}' --json firehydrant.firehydrant_list_services
List services Official FireHydrant endpoint: GET /v1/services List all of the services that have been added to the organization.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_services '{}' --json kosmo integrations:firehydrant firehydrant_list_services '{}' --json firehydrant.firehydrant_create_service
Create a service Official FireHydrant endpoint: POST /v1/services Creates a service for the organization, you may also create or attach functionalities to the service on create.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_service '{}' --json kosmo integrations:firehydrant firehydrant_create_service '{}' --json firehydrant.firehydrant_create_service_links
Create multiple services linked to external services Official FireHydrant endpoint: POST /v1/services/service_links Creates a service with the appropriate integration for each external service ID passed
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_service_links '{}' --json kosmo integrations:firehydrant firehydrant_create_service_links '{}' --json firehydrant.firehydrant_get_service
Get a service Official FireHydrant endpoint: GET /v1/services/{service_id} Retrieves a single service by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_service '{}' --json kosmo integrations:firehydrant firehydrant_get_service '{}' --json firehydrant.firehydrant_update_service
Update a service Official FireHydrant endpoint: PATCH /v1/services/{service_id} Update a services attributes, you may also add or remove functionalities from the service as well. Note: You may not remove or add individual label key/value pa
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_service '{}' --json kosmo integrations:firehydrant firehydrant_update_service '{}' --json firehydrant.firehydrant_delete_service
Delete a service Official FireHydrant endpoint: DELETE /v1/services/{service_id} Deletes the service from FireHydrant.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_service '{}' --json kosmo integrations:firehydrant firehydrant_delete_service '{}' --json firehydrant.firehydrant_list_service_environments
List environments for a service Official FireHydrant endpoint: GET /v1/services/{service_id}/environments List environments for a service
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_service_environments '{}' --json kosmo integrations:firehydrant firehydrant_list_service_environments '{}' --json firehydrant.firehydrant_get_service_dependencies
List dependencies for a service Official FireHydrant endpoint: GET /v1/services/{service_id}/dependencies Retrieves a service's dependencies
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_service_dependencies '{}' --json kosmo integrations:firehydrant firehydrant_get_service_dependencies '{}' --json firehydrant.firehydrant_list_service_available_upstream_dependencies
List available upstream service dependencies Official FireHydrant endpoint: GET /v1/services/{service_id}/available_upstream_dependencies Retrieves all services that are available to be upstream dependencies
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_service_available_upstream_dependencies '{}' --json kosmo integrations:firehydrant firehydrant_list_service_available_upstream_dependencies '{}' --json firehydrant.firehydrant_list_service_available_downstream_dependencies
List available downstream service dependencies Official FireHydrant endpoint: GET /v1/services/{service_id}/available_downstream_dependencies Retrieves all services that are available to be downstream dependencies
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_service_available_downstream_dependencies '{}' --json kosmo integrations:firehydrant firehydrant_list_service_available_downstream_dependencies '{}' --json firehydrant.firehydrant_delete_service_link
Delete a service link Official FireHydrant endpoint: DELETE /v1/services/{service_id}/service_links/{remote_id} Deletes a service link from FireHydrant.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_service_link '{}' --json kosmo integrations:firehydrant firehydrant_delete_service_link '{}' --json firehydrant.firehydrant_create_service_checklist_response
Record a response for a checklist item Official FireHydrant endpoint: POST /v1/services/{service_id}/checklist_response/{checklist_id} Creates a response for a checklist item
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_service_checklist_response '{}' --json kosmo integrations:firehydrant firehydrant_create_service_checklist_response '{}' --json firehydrant.firehydrant_create_service_dependency
Create a service dependency Official FireHydrant endpoint: POST /v1/service_dependencies Creates a service dependency relationship between two services
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_service_dependency '{}' --json kosmo integrations:firehydrant firehydrant_create_service_dependency '{}' --json firehydrant.firehydrant_get_service_dependency
Get a service dependency Official FireHydrant endpoint: GET /v1/service_dependencies/{service_dependency_id} Retrieves a single service dependency by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_service_dependency '{}' --json kosmo integrations:firehydrant firehydrant_get_service_dependency '{}' --json firehydrant.firehydrant_update_service_dependency
Update a service dependency Official FireHydrant endpoint: PATCH /v1/service_dependencies/{service_dependency_id} Update the notes of the service dependency
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_service_dependency '{}' --json kosmo integrations:firehydrant firehydrant_update_service_dependency '{}' --json firehydrant.firehydrant_delete_service_dependency
Delete a service dependency Official FireHydrant endpoint: DELETE /v1/service_dependencies/{service_dependency_id} Deletes a single service dependency
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_service_dependency '{}' --json kosmo integrations:firehydrant firehydrant_delete_service_dependency '{}' --json firehydrant.firehydrant_list_functionalities
List functionalities Official FireHydrant endpoint: GET /v1/functionalities List all of the functionalities that have been added to the organiation
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_functionalities '{}' --json kosmo integrations:firehydrant firehydrant_list_functionalities '{}' --json firehydrant.firehydrant_create_functionality
Create a functionality Official FireHydrant endpoint: POST /v1/functionalities Creates a functionality for the organization
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_functionality '{}' --json kosmo integrations:firehydrant firehydrant_create_functionality '{}' --json firehydrant.firehydrant_get_functionality
Get a functionality Official FireHydrant endpoint: GET /v1/functionalities/{functionality_id} Retrieves a single functionality by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_functionality '{}' --json kosmo integrations:firehydrant firehydrant_get_functionality '{}' --json firehydrant.firehydrant_update_functionality
Update a functionality Official FireHydrant endpoint: PATCH /v1/functionalities/{functionality_id} Update a functionalities attributes
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_functionality '{}' --json kosmo integrations:firehydrant firehydrant_update_functionality '{}' --json firehydrant.firehydrant_delete_functionality
Archive a functionality Official FireHydrant endpoint: DELETE /v1/functionalities/{functionality_id} Archive a functionality
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_functionality '{}' --json kosmo integrations:firehydrant firehydrant_delete_functionality '{}' --json firehydrant.firehydrant_list_functionality_environments
List environments for a functionality Official FireHydrant endpoint: GET /v1/functionalities/{functionality_id}/environments List environments for a functionality
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_functionality_environments '{}' --json kosmo integrations:firehydrant firehydrant_list_functionality_environments '{}' --json firehydrant.firehydrant_list_functionality_services
List services for a functionality Official FireHydrant endpoint: GET /v1/functionalities/{functionality_id}/services List services for a functionality
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_functionality_services '{}' --json kosmo integrations:firehydrant firehydrant_list_functionality_services '{}' --json firehydrant.firehydrant_list_teams
List teams Official FireHydrant endpoint: GET /v1/teams List all of the teams in the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_teams '{}' --json kosmo integrations:firehydrant firehydrant_list_teams '{}' --json firehydrant.firehydrant_create_team
Create a team Official FireHydrant endpoint: POST /v1/teams Create a new team
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_team '{}' --json kosmo integrations:firehydrant firehydrant_create_team '{}' --json firehydrant.firehydrant_get_team
Get a team Official FireHydrant endpoint: GET /v1/teams/{team_id} Retrieve a single team from its ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_team '{}' --json kosmo integrations:firehydrant firehydrant_get_team '{}' --json firehydrant.firehydrant_update_team
Update a team Official FireHydrant endpoint: PATCH /v1/teams/{team_id} Update a single team from its ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_team '{}' --json kosmo integrations:firehydrant firehydrant_update_team '{}' --json firehydrant.firehydrant_delete_team
Archive a team Official FireHydrant endpoint: DELETE /v1/teams/{team_id} Archives an team which will hide it from lists and metrics
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_team '{}' --json kosmo integrations:firehydrant firehydrant_delete_team '{}' --json firehydrant.firehydrant_get_support_hours_schedule
Get support hours schedule Official FireHydrant endpoint: GET /v1/teams/{team_id}/support_hours_schedule Get support hours schedule for the team
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_support_hours_schedule '{}' --json kosmo integrations:firehydrant firehydrant_get_support_hours_schedule '{}' --json firehydrant.firehydrant_update_support_hours_schedule
Update support hours schedule Official FireHydrant endpoint: PATCH /v1/teams/{team_id}/support_hours_schedule Update the team's support hours schedule
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_support_hours_schedule '{}' --json kosmo integrations:firehydrant firehydrant_update_support_hours_schedule '{}' --json firehydrant.firehydrant_delete_support_hours_schedule
Delete a specific support hours schedule Official FireHydrant endpoint: DELETE /v1/teams/{team_id}/support_hours_schedule Delete a specific support hours schedule
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_support_hours_schedule '{}' --json kosmo integrations:firehydrant firehydrant_delete_support_hours_schedule '{}' --json firehydrant.firehydrant_list_team_call_routes
List call routes for a team Official FireHydrant endpoint: GET /v1/teams/{team_id}/call_routes List call routes for a team
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_team_call_routes '{}' --json kosmo integrations:firehydrant firehydrant_list_team_call_routes '{}' --json firehydrant.firehydrant_create_team_call_route
Create a call route for a team Official FireHydrant endpoint: POST /v1/teams/{team_id}/call_routes Create a call route for a team
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_team_call_route '{}' --json kosmo integrations:firehydrant firehydrant_create_team_call_route '{}' --json firehydrant.firehydrant_list_team_escalation_policies
List escalation policies for a team Official FireHydrant endpoint: GET /v1/teams/{team_id}/escalation_policies List all Signals escalation policies for a team.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_team_escalation_policies '{}' --json kosmo integrations:firehydrant firehydrant_list_team_escalation_policies '{}' --json firehydrant.firehydrant_create_team_escalation_policy
Create an escalation policy for a team Official FireHydrant endpoint: POST /v1/teams/{team_id}/escalation_policies Create a Signals escalation policy for a team.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_team_escalation_policy '{}' --json kosmo integrations:firehydrant firehydrant_create_team_escalation_policy '{}' --json firehydrant.firehydrant_get_team_escalation_policy
Get an escalation policy for a team Official FireHydrant endpoint: GET /v1/teams/{team_id}/escalation_policies/{id} Get a Signals escalation policy by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_team_escalation_policy '{}' --json kosmo integrations:firehydrant firehydrant_get_team_escalation_policy '{}' --json firehydrant.firehydrant_update_team_escalation_policy
Update an escalation policy for a team Official FireHydrant endpoint: PATCH /v1/teams/{team_id}/escalation_policies/{id} Update a Signals escalation policy by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_team_escalation_policy '{}' --json kosmo integrations:firehydrant firehydrant_update_team_escalation_policy '{}' --json firehydrant.firehydrant_delete_team_escalation_policy
Delete an escalation policy for a team Official FireHydrant endpoint: DELETE /v1/teams/{team_id}/escalation_policies/{id} Delete a Signals escalation policy by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_team_escalation_policy '{}' --json kosmo integrations:firehydrant firehydrant_delete_team_escalation_policy '{}' --json firehydrant.firehydrant_preview_team_on_call_schedule
Preview a new on-call schedule for a team Official FireHydrant endpoint: POST /v1/teams/{team_id}/on_call_schedules/preview Preview a new on-call schedule based on the provided rotations, allowing you to see how the schedule will look befor
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_preview_team_on_call_schedule '{}' --json kosmo integrations:firehydrant firehydrant_preview_team_on_call_schedule '{}' --json firehydrant.firehydrant_list_team_on_call_schedules
List on-call schedules for a team Official FireHydrant endpoint: GET /v1/teams/{team_id}/on_call_schedules List all Signals on-call schedules for a team.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_team_on_call_schedules '{}' --json kosmo integrations:firehydrant firehydrant_list_team_on_call_schedules '{}' --json firehydrant.firehydrant_create_team_on_call_schedule
Create an on-call schedule for a team Official FireHydrant endpoint: POST /v1/teams/{team_id}/on_call_schedules Create a Signals on-call schedule for a team with a single rotation. More rotations can be created later.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_team_on_call_schedule '{}' --json kosmo integrations:firehydrant firehydrant_create_team_on_call_schedule '{}' --json firehydrant.firehydrant_get_team_on_call_schedule
Get an on-call schedule for a team Official FireHydrant endpoint: GET /v1/teams/{team_id}/on_call_schedules/{schedule_id} Get a Signals on-call schedule by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_team_on_call_schedule '{}' --json kosmo integrations:firehydrant firehydrant_get_team_on_call_schedule '{}' --json firehydrant.firehydrant_update_team_on_call_schedule
Update an on-call schedule for a team Official FireHydrant endpoint: PATCH /v1/teams/{team_id}/on_call_schedules/{schedule_id} Update a Signals on-call schedule by ID. For backwards compatibility, all parameters except for `name` and `descr
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_team_on_call_schedule '{}' --json kosmo integrations:firehydrant firehydrant_update_team_on_call_schedule '{}' --json firehydrant.firehydrant_delete_team_on_call_schedule
Delete an on-call schedule for a team Official FireHydrant endpoint: DELETE /v1/teams/{team_id}/on_call_schedules/{schedule_id} Delete a Signals on-call schedule by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_team_on_call_schedule '{}' --json kosmo integrations:firehydrant firehydrant_delete_team_on_call_schedule '{}' --json firehydrant.firehydrant_preview_on_call_schedule_rotation
Preview an on-call rotation Official FireHydrant endpoint: POST /v1/teams/{team_id}/on_call_schedules/{schedule_id}/rotations/preview Preview a new on-call rotation orchanges to an existing on-call rotation
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_preview_on_call_schedule_rotation '{}' --json kosmo integrations:firehydrant firehydrant_preview_on_call_schedule_rotation '{}' --json firehydrant.firehydrant_create_on_call_schedule_rotation
Create a new on-call rotation Official FireHydrant endpoint: POST /v1/teams/{team_id}/on_call_schedules/{schedule_id}/rotations Add a new rotation to an existing on-call schedule
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_on_call_schedule_rotation '{}' --json kosmo integrations:firehydrant firehydrant_create_on_call_schedule_rotation '{}' --json firehydrant.firehydrant_copy_on_call_schedule_rotation
Copy an on-call schedule's rotation Official FireHydrant endpoint: POST /v1/teams/{team_id}/on_call_schedules/{schedule_id}/rotations/{rotation_id}/copy Copy an on-call rotation into a different schedule, allowing you to merge them together
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_copy_on_call_schedule_rotation '{}' --json kosmo integrations:firehydrant firehydrant_copy_on_call_schedule_rotation '{}' --json firehydrant.firehydrant_get_on_call_schedule_rotation
Get an on-call rotation Official FireHydrant endpoint: GET /v1/teams/{team_id}/on_call_schedules/{schedule_id}/rotations/{rotation_id} Get an on-call rotation by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_on_call_schedule_rotation '{}' --json kosmo integrations:firehydrant firehydrant_get_on_call_schedule_rotation '{}' --json firehydrant.firehydrant_update_on_call_schedule_rotation
Update an on-call schedule's rotation Official FireHydrant endpoint: PATCH /v1/teams/{team_id}/on_call_schedules/{schedule_id}/rotations/{rotation_id} Update an on-call schedule's rotation by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_on_call_schedule_rotation '{}' --json kosmo integrations:firehydrant firehydrant_update_on_call_schedule_rotation '{}' --json firehydrant.firehydrant_delete_on_call_schedule_rotation
Delete an on-call schedule's rotation Official FireHydrant endpoint: DELETE /v1/teams/{team_id}/on_call_schedules/{schedule_id}/rotations/{rotation_id} Delete an on-call schedule's rotation by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_on_call_schedule_rotation '{}' --json kosmo integrations:firehydrant firehydrant_delete_on_call_schedule_rotation '{}' --json firehydrant.firehydrant_override_on_call_schedule_rotation_shifts
Override one or more shifts in an on-call rotation Official FireHydrant endpoint: POST /v1/teams/{team_id}/on_call_schedules/{schedule_id}/rotations/{rotation_id}/overrides Create an override covering a specific time period in an on-call ro
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_override_on_call_schedule_rotation_shifts '{}' --json kosmo integrations:firehydrant firehydrant_override_on_call_schedule_rotation_shifts '{}' --json firehydrant.firehydrant_create_on_call_shift
Create a shift for an on-call schedule Official FireHydrant endpoint: POST /v1/teams/{team_id}/on_call_schedules/{schedule_id}/shifts Create a Signals on-call shift in a schedule.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_on_call_shift '{}' --json kosmo integrations:firehydrant firehydrant_create_on_call_shift '{}' --json firehydrant.firehydrant_get_on_call_shift
Get an on-call shift for a team schedule Official FireHydrant endpoint: GET /v1/teams/{team_id}/on_call_schedules/{schedule_id}/shifts/{id} Get a Signals on-call shift by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_on_call_shift '{}' --json kosmo integrations:firehydrant firehydrant_get_on_call_shift '{}' --json firehydrant.firehydrant_update_on_call_shift
Update an on-call shift for a team schedule Official FireHydrant endpoint: PATCH /v1/teams/{team_id}/on_call_schedules/{schedule_id}/shifts/{id} Update a Signals on-call shift by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_on_call_shift '{}' --json kosmo integrations:firehydrant firehydrant_update_on_call_shift '{}' --json firehydrant.firehydrant_delete_on_call_shift
Delete an on-call shift from a team schedule Official FireHydrant endpoint: DELETE /v1/teams/{team_id}/on_call_schedules/{schedule_id}/shifts/{id} Delete a Signals on-call shift by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_on_call_shift '{}' --json kosmo integrations:firehydrant firehydrant_delete_on_call_shift '{}' --json firehydrant.firehydrant_list_team_signal_rules
List Signals rules Official FireHydrant endpoint: GET /v1/teams/{team_id}/signal_rules List all Signals rules for a team.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_team_signal_rules '{}' --json kosmo integrations:firehydrant firehydrant_list_team_signal_rules '{}' --json firehydrant.firehydrant_create_team_signal_rule
Create a Signals rule Official FireHydrant endpoint: POST /v1/teams/{team_id}/signal_rules Create a Signals rule for a team. We support up to 2000 rules per organization.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_team_signal_rule '{}' --json kosmo integrations:firehydrant firehydrant_create_team_signal_rule '{}' --json firehydrant.firehydrant_get_team_signal_rule
Get a Signals rule Official FireHydrant endpoint: GET /v1/teams/{team_id}/signal_rules/{id} Get a Signals rule by ID.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_team_signal_rule '{}' --json kosmo integrations:firehydrant firehydrant_get_team_signal_rule '{}' --json firehydrant.firehydrant_update_team_signal_rule
Update a Signals rule Official FireHydrant endpoint: PATCH /v1/teams/{team_id}/signal_rules/{id} Update a Signals rule by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_team_signal_rule '{}' --json kosmo integrations:firehydrant firehydrant_update_team_signal_rule '{}' --json firehydrant.firehydrant_delete_team_signal_rule
Delete a Signals rule Official FireHydrant endpoint: DELETE /v1/teams/{team_id}/signal_rules/{id} Delete a Signals rule by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_team_signal_rule '{}' --json kosmo integrations:firehydrant firehydrant_delete_team_signal_rule '{}' --json firehydrant.firehydrant_list_changes
List changes Official FireHydrant endpoint: GET /v1/changes List changes for the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_changes '{}' --json kosmo integrations:firehydrant firehydrant_list_changes '{}' --json firehydrant.firehydrant_create_change
Create a new change entry Official FireHydrant endpoint: POST /v1/changes Create a new change entry
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_change '{}' --json kosmo integrations:firehydrant firehydrant_create_change '{}' --json firehydrant.firehydrant_update_change
Update a change entry Official FireHydrant endpoint: PATCH /v1/changes/{change_id} Update a change entry
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_change '{}' --json kosmo integrations:firehydrant firehydrant_update_change '{}' --json firehydrant.firehydrant_delete_change
Archive a change entry Official FireHydrant endpoint: DELETE /v1/changes/{change_id} Archive a change entry
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_change '{}' --json kosmo integrations:firehydrant firehydrant_delete_change '{}' --json firehydrant.firehydrant_list_change_identities
List identities for a change entry Official FireHydrant endpoint: GET /v1/changes/{change_id}/identities Retrieve all identities for the change entry
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_change_identities '{}' --json kosmo integrations:firehydrant firehydrant_list_change_identities '{}' --json firehydrant.firehydrant_create_change_identity
Create an identity for a change entry Official FireHydrant endpoint: POST /v1/changes/{change_id}/identities Create an identity for the change entry
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_change_identity '{}' --json kosmo integrations:firehydrant firehydrant_create_change_identity '{}' --json firehydrant.firehydrant_update_change_identity
Update an identity for a change entry Official FireHydrant endpoint: PATCH /v1/changes/{change_id}/identities/{identity_id} Update an identity for the change entry
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_change_identity '{}' --json kosmo integrations:firehydrant firehydrant_update_change_identity '{}' --json firehydrant.firehydrant_delete_change_identity
Delete an identity from a change entry Official FireHydrant endpoint: DELETE /v1/changes/{change_id}/identities/{identity_id} Delete an identity from the change entry
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_change_identity '{}' --json kosmo integrations:firehydrant firehydrant_delete_change_identity '{}' --json firehydrant.firehydrant_list_change_events
List change events Official FireHydrant endpoint: GET /v1/changes/events List change events for the organization. Note: Not all information is included on a change event like attachments and related changes. You must fetch a change event se
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_change_events '{}' --json kosmo integrations:firehydrant firehydrant_list_change_events '{}' --json firehydrant.firehydrant_create_change_event
Create a change event Official FireHydrant endpoint: POST /v1/changes/events Create a change event
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_change_event '{}' --json kosmo integrations:firehydrant firehydrant_create_change_event '{}' --json firehydrant.firehydrant_get_change_event
Get a change event Official FireHydrant endpoint: GET /v1/changes/events/{change_event_id} Retrieve a change event
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_change_event '{}' --json kosmo integrations:firehydrant firehydrant_get_change_event '{}' --json firehydrant.firehydrant_update_change_event
Update a change event Official FireHydrant endpoint: PATCH /v1/changes/events/{change_event_id} Update a change event
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_change_event '{}' --json kosmo integrations:firehydrant firehydrant_update_change_event '{}' --json firehydrant.firehydrant_delete_change_event
Delete a change event Official FireHydrant endpoint: DELETE /v1/changes/events/{change_event_id} Delete a change event
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_change_event '{}' --json kosmo integrations:firehydrant firehydrant_delete_change_event '{}' --json firehydrant.firehydrant_list_change_types
List change types Official FireHydrant endpoint: GET /v1/change_types List change types for the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_change_types '{}' --json kosmo integrations:firehydrant firehydrant_list_change_types '{}' --json firehydrant.firehydrant_list_entitlements
List entitlements Official FireHydrant endpoint: GET /v1/entitlements List the organization's entitlements
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_entitlements '{}' --json kosmo integrations:firehydrant firehydrant_list_entitlements '{}' --json firehydrant.firehydrant_list_incidents
List incidents Official FireHydrant endpoint: GET /v1/incidents List all of the incidents in the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incidents '{}' --json kosmo integrations:firehydrant firehydrant_list_incidents '{}' --json firehydrant.firehydrant_create_incident
Create an incident Official FireHydrant endpoint: POST /v1/incidents Create a new incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident '{}' --json kosmo integrations:firehydrant firehydrant_create_incident '{}' --json firehydrant.firehydrant_get_incident_channel
Get chat channel information for an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/channel Gives chat channel information for the specified incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_incident_channel '{}' --json kosmo integrations:firehydrant firehydrant_get_incident_channel '{}' --json firehydrant.firehydrant_close_incident
Close an incident Official FireHydrant endpoint: PUT /v1/incidents/{incident_id}/close Closes an incident and optionally close all children
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_close_incident '{}' --json kosmo integrations:firehydrant firehydrant_close_incident '{}' --json firehydrant.firehydrant_resolve_incident
Resolve an incident Official FireHydrant endpoint: PUT /v1/incidents/{incident_id}/resolve Resolves a currently active incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_resolve_incident '{}' --json kosmo integrations:firehydrant firehydrant_resolve_incident '{}' --json firehydrant.firehydrant_get_incident
Get an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id} Retrieve a single incident from its ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_incident '{}' --json kosmo integrations:firehydrant firehydrant_get_incident '{}' --json firehydrant.firehydrant_update_incident
Update an incident Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id} Updates an incident with provided parameters
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident '{}' --json kosmo integrations:firehydrant firehydrant_update_incident '{}' --json firehydrant.firehydrant_delete_incident
Archive an incident Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id} Archives an incident which will hide it from lists and metrics
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident '{}' --json firehydrant.firehydrant_unarchive_incident
Unarchive an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/unarchive Unarchive an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_unarchive_incident '{}' --json kosmo integrations:firehydrant firehydrant_unarchive_incident '{}' --json firehydrant.firehydrant_list_incident_alerts
List alerts for an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/alerts List alerts that have been attached to an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_alerts '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_alerts '{}' --json firehydrant.firehydrant_create_incident_alert
Attach an alert to an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/alerts Add an alert to an incident. FireHydrant needs to have ingested the alert from a third party system in order to attach it to the incident.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_alert '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_alert '{}' --json firehydrant.firehydrant_update_incident_alert_primary
Set an alert as primary for an incident Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/alerts/{incident_alert_id}/primary Setting an alert as primary will overwrite milestone times in the FireHydrant incident with times in
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_alert_primary '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_alert_primary '{}' --json firehydrant.firehydrant_delete_incident_alert
Remove an alert from an incident Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/alerts/{incident_alert_id} Remove an alert from an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_alert '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_alert '{}' --json firehydrant.firehydrant_bulk_update_incident_milestones
Update milestone times Official FireHydrant endpoint: PUT /v1/incidents/{incident_id}/milestones/bulk_update Update milestone times in bulk for a given incident. All milestone times for an incident must occur in chronological order correspo
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_bulk_update_incident_milestones '{}' --json kosmo integrations:firehydrant firehydrant_bulk_update_incident_milestones '{}' --json firehydrant.firehydrant_list_incident_milestones
List incident milestones Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/milestones List times and durations for each milestone on an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_milestones '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_milestones '{}' --json firehydrant.firehydrant_list_incident_change_events
List related changes on an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/related_change_events List related changes that have been attached to an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_change_events '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_change_events '{}' --json firehydrant.firehydrant_create_incident_change_event
Add a related change to an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/related_change_events Add a related change to an incident. Changes added to an incident can be causes, fixes, or suspects. To remove a chang
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_change_event '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_change_event '{}' --json firehydrant.firehydrant_update_incident_change_event
Update a change attached to an incident Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/related_change_events/{related_change_event_id} Update a change attached to an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_change_event '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_change_event '{}' --json firehydrant.firehydrant_list_incident_status_pages
List status pages for an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/status_pages List status pages that are attached to an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_status_pages '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_status_pages '{}' --json firehydrant.firehydrant_create_incident_status_page
Add a status page to an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/status_pages Add a status page to an incident.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_status_page '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_status_page '{}' --json firehydrant.firehydrant_delete_incident_status_page
Remove a status page from an incident Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/status_pages/{status_page_id} Remove a status page incident attached to an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_status_page '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_status_page '{}' --json firehydrant.firehydrant_create_incident_task_list
Add tasks from a task list to an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/task_lists Add all tasks from list to incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_task_list '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_task_list '{}' --json firehydrant.firehydrant_list_incident_tasks
List tasks for an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/tasks Retrieve a list of all tasks for a specific incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_tasks '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_tasks '{}' --json firehydrant.firehydrant_create_incident_task
Create an incident task Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/tasks Create a task
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_task '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_task '{}' --json firehydrant.firehydrant_get_incident_task
Get an incident task Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/tasks/{task_id} Retrieve a single task for an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_incident_task '{}' --json kosmo integrations:firehydrant firehydrant_get_incident_task '{}' --json firehydrant.firehydrant_update_incident_task
Update an incident task Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/tasks/{task_id} Update a task's attributes
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_task '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_task '{}' --json firehydrant.firehydrant_delete_incident_task
Delete an incident task Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/tasks/{task_id} Delete a task
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_task '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_task '{}' --json firehydrant.firehydrant_convert_incident_task
Convert a task to a follow-up Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/tasks/{task_id}/convert Convert a task to a follow-up
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_convert_incident_task '{}' --json kosmo integrations:firehydrant firehydrant_convert_incident_task '{}' --json firehydrant.firehydrant_list_incident_links
List links on an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/links List all the editable, external incident links attached to an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_links '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_links '{}' --json firehydrant.firehydrant_create_incident_link
Add a link to an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/links Allows adding adhoc links to an incident as an attachment
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_link '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_link '{}' --json firehydrant.firehydrant_update_incident_link
Update the external incident link Official FireHydrant endpoint: PUT /v1/incidents/{incident_id}/links/{link_id} Update the external incident link attributes
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_link '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_link '{}' --json firehydrant.firehydrant_delete_incident_link
Remove a link from an incident Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/links/{link_id} Remove a link from an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_link '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_link '{}' --json firehydrant.firehydrant_update_transcript_attribution
Update the attribution of a transcript Official FireHydrant endpoint: PUT /v1/incidents/{incident_id}/transcript/attribution Update the attribution of a transcript
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_transcript_attribution '{}' --json kosmo integrations:firehydrant firehydrant_update_transcript_attribution '{}' --json firehydrant.firehydrant_list_transcript_entries
Lists all of the messages in the incident's transcript Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/transcript Retrieve the transcript for a specific incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_transcript_entries '{}' --json kosmo integrations:firehydrant firehydrant_list_transcript_entries '{}' --json firehydrant.firehydrant_delete_transcript_entry
Delete a transcript from an incident Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/transcript/{transcript_id} Delete a transcript from an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_transcript_entry '{}' --json kosmo integrations:firehydrant firehydrant_delete_transcript_entry '{}' --json firehydrant.firehydrant_list_incident_conference_bridges
Retrieve all conference bridges for an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/conference_bridges Retrieve all conference bridges for an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_conference_bridges '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_conference_bridges '{}' --json firehydrant.firehydrant_get_conference_bridge_translation
Retrieve the translations for a specific conference bridge Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/conference_bridges/{id}/translations/{language_code} Retrieve the translations for a specific conference bridge
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_conference_bridge_translation '{}' --json kosmo integrations:firehydrant firehydrant_get_conference_bridge_translation '{}' --json firehydrant.firehydrant_list_similar_incidents
List similar incidents Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/similar Retrieve a list of similar incidents
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_similar_incidents '{}' --json kosmo integrations:firehydrant firehydrant_list_similar_incidents '{}' --json firehydrant.firehydrant_list_incident_attachments
List attachments for an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/attachments List attachments for an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_attachments '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_attachments '{}' --json firehydrant.firehydrant_create_incident_attachment
Add an attachment to the incident timeline Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/attachments Allows adding image attachments to an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_attachment '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_attachment '{}' --json firehydrant.firehydrant_list_incident_events
List events for an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/events List all events for an incident. An event is a timeline entry. This can be filtered with params to retrieve events of a certain type.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_events '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_events '{}' --json firehydrant.firehydrant_get_incident_event
Get an incident event Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/events/{event_id} Retrieve a single event for an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_incident_event '{}' --json kosmo integrations:firehydrant firehydrant_get_incident_event '{}' --json firehydrant.firehydrant_update_incident_event
Update an incident event Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/events/{event_id} Update a single event for an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_event '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_event '{}' --json firehydrant.firehydrant_delete_incident_event
Delete an incident event Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/events/{event_id} Delete an event for an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_event '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_event '{}' --json firehydrant.firehydrant_get_vote_status
Get votes Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/events/{event_id}/votes/status Get an object's current vote counts
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_vote_status '{}' --json kosmo integrations:firehydrant firehydrant_get_vote_status '{}' --json firehydrant.firehydrant_update_vote
Update votes Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/events/{event_id}/votes Upvote or downvote an object
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_vote '{}' --json kosmo integrations:firehydrant firehydrant_update_vote '{}' --json firehydrant.firehydrant_update_incident_impact_put
Update impacts for an incident Official FireHydrant endpoint: PUT /v1/incidents/{incident_id}/impact Allows updating an incident's impacted infrastructure, with the option to move the incident into a different milestone and provide a note t
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_impact_put '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_impact_put '{}' --json firehydrant.firehydrant_update_incident_impact_patch
Update impacts for an incident Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/impact Allows updating an incident's impacted infrastructure, with the option to move the incident into a different milestone and provide a note
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_impact_patch '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_impact_patch '{}' --json firehydrant.firehydrant_list_incident_impacts
List impacted infrastructure for an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/impact/{type} List impacted infrastructure on an incident by specifying type
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_impacts '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_impacts '{}' --json firehydrant.firehydrant_create_incident_impact
Add impacted infrastructure to an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/impact/{type} Add impacted infrastructure to an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_impact '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_impact '{}' --json firehydrant.firehydrant_delete_incident_impact
Remove impacted infrastructure from an incident Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/impact/{type}/{id} Remove impacted infrastructure from an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_impact '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_impact '{}' --json firehydrant.firehydrant_create_incident_note
Add a note to an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/notes Create a new note on for an incident. The visibility field on a note determines where it gets posted.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_note '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_note '{}' --json firehydrant.firehydrant_update_incident_note
Update a note Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/notes/{note_id} Updates the body of a note
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_note '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_note '{}' --json firehydrant.firehydrant_create_incident_chat_message
Add a chat message to an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/generic_chat_messages Create a new generic chat message on an incident timeline. These are independent of any specific chat provider.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_chat_message '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_chat_message '{}' --json firehydrant.firehydrant_update_incident_chat_message
Update a chat message on an incident Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/generic_chat_messages/{message_id} Update an existing generic chat message on an incident.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_chat_message '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_chat_message '{}' --json firehydrant.firehydrant_delete_incident_chat_message
Delete a chat message from an incident Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/generic_chat_messages/{message_id} Delete an existing generic chat message on an incident.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_chat_message '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_chat_message '{}' --json firehydrant.firehydrant_list_incident_role_assignments
List incident assignees Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/role_assignments Retrieve a list of all of the current role assignments for the incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_role_assignments '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_role_assignments '{}' --json firehydrant.firehydrant_create_incident_role_assignment
Assign a user to an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/role_assignments Assign a role to a user for this incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_role_assignment '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_role_assignment '{}' --json firehydrant.firehydrant_delete_incident_role_assignment
Unassign a user from an incident Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/role_assignments/{role_assignment_id} Unassign a role from a user
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_role_assignment '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_role_assignment '{}' --json firehydrant.firehydrant_create_incident_team_assignment
Assign a team to an incident Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/team_assignments Assign a team for this incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_team_assignment '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_team_assignment '{}' --json firehydrant.firehydrant_delete_incident_team_assignment
Unassign a team from an incident Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/team_assignments/{team_assignment_id} Unassign a team from an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_team_assignment '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_team_assignment '{}' --json firehydrant.firehydrant_get_incident_user
Get the current user's incident role Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/users/{user_id} Retrieve a user with current roles for an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_incident_user '{}' --json kosmo integrations:firehydrant firehydrant_get_incident_user '{}' --json firehydrant.firehydrant_get_incident_relationships
List incident relationships Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/relationships List any parent/child relationships for an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_incident_relationships '{}' --json kosmo integrations:firehydrant firehydrant_get_incident_relationships '{}' --json firehydrant.firehydrant_share_incident_retrospectives
Share an incident's retrospective Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/retrospectives/share Share incident retrospectives with users or teams
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_share_incident_retrospectives '{}' --json kosmo integrations:firehydrant firehydrant_share_incident_retrospectives '{}' --json firehydrant.firehydrant_export_incident_retrospectives_markdown
Export an incident's retrospective(s) as markdown Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/retrospectives/export_markdown Export incident's retrospective(s) as markdown
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_export_incident_retrospectives_markdown '{}' --json kosmo integrations:firehydrant firehydrant_export_incident_retrospectives_markdown '{}' --json firehydrant.firehydrant_export_incident_retrospectives
Export an incident's retrospective(s) Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/retrospectives/export Export incident's retrospective(s) using their templates
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_export_incident_retrospectives '{}' --json kosmo integrations:firehydrant firehydrant_export_incident_retrospectives '{}' --json firehydrant.firehydrant_list_incident_retrospectives
All attached retrospectives for an incident Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/retrospectives Retrieve retrospectives attached to an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_retrospectives '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_retrospectives '{}' --json firehydrant.firehydrant_create_incident_retrospective
Create a new retrospective on the incident using the template Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/retrospectives Create a new retrospective for an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_retrospective '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_retrospective '{}' --json firehydrant.firehydrant_update_incident_retrospective
Update a retrospective on the incident Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/retrospectives/{retrospective_id} Update a retrospective attached to an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_retrospective '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_retrospective '{}' --json firehydrant.firehydrant_create_incident_retrospective_field
Appends a new incident retrospective field to an incident retrospective Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/retrospectives/{retrospective_id}/fields Add a new field to an incident retrospective
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_retrospective_field '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_retrospective_field '{}' --json firehydrant.firehydrant_get_incident_retrospective_field
Get a retrospective field Official FireHydrant endpoint: GET /v1/incidents/{incident_id}/retrospectives/{retrospective_id}/fields/{field_id} Retrieve a field on an incident retrospective
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_incident_retrospective_field '{}' --json kosmo integrations:firehydrant firehydrant_get_incident_retrospective_field '{}' --json firehydrant.firehydrant_update_incident_retrospective_field
Update the value on a retrospective field Official FireHydrant endpoint: PATCH /v1/incidents/{incident_id}/retrospectives/{retrospective_id}/fields/{field_id} Update retrospective field value
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_retrospective_field '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_retrospective_field '{}' --json firehydrant.firehydrant_create_incident_retrospective_dynamic_input
Add a new dynamic input field to a retrospective's dynamic input group field Official FireHydrant endpoint: POST /v1/incidents/{incident_id}/retrospectives/{retrospective_id}/fields/{field_id}/inputs Add a new dynamic input field to a dynam
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_retrospective_dynamic_input '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_retrospective_dynamic_input '{}' --json firehydrant.firehydrant_delete_incident_retrospective_dynamic_input
Removes a dynamic input from a retrospective's dynamic input group field Official FireHydrant endpoint: DELETE /v1/incidents/{incident_id}/retrospectives/{retrospective_id}/fields/{field_id}/inputs Delete a dynamic input on a dynamic input
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_retrospective_dynamic_input '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_retrospective_dynamic_input '{}' --json firehydrant.firehydrant_list_incident_roles
List incident roles Official FireHydrant endpoint: GET /v1/incident_roles List all of the incident roles in the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_roles '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_roles '{}' --json firehydrant.firehydrant_create_incident_role
Create an incident role Official FireHydrant endpoint: POST /v1/incident_roles Create a new incident role
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_role '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_role '{}' --json firehydrant.firehydrant_get_incident_role
Get an incident role Official FireHydrant endpoint: GET /v1/incident_roles/{incident_role_id} Retrieve a single incident role from its ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_incident_role '{}' --json kosmo integrations:firehydrant firehydrant_get_incident_role '{}' --json firehydrant.firehydrant_update_incident_role
Update an incident role Official FireHydrant endpoint: PATCH /v1/incident_roles/{incident_role_id} Update a single incident role from its ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_role '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_role '{}' --json firehydrant.firehydrant_delete_incident_role
Archive an incident role Official FireHydrant endpoint: DELETE /v1/incident_roles/{incident_role_id} Archives an incident role which will hide it from lists and metrics
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_role '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_role '{}' --json firehydrant.firehydrant_validate_incident_tags
Validate incident tags Official FireHydrant endpoint: POST /v1/incident_tags/validate Validate the format of a list of tags
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_validate_incident_tags '{}' --json kosmo integrations:firehydrant firehydrant_validate_incident_tags '{}' --json firehydrant.firehydrant_list_incident_tags
List incident tags Official FireHydrant endpoint: GET /v1/incident_tags List all of the incident tags in the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_tags '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_tags '{}' --json firehydrant.firehydrant_list_incident_types
List incident types Official FireHydrant endpoint: GET /v1/incident_types List all of the incident types in the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_types '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_types '{}' --json firehydrant.firehydrant_create_incident_type
Create an incident type Official FireHydrant endpoint: POST /v1/incident_types Create a new incident type
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_incident_type '{}' --json kosmo integrations:firehydrant firehydrant_create_incident_type '{}' --json firehydrant.firehydrant_get_incident_type
Get an incident type Official FireHydrant endpoint: GET /v1/incident_types/{id} Retrieve a single incident type from its ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_incident_type '{}' --json kosmo integrations:firehydrant firehydrant_get_incident_type '{}' --json firehydrant.firehydrant_update_incident_type
Update an incident type Official FireHydrant endpoint: PATCH /v1/incident_types/{id} Update a single incident type from its ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_incident_type '{}' --json kosmo integrations:firehydrant firehydrant_update_incident_type '{}' --json firehydrant.firehydrant_delete_incident_type
Archive an incident type Official FireHydrant endpoint: DELETE /v1/incident_types/{id} Archives an incident type which will hide it from lists and metrics
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_incident_type '{}' --json kosmo integrations:firehydrant firehydrant_delete_incident_type '{}' --json firehydrant.firehydrant_list_integrations
List integrations Official FireHydrant endpoint: GET /v1/integrations Lists the available and configured integrations
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_integrations '{}' --json kosmo integrations:firehydrant firehydrant_list_integrations '{}' --json firehydrant.firehydrant_get_integration
Get an integration Official FireHydrant endpoint: GET /v1/integrations/{integration_id} Retrieve a single integration
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_integration '{}' --json kosmo integrations:firehydrant firehydrant_get_integration '{}' --json firehydrant.firehydrant_update_field_map
Update field mapping Official FireHydrant endpoint: PATCH /v1/integrations/field_maps/{field_map_id} Update field mapping
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_field_map '{}' --json kosmo integrations:firehydrant firehydrant_update_field_map '{}' --json firehydrant.firehydrant_list_field_map_available_fields
List available fields for field mapping Official FireHydrant endpoint: GET /v1/integrations/field_maps/{field_map_id}/available_fields Get a description of the fields to which data can be mapped
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_field_map_available_fields '{}' --json kosmo integrations:firehydrant firehydrant_list_field_map_available_fields '{}' --json firehydrant.firehydrant_list_authed_providers
Lists the available and configured integrations Official FireHydrant endpoint: GET /v1/integrations/authed_providers/{integration_slug}/{connection_id} Lists the available and configured integrations
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_authed_providers '{}' --json kosmo integrations:firehydrant firehydrant_list_authed_providers '{}' --json firehydrant.firehydrant_update_authed_provider
Get an authed provider Official FireHydrant endpoint: PATCH /v1/integrations/authed_providers/{integration_slug}/{connection_id}/{authed_provider_id} Retrieve a single authed provider
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_authed_provider '{}' --json kosmo integrations:firehydrant firehydrant_update_authed_provider '{}' --json firehydrant.firehydrant_list_connections
List integration connections Official FireHydrant endpoint: GET /v1/integrations/connections List available integration connections
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_connections '{}' --json kosmo integrations:firehydrant firehydrant_list_connections '{}' --json firehydrant.firehydrant_create_connection
Create a new integration connection Official FireHydrant endpoint: POST /v1/integrations/connections/{slug} Create a new integration connection
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_connection '{}' --json kosmo integrations:firehydrant firehydrant_create_connection '{}' --json firehydrant.firehydrant_refresh_connection
Refresh an integration connection Official FireHydrant endpoint: PATCH /v1/integrations/connections/{slug}/{connection_id}/refresh Refresh the integration connection with the provided data
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_refresh_connection '{}' --json kosmo integrations:firehydrant firehydrant_refresh_connection '{}' --json firehydrant.firehydrant_update_connection
Update an integration connection Official FireHydrant endpoint: PATCH /v1/integrations/connections/{slug}/{connection_id} Update the integration connection with the provided data
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_connection '{}' --json kosmo integrations:firehydrant firehydrant_update_connection '{}' --json firehydrant.firehydrant_list_connection_statuses
Get integration connection status Official FireHydrant endpoint: GET /v1/integrations/statuses Retrieve overall integration connection status
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_connection_statuses '{}' --json kosmo integrations:firehydrant firehydrant_list_connection_statuses '{}' --json firehydrant.firehydrant_list_connection_statuses_by_slug
Get an integration connection status Official FireHydrant endpoint: GET /v1/integrations/statuses/{slug} Retrieve a single integration connection status
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_connection_statuses_by_slug '{}' --json kosmo integrations:firehydrant firehydrant_list_connection_statuses_by_slug '{}' --json firehydrant.firehydrant_list_connection_statuses_by_slug_and_id
Get an integration connection status Official FireHydrant endpoint: GET /v1/integrations/statuses/{slug}/{by_connection_id} Retrieve a single integration connection status
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_connection_statuses_by_slug_and_id '{}' --json kosmo integrations:firehydrant firehydrant_list_connection_statuses_by_slug_and_id '{}' --json firehydrant.firehydrant_list_aws_connections
List AWS connections Official FireHydrant endpoint: GET /v1/integrations/aws/connections Lists the available and configured AWS integration connections for the authenticated organization.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_aws_connections '{}' --json kosmo integrations:firehydrant firehydrant_list_aws_connections '{}' --json firehydrant.firehydrant_get_aws_connection
Get an AWS connection Official FireHydrant endpoint: GET /v1/integrations/aws/connections/{id} Retrieves the information about the AWS connection.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_aws_connection '{}' --json kosmo integrations:firehydrant firehydrant_get_aws_connection '{}' --json firehydrant.firehydrant_update_aws_connection
Update an AWS connection Official FireHydrant endpoint: PATCH /v1/integrations/aws/connections/{id} Update the AWS connection with the provided data.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_aws_connection '{}' --json kosmo integrations:firehydrant firehydrant_update_aws_connection '{}' --json firehydrant.firehydrant_list_aws_cloudtrail_batches
List CloudTrail batches Official FireHydrant endpoint: GET /v1/integrations/aws/cloudtrail_batches Lists CloudTrail batches for the authenticated organization.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_aws_cloudtrail_batches '{}' --json kosmo integrations:firehydrant firehydrant_list_aws_cloudtrail_batches '{}' --json firehydrant.firehydrant_get_aws_cloudtrail_batch
Get a CloudTrail batch Official FireHydrant endpoint: GET /v1/integrations/aws/cloudtrail_batches/{id} Retrieve a single CloudTrail batch.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_aws_cloudtrail_batch '{}' --json kosmo integrations:firehydrant firehydrant_get_aws_cloudtrail_batch '{}' --json firehydrant.firehydrant_update_aws_cloudtrail_batch
Update a CloudTrail batch Official FireHydrant endpoint: PATCH /v1/integrations/aws/cloudtrail_batches/{id} Update a CloudTrail batch with new information.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_aws_cloudtrail_batch '{}' --json kosmo integrations:firehydrant firehydrant_update_aws_cloudtrail_batch '{}' --json firehydrant.firehydrant_list_aws_cloudtrail_batch_events
List events for an AWS CloudTrail batch Official FireHydrant endpoint: GET /v1/integrations/aws/cloudtrail_batches/{id}/events List events for an AWS CloudTrail batch
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_aws_cloudtrail_batch_events '{}' --json kosmo integrations:firehydrant firehydrant_list_aws_cloudtrail_batch_events '{}' --json firehydrant.firehydrant_search_confluence_spaces
List Confluence spaces Official FireHydrant endpoint: GET /v1/integrations/confluence_cloud/connections/{id}/space/search Lists available space keys for the Confluence integration connection.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_search_confluence_spaces '{}' --json kosmo integrations:firehydrant firehydrant_search_confluence_spaces '{}' --json firehydrant.firehydrant_list_slack_workspaces
List Slack workspaces Official FireHydrant endpoint: GET /v1/integrations/slack/connections/{connection_id}/workspaces Lists all Slack workspaces
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_slack_workspaces '{}' --json kosmo integrations:firehydrant firehydrant_list_slack_workspaces '{}' --json firehydrant.firehydrant_list_slack_usergroups
List Slack user groups Official FireHydrant endpoint: GET /v1/integrations/slack/usergroups Lists all Slack user groups
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_slack_usergroups '{}' --json kosmo integrations:firehydrant firehydrant_list_slack_usergroups '{}' --json firehydrant.firehydrant_list_slack_emoji_actions
List Slack emoji actions Official FireHydrant endpoint: GET /v1/integrations/slack/connections/{connection_id}/emoji_actions Lists Slack emoji actions
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_slack_emoji_actions '{}' --json kosmo integrations:firehydrant firehydrant_list_slack_emoji_actions '{}' --json firehydrant.firehydrant_create_slack_emoji_action
Create a new Slack emoji action Official FireHydrant endpoint: POST /v1/integrations/slack/connections/{connection_id}/emoji_actions Creates a new Slack emoji action
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_slack_emoji_action '{}' --json kosmo integrations:firehydrant firehydrant_create_slack_emoji_action '{}' --json firehydrant.firehydrant_get_slack_emoji_action
Get a Slack emoji action Official FireHydrant endpoint: GET /v1/integrations/slack/connections/{connection_id}/emoji_actions/{emoji_action_id} Retrieves a Slack emoji action
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_slack_emoji_action '{}' --json kosmo integrations:firehydrant firehydrant_get_slack_emoji_action '{}' --json firehydrant.firehydrant_update_slack_emoji_action
Update a Slack emoji action Official FireHydrant endpoint: PATCH /v1/integrations/slack/connections/{connection_id}/emoji_actions/{emoji_action_id} Updates a Slack emoji action
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_slack_emoji_action '{}' --json kosmo integrations:firehydrant firehydrant_update_slack_emoji_action '{}' --json firehydrant.firehydrant_delete_slack_emoji_action
Delete a Slack emoji action Official FireHydrant endpoint: DELETE /v1/integrations/slack/connections/{connection_id}/emoji_actions/{emoji_action_id} Deletes a Slack emoji action
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_slack_emoji_action '{}' --json kosmo integrations:firehydrant firehydrant_delete_slack_emoji_action '{}' --json firehydrant.firehydrant_list_statuspage_connections
List Statuspage connections Official FireHydrant endpoint: GET /v1/integrations/statuspage/connections Lists the available and configured Statuspage integrations connections for the authenticated organization.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_statuspage_connections '{}' --json kosmo integrations:firehydrant firehydrant_list_statuspage_connections '{}' --json firehydrant.firehydrant_get_statuspage_connection
Get a Statuspage connection Official FireHydrant endpoint: GET /v1/integrations/statuspage/connections/{connection_id} Retrieve the information about the Statuspage connection.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_statuspage_connection '{}' --json kosmo integrations:firehydrant firehydrant_get_statuspage_connection '{}' --json firehydrant.firehydrant_update_statuspage_connection
Update a Statuspage connection Official FireHydrant endpoint: PATCH /v1/integrations/statuspage/connections/{connection_id} Update the given Statuspage integration connection.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_statuspage_connection '{}' --json kosmo integrations:firehydrant firehydrant_update_statuspage_connection '{}' --json firehydrant.firehydrant_delete_statuspage_connection
Delete a Statuspage connection Official FireHydrant endpoint: DELETE /v1/integrations/statuspage/connections/{connection_id} Deletes the given Statuspage integration connection.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_statuspage_connection '{}' --json kosmo integrations:firehydrant firehydrant_delete_statuspage_connection '{}' --json firehydrant.firehydrant_list_statuspage_connection_pages
List StatusPage pages for a connection Official FireHydrant endpoint: GET /v1/integrations/statuspage/connections/{connection_id}/pages Lists available page IDs for the Statuspage integration connection.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_statuspage_connection_pages '{}' --json kosmo integrations:firehydrant firehydrant_list_statuspage_connection_pages '{}' --json firehydrant.firehydrant_search_zendesk_tickets
Search for Zendesk tickets Official FireHydrant endpoint: GET /v1/integrations/zendesk/{connection_id}/tickets/search Search for Zendesk tickets
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_search_zendesk_tickets '{}' --json kosmo integrations:firehydrant firehydrant_search_zendesk_tickets '{}' --json firehydrant.firehydrant_get_zendesk_customer_support_issue
Search for Zendesk tickets Official FireHydrant endpoint: GET /v1/integrations/zendesk/search Search for Zendesk tickets
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_zendesk_customer_support_issue '{}' --json kosmo integrations:firehydrant firehydrant_get_zendesk_customer_support_issue '{}' --json firehydrant.firehydrant_list_users
List users Official FireHydrant endpoint: GET /v1/users Retrieve a list of all users in an organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_users '{}' --json kosmo integrations:firehydrant firehydrant_list_users '{}' --json firehydrant.firehydrant_get_user
Get a user Official FireHydrant endpoint: GET /v1/users/{id} Retrieve a single user by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_user '{}' --json kosmo integrations:firehydrant firehydrant_get_user '{}' --json firehydrant.firehydrant_list_user_owned_services
List services owned by a user's teams Official FireHydrant endpoint: GET /v1/users/{id}/services Retrieves a list of services owned by the teams a user is on
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_user_owned_services '{}' --json kosmo integrations:firehydrant firehydrant_list_user_owned_services '{}' --json firehydrant.firehydrant_get_current_user
Get the currently authenticated user Official FireHydrant endpoint: GET /v1/current_user Retrieve the current user
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_current_user '{}' --json kosmo integrations:firehydrant firehydrant_get_current_user '{}' --json firehydrant.firehydrant_list_permissions
List permissions Official FireHydrant endpoint: GET /v1/permissions List all permissions in the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_permissions '{}' --json kosmo integrations:firehydrant firehydrant_list_permissions '{}' --json firehydrant.firehydrant_list_current_user_permissions
Get all permissions for the current user Official FireHydrant endpoint: GET /v1/permissions/current_user Get all permissions for the current user
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_current_user_permissions '{}' --json kosmo integrations:firehydrant firehydrant_list_current_user_permissions '{}' --json firehydrant.firehydrant_list_team_permissions
Get all permissions for a team Official FireHydrant endpoint: GET /v1/permissions/team Get all permissions for a team
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_team_permissions '{}' --json kosmo integrations:firehydrant firehydrant_list_team_permissions '{}' --json firehydrant.firehydrant_get_mean_time_report
Get mean time metrics for incidents Official FireHydrant endpoint: GET /v1/reports/mean_time Returns a report with time bucketed analytics data
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_mean_time_report '{}' --json kosmo integrations:firehydrant firehydrant_get_mean_time_report '{}' --json firehydrant.firehydrant_list_retrospectives
List retrospective reports Official FireHydrant endpoint: GET /v1/retrospectives List all retrospective reports
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_retrospectives '{}' --json kosmo integrations:firehydrant firehydrant_list_retrospectives '{}' --json firehydrant.firehydrant_list_roles
Get all roles Official FireHydrant endpoint: GET /v1/roles Get all roles in the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_roles '{}' --json kosmo integrations:firehydrant firehydrant_list_roles '{}' --json firehydrant.firehydrant_create_role
Create a role Official FireHydrant endpoint: POST /v1/roles Create a new role
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_role '{}' --json kosmo integrations:firehydrant firehydrant_create_role '{}' --json firehydrant.firehydrant_get_role
Get a role Official FireHydrant endpoint: GET /v1/roles/{id} Get a role
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_role '{}' --json kosmo integrations:firehydrant firehydrant_get_role '{}' --json firehydrant.firehydrant_update_role
Update a role Official FireHydrant endpoint: PATCH /v1/roles/{id} Update a role
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_role '{}' --json kosmo integrations:firehydrant firehydrant_update_role '{}' --json firehydrant.firehydrant_delete_role
Delete a role Official FireHydrant endpoint: DELETE /v1/roles/{id} Delete a role
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_role '{}' --json kosmo integrations:firehydrant firehydrant_delete_role '{}' --json firehydrant.firehydrant_list_ticket_funnel_metrics
List ticket task and follow up creation and completion metrics Official FireHydrant endpoint: GET /v1/metrics/ticket_funnel Returns a report with task and follow up creation and completion data
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_ticket_funnel_metrics '{}' --json kosmo integrations:firehydrant firehydrant_list_ticket_funnel_metrics '{}' --json firehydrant.firehydrant_list_retrospective_metrics
List retrospective metrics Official FireHydrant endpoint: GET /v1/metrics/retrospectives Returns a report with retrospective analytics data
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_retrospective_metrics '{}' --json kosmo integrations:firehydrant firehydrant_list_retrospective_metrics '{}' --json firehydrant.firehydrant_list_milestone_funnel_metrics
List milestone funnel metrics Official FireHydrant endpoint: GET /v1/metrics/milestone_funnel Returns a report with time bucketed milestone data
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_milestone_funnel_metrics '{}' --json kosmo integrations:firehydrant firehydrant_list_milestone_funnel_metrics '{}' --json firehydrant.firehydrant_list_user_involvement_metrics
List user metrics Official FireHydrant endpoint: GET /v1/metrics/user_involvements Returns a report with time bucketed analytics data
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_user_involvement_metrics '{}' --json kosmo integrations:firehydrant firehydrant_list_user_involvement_metrics '{}' --json firehydrant.firehydrant_list_incident_metrics
List incident metrics and analytics Official FireHydrant endpoint: GET /v1/metrics/incidents Returns a report with time bucketed analytics data
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_incident_metrics '{}' --json kosmo integrations:firehydrant firehydrant_list_incident_metrics '{}' --json firehydrant.firehydrant_list_mttx_metrics
Get infrastructure metrics Official FireHydrant endpoint: GET /v1/metrics/mttx Fetch infrastructure metrics based on custom query
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_mttx_metrics '{}' --json kosmo integrations:firehydrant firehydrant_list_mttx_metrics '{}' --json firehydrant.firehydrant_list_infrastructure_type_metrics
List metrics for a component type Official FireHydrant endpoint: GET /v1/metrics/{infra_type} Returns metrics for all components of a given type
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_infrastructure_type_metrics '{}' --json kosmo integrations:firehydrant firehydrant_list_infrastructure_type_metrics '{}' --json firehydrant.firehydrant_list_infrastructure_metrics
Get metrics for a component Official FireHydrant endpoint: GET /v1/metrics/{infra_type}/{infra_id} Return metrics for a specific component
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_infrastructure_metrics '{}' --json kosmo integrations:firehydrant firehydrant_list_infrastructure_metrics '{}' --json firehydrant.firehydrant_list_runbook_actions
List runbook actions Official FireHydrant endpoint: GET /v1/runbooks/actions List all runbook actions available through your connected integrations
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_runbook_actions '{}' --json kosmo integrations:firehydrant firehydrant_list_runbook_actions '{}' --json firehydrant.firehydrant_list_runbook_executions
List runbook executions Official FireHydrant endpoint: GET /v1/runbooks/executions List all runbook executions across all runbooks
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_runbook_executions '{}' --json kosmo integrations:firehydrant firehydrant_list_runbook_executions '{}' --json firehydrant.firehydrant_create_runbook_execution
Create a runbook execution Official FireHydrant endpoint: POST /v1/runbooks/executions Attaches a runbook to an incident and executes it
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_runbook_execution '{}' --json kosmo integrations:firehydrant firehydrant_create_runbook_execution '{}' --json firehydrant.firehydrant_get_runbook_execution
Get a runbook execution Official FireHydrant endpoint: GET /v1/runbooks/executions/{execution_id} Retrieve a runbook execution by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_runbook_execution '{}' --json kosmo integrations:firehydrant firehydrant_get_runbook_execution '{}' --json firehydrant.firehydrant_delete_runbook_execution
Terminate a runbook execution Official FireHydrant endpoint: DELETE /v1/runbooks/executions/{execution_id} Terminates a runbook execution, preventing any further steps from being executed
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_runbook_execution '{}' --json kosmo integrations:firehydrant firehydrant_delete_runbook_execution '{}' --json firehydrant.firehydrant_update_runbook_execution_step
Update a runbook step execution Official FireHydrant endpoint: PUT /v1/runbooks/executions/{execution_id}/steps/{step_id} Updates a runbook step execution, especially for changing the state of a step execution.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_runbook_execution_step '{}' --json kosmo integrations:firehydrant firehydrant_update_runbook_execution_step '{}' --json firehydrant.firehydrant_get_runbook_execution_step_script
Get a step's bash script Official FireHydrant endpoint: GET /v1/runbooks/executions/{execution_id}/steps/{step_id}/script Retrieves the bash script from a \"script\" step.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_runbook_execution_step_script '{}' --json kosmo integrations:firehydrant firehydrant_get_runbook_execution_step_script '{}' --json firehydrant.firehydrant_update_runbook_execution_step_script
Update a script step's execution status Official FireHydrant endpoint: PUT /v1/runbooks/executions/{execution_id}/steps/{step_id}/script/{state} Updates the execution's step.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_runbook_execution_step_script '{}' --json kosmo integrations:firehydrant firehydrant_update_runbook_execution_step_script '{}' --json firehydrant.firehydrant_get_runbook_action_field_options
List select options for a runbook integration action field Official FireHydrant endpoint: GET /v1/runbooks/select_options/{integration_slug}/{action_slug}/{field} List select options for a runbook integration action field
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_runbook_action_field_options '{}' --json kosmo integrations:firehydrant firehydrant_get_runbook_action_field_options '{}' --json firehydrant.firehydrant_list_runbooks
List runbooks Official FireHydrant endpoint: GET /v1/runbooks Lists all available runbooks.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_runbooks '{}' --json kosmo integrations:firehydrant firehydrant_list_runbooks '{}' --json firehydrant.firehydrant_create_runbook
Create a runbook Official FireHydrant endpoint: POST /v1/runbooks Create a new runbook for use with incidents.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_runbook '{}' --json kosmo integrations:firehydrant firehydrant_create_runbook '{}' --json firehydrant.firehydrant_get_runbook
Get a runbook Official FireHydrant endpoint: GET /v1/runbooks/{runbook_id} Get a runbook and all its configuration
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_runbook '{}' --json kosmo integrations:firehydrant firehydrant_get_runbook '{}' --json firehydrant.firehydrant_update_runbook
Update a runbook Official FireHydrant endpoint: PUT /v1/runbooks/{runbook_id} Update a runbook and any attachment rules associated with it. This endpoint is used to configure nearly everything about a runbook, including but not limited to t
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_runbook '{}' --json kosmo integrations:firehydrant firehydrant_update_runbook '{}' --json firehydrant.firehydrant_delete_runbook
Delete a runbook Official FireHydrant endpoint: DELETE /v1/runbooks/{runbook_id} Delete a runbook and make it unavailable for any future incidents.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_runbook '{}' --json kosmo integrations:firehydrant firehydrant_delete_runbook '{}' --json firehydrant.firehydrant_list_runbook_audits
List runbook audits Official FireHydrant endpoint: GET /v1/runbook_audits This endpoint is deprecated.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_runbook_audits '{}' --json kosmo integrations:firehydrant firehydrant_list_runbook_audits '{}' --json firehydrant.firehydrant_list_audit_events
List audit events Official FireHydrant endpoint: GET /v1/audit_events List audit events
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_audit_events '{}' --json kosmo integrations:firehydrant firehydrant_list_audit_events '{}' --json firehydrant.firehydrant_get_audit_event
Get a single audit event Official FireHydrant endpoint: GET /v1/audit_events/{id} Get a single audit event
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_audit_event '{}' --json kosmo integrations:firehydrant firehydrant_get_audit_event '{}' --json firehydrant.firehydrant_list_nunc_connections
List status pages Official FireHydrant endpoint: GET /v1/nunc_connections Lists the information displayed as part of your FireHydrant hosted status pages.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_nunc_connections '{}' --json kosmo integrations:firehydrant firehydrant_list_nunc_connections '{}' --json firehydrant.firehydrant_create_nunc_connection
Create a status page Official FireHydrant endpoint: POST /v1/nunc_connections Create a new FireHydrant hosted status page for customer facing statuses.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_nunc_connection '{}' --json kosmo integrations:firehydrant firehydrant_create_nunc_connection '{}' --json firehydrant.firehydrant_list_email_subscribers
List status page subscribers Official FireHydrant endpoint: GET /v1/nunc_connections/{nunc_connection_id}/subscribers Retrieves the list of subscribers for a status page.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_email_subscribers '{}' --json kosmo integrations:firehydrant firehydrant_list_email_subscribers '{}' --json firehydrant.firehydrant_create_email_subscriber
Add subscribers to a status page Official FireHydrant endpoint: POST /v1/nunc_connections/{nunc_connection_id}/subscribers Subscribes a comma-separated string of emails to status page updates
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_email_subscriber '{}' --json kosmo integrations:firehydrant firehydrant_create_email_subscriber '{}' --json firehydrant.firehydrant_delete_email_subscriber
Remove subscribers from a status page Official FireHydrant endpoint: DELETE /v1/nunc_connections/{nunc_connection_id}/subscribers Unsubscribes one or more status page subscribers.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_email_subscriber '{}' --json kosmo integrations:firehydrant firehydrant_delete_email_subscriber '{}' --json firehydrant.firehydrant_get_nunc_connection
Get a status page Official FireHydrant endpoint: GET /v1/nunc_connections/{nunc_connection_id} Retrieve the information displayed as part of your FireHydrant hosted status page.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_nunc_connection '{}' --json kosmo integrations:firehydrant firehydrant_get_nunc_connection '{}' --json firehydrant.firehydrant_update_nunc_connection
Update a status page Official FireHydrant endpoint: PUT /v1/nunc_connections/{nunc_connection_id} Update your company's information and other components in the specified FireHydrant hosted status page.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_nunc_connection '{}' --json kosmo integrations:firehydrant firehydrant_update_nunc_connection '{}' --json firehydrant.firehydrant_delete_nunc_connection
Delete a status page Official FireHydrant endpoint: DELETE /v1/nunc_connections/{nunc_connection_id} Delete a FireHydrant hosted status page, stopping updates of your incidents to it.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_nunc_connection '{}' --json kosmo integrations:firehydrant firehydrant_delete_nunc_connection '{}' --json firehydrant.firehydrant_unpublish_nunc_connection
Unpublish a status page Official FireHydrant endpoint: POST /v1/nunc_connections/{nunc_connection_id}/unpublish Unpublish a FireHydrant hosted status page
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_unpublish_nunc_connection '{}' --json kosmo integrations:firehydrant firehydrant_unpublish_nunc_connection '{}' --json firehydrant.firehydrant_publish_nunc_connection
Publish a status page Official FireHydrant endpoint: POST /v1/nunc_connections/{nunc_connection_id}/publish Publish a FireHydrant hosted status page
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_publish_nunc_connection '{}' --json kosmo integrations:firehydrant firehydrant_publish_nunc_connection '{}' --json firehydrant.firehydrant_update_nunc_component_group
Update a status page component group Official FireHydrant endpoint: PATCH /v1/nunc_connections/{nunc_connection_id}/component_groups/{group_id} Update a component group to be displayed on a FireHydrant status page
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_nunc_component_group '{}' --json kosmo integrations:firehydrant firehydrant_update_nunc_component_group '{}' --json firehydrant.firehydrant_delete_nunc_component_group
Delete a status page component group Official FireHydrant endpoint: DELETE /v1/nunc_connections/{nunc_connection_id}/component_groups/{group_id} Delete a component group displayed on a FireHydrant status page
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_nunc_component_group '{}' --json kosmo integrations:firehydrant firehydrant_delete_nunc_component_group '{}' --json firehydrant.firehydrant_create_nunc_component_group
Create a component group for a status page Official FireHydrant endpoint: POST /v1/nunc_connections/{nunc_connection_id}/component_groups Add a component group to be displayed on a FireHydrant status page
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_nunc_component_group '{}' --json kosmo integrations:firehydrant firehydrant_create_nunc_component_group '{}' --json firehydrant.firehydrant_update_nunc_link
Update a status page link Official FireHydrant endpoint: PATCH /v1/nunc_connections/{nunc_connection_id}/links/{link_id} Update a link to be displayed on a FireHydrant status page
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_nunc_link '{}' --json kosmo integrations:firehydrant firehydrant_update_nunc_link '{}' --json firehydrant.firehydrant_delete_nunc_link
Delete a status page link Official FireHydrant endpoint: DELETE /v1/nunc_connections/{nunc_connection_id}/links/{link_id} Delete a link displayed on a FireHydrant status page
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_nunc_link '{}' --json kosmo integrations:firehydrant firehydrant_delete_nunc_link '{}' --json firehydrant.firehydrant_create_nunc_link
Add link to a status page Official FireHydrant endpoint: POST /v1/nunc_connections/{nunc_connection_id}/links Add a link to be displayed on a FireHydrant status page
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_nunc_link '{}' --json kosmo integrations:firehydrant firehydrant_create_nunc_link '{}' --json firehydrant.firehydrant_update_nunc_image
Upload an image for a status page Official FireHydrant endpoint: PUT /v1/nunc_connections/{nunc_connection_id}/images/{type} Add or replace an image attached to a FireHydrant status page
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_nunc_image '{}' --json kosmo integrations:firehydrant firehydrant_update_nunc_image '{}' --json firehydrant.firehydrant_delete_nunc_image
Delete an image from a status page Official FireHydrant endpoint: DELETE /v1/nunc_connections/{nunc_connection_id}/images/{type} Delete an image attached to a FireHydrant status page
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_nunc_image '{}' --json kosmo integrations:firehydrant firehydrant_delete_nunc_image '{}' --json firehydrant.firehydrant_get_saved_search
Get a saved search Official FireHydrant endpoint: GET /v1/saved_searches/{resource_type}/{saved_search_id} Retrieve a specific save search
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_saved_search '{}' --json kosmo integrations:firehydrant firehydrant_get_saved_search '{}' --json firehydrant.firehydrant_update_saved_search
Update a saved search Official FireHydrant endpoint: PATCH /v1/saved_searches/{resource_type}/{saved_search_id} Update a specific saved search
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_saved_search '{}' --json kosmo integrations:firehydrant firehydrant_update_saved_search '{}' --json firehydrant.firehydrant_delete_saved_search
Delete a saved search Official FireHydrant endpoint: DELETE /v1/saved_searches/{resource_type}/{saved_search_id} Delete a specific saved search
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_saved_search '{}' --json kosmo integrations:firehydrant firehydrant_delete_saved_search '{}' --json firehydrant.firehydrant_list_saved_searches
List saved searches Official FireHydrant endpoint: GET /v1/saved_searches/{resource_type} Lists saved searches
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_saved_searches '{}' --json kosmo integrations:firehydrant firehydrant_list_saved_searches '{}' --json firehydrant.firehydrant_create_saved_search
Create a saved search Official FireHydrant endpoint: POST /v1/saved_searches/{resource_type} Create a new saved search for a particular resource type
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_saved_search '{}' --json kosmo integrations:firehydrant firehydrant_create_saved_search '{}' --json firehydrant.firehydrant_list_lifecycle_measurement_definitions
List measurement definitions Official FireHydrant endpoint: GET /v1/lifecycles/measurement_definitions List all of the measurement definitions in the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_lifecycle_measurement_definitions '{}' --json kosmo integrations:firehydrant firehydrant_list_lifecycle_measurement_definitions '{}' --json firehydrant.firehydrant_create_lifecycle_measurement_definition
Create a measurement definition Official FireHydrant endpoint: POST /v1/lifecycles/measurement_definitions Create a new measurement definition
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_lifecycle_measurement_definition '{}' --json kosmo integrations:firehydrant firehydrant_create_lifecycle_measurement_definition '{}' --json firehydrant.firehydrant_get_lifecycle_measurement_definition
Get a measurement definition Official FireHydrant endpoint: GET /v1/lifecycles/measurement_definitions/{measurement_definition_id} Retrieve a single measurement definition from its ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_lifecycle_measurement_definition '{}' --json kosmo integrations:firehydrant firehydrant_get_lifecycle_measurement_definition '{}' --json firehydrant.firehydrant_update_lifecycle_measurement_definition
Update a measurement definition Official FireHydrant endpoint: PATCH /v1/lifecycles/measurement_definitions/{measurement_definition_id} Update a single measurement definition from its ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_lifecycle_measurement_definition '{}' --json kosmo integrations:firehydrant firehydrant_update_lifecycle_measurement_definition '{}' --json firehydrant.firehydrant_delete_lifecycle_measurement_definition
Archive a measurement definition Official FireHydrant endpoint: DELETE /v1/lifecycles/measurement_definitions/{measurement_definition_id} Archives a measurement definition which will hide it from lists and metrics
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_lifecycle_measurement_definition '{}' --json kosmo integrations:firehydrant firehydrant_delete_lifecycle_measurement_definition '{}' --json firehydrant.firehydrant_list_lifecycle_phases
List phases and milestones Official FireHydrant endpoint: GET /v1/lifecycles/phases List all of the lifecycle phases and milestones in the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_lifecycle_phases '{}' --json kosmo integrations:firehydrant firehydrant_list_lifecycle_phases '{}' --json firehydrant.firehydrant_create_lifecycle_milestone
Create a milestone Official FireHydrant endpoint: POST /v1/lifecycles/milestones Create a new milestone
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_lifecycle_milestone '{}' --json kosmo integrations:firehydrant firehydrant_create_lifecycle_milestone '{}' --json firehydrant.firehydrant_update_lifecycle_milestone
Update a milestone Official FireHydrant endpoint: PATCH /v1/lifecycles/milestones/{milestone_id} Update a milestone
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_lifecycle_milestone '{}' --json kosmo integrations:firehydrant firehydrant_update_lifecycle_milestone '{}' --json firehydrant.firehydrant_delete_lifecycle_milestone
Delete a milestone Official FireHydrant endpoint: DELETE /v1/lifecycles/milestones/{milestone_id} Delete a milestone
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_lifecycle_milestone '{}' --json kosmo integrations:firehydrant firehydrant_delete_lifecycle_milestone '{}' --json firehydrant.firehydrant_list_priorities
List priorities Official FireHydrant endpoint: GET /v1/priorities Lists priorities
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_priorities '{}' --json kosmo integrations:firehydrant firehydrant_list_priorities '{}' --json firehydrant.firehydrant_create_priority
Create a priority Official FireHydrant endpoint: POST /v1/priorities Create a new priority
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_priority '{}' --json kosmo integrations:firehydrant firehydrant_create_priority '{}' --json firehydrant.firehydrant_get_priority
Get a priority Official FireHydrant endpoint: GET /v1/priorities/{priority_slug} Retrieve a specific priority
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_priority '{}' --json kosmo integrations:firehydrant firehydrant_get_priority '{}' --json firehydrant.firehydrant_update_priority
Update a priority Official FireHydrant endpoint: PATCH /v1/priorities/{priority_slug} Update a specific priority
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_priority '{}' --json kosmo integrations:firehydrant firehydrant_update_priority '{}' --json firehydrant.firehydrant_delete_priority
Delete a priority Official FireHydrant endpoint: DELETE /v1/priorities/{priority_slug} Delete a specific priority
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_priority '{}' --json kosmo integrations:firehydrant firehydrant_delete_priority '{}' --json firehydrant.firehydrant_list_severities
List severities Official FireHydrant endpoint: GET /v1/severities Lists severities
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_severities '{}' --json kosmo integrations:firehydrant firehydrant_list_severities '{}' --json firehydrant.firehydrant_create_severity
Create a severity Official FireHydrant endpoint: POST /v1/severities Create a new severity
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_severity '{}' --json kosmo integrations:firehydrant firehydrant_create_severity '{}' --json firehydrant.firehydrant_get_severity
Get a severity Official FireHydrant endpoint: GET /v1/severities/{severity_slug} Retrieve a specific severity
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_severity '{}' --json kosmo integrations:firehydrant firehydrant_get_severity '{}' --json firehydrant.firehydrant_update_severity
Update a severity Official FireHydrant endpoint: PATCH /v1/severities/{severity_slug} Update a specific severity
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_severity '{}' --json kosmo integrations:firehydrant firehydrant_update_severity '{}' --json firehydrant.firehydrant_delete_severity
Delete a severity Official FireHydrant endpoint: DELETE /v1/severities/{severity_slug} Delete a specific severity
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_severity '{}' --json kosmo integrations:firehydrant firehydrant_delete_severity '{}' --json firehydrant.firehydrant_get_severity_matrix
Get severity matrix Official FireHydrant endpoint: GET /v1/severity_matrix Retrieve the Severity matrix for your organization and its components and configured severities.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_severity_matrix '{}' --json kosmo integrations:firehydrant firehydrant_get_severity_matrix '{}' --json firehydrant.firehydrant_update_severity_matrix
Update severity matrix Official FireHydrant endpoint: PATCH /v1/severity_matrix Update available severities and impacts in your organization's severity matrix.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_severity_matrix '{}' --json kosmo integrations:firehydrant firehydrant_update_severity_matrix '{}' --json firehydrant.firehydrant_list_severity_matrix_conditions
List severity matrix conditions Official FireHydrant endpoint: GET /v1/severity_matrix/conditions Lists conditions
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_severity_matrix_conditions '{}' --json kosmo integrations:firehydrant firehydrant_list_severity_matrix_conditions '{}' --json firehydrant.firehydrant_create_severity_matrix_condition
Create a severity matrix condition Official FireHydrant endpoint: POST /v1/severity_matrix/conditions Create a new condition
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_severity_matrix_condition '{}' --json kosmo integrations:firehydrant firehydrant_create_severity_matrix_condition '{}' --json firehydrant.firehydrant_get_severity_matrix_condition
Get a severity matrix condition Official FireHydrant endpoint: GET /v1/severity_matrix/conditions/{condition_id} Retrieve a specific condition
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_severity_matrix_condition '{}' --json kosmo integrations:firehydrant firehydrant_get_severity_matrix_condition '{}' --json firehydrant.firehydrant_update_severity_matrix_condition
Update a severity matrix condition Official FireHydrant endpoint: PATCH /v1/severity_matrix/conditions/{condition_id} Update a severity matrix condition
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_severity_matrix_condition '{}' --json kosmo integrations:firehydrant firehydrant_update_severity_matrix_condition '{}' --json firehydrant.firehydrant_delete_severity_matrix_condition
Delete a severity matrix condition Official FireHydrant endpoint: DELETE /v1/severity_matrix/conditions/{condition_id} Delete a specific condition
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_severity_matrix_condition '{}' --json kosmo integrations:firehydrant firehydrant_delete_severity_matrix_condition '{}' --json firehydrant.firehydrant_list_severity_matrix_impacts
List severity matrix impacts Official FireHydrant endpoint: GET /v1/severity_matrix/impacts Lists impacts
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_severity_matrix_impacts '{}' --json kosmo integrations:firehydrant firehydrant_list_severity_matrix_impacts '{}' --json firehydrant.firehydrant_create_severity_matrix_impact
Create a severity matrix impact Official FireHydrant endpoint: POST /v1/severity_matrix/impacts Create a new impact
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_severity_matrix_impact '{}' --json kosmo integrations:firehydrant firehydrant_create_severity_matrix_impact '{}' --json firehydrant.firehydrant_update_severity_matrix_impact
Update a severity matrix impact Official FireHydrant endpoint: PATCH /v1/severity_matrix/impacts/{impact_id} Update a severity matrix impact
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_severity_matrix_impact '{}' --json kosmo integrations:firehydrant firehydrant_update_severity_matrix_impact '{}' --json firehydrant.firehydrant_delete_severity_matrix_impact
Delete a severity matrix impact Official FireHydrant endpoint: DELETE /v1/severity_matrix/impacts/{impact_id} Delete a specific impact
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_severity_matrix_impact '{}' --json kosmo integrations:firehydrant firehydrant_delete_severity_matrix_impact '{}' --json firehydrant.firehydrant_list_scheduled_maintenances
List scheduled maintenance events Official FireHydrant endpoint: GET /v1/scheduled_maintenances Lists all scheduled maintenance events
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_scheduled_maintenances '{}' --json kosmo integrations:firehydrant firehydrant_list_scheduled_maintenances '{}' --json firehydrant.firehydrant_create_scheduled_maintenance
Create a scheduled maintenance event Official FireHydrant endpoint: POST /v1/scheduled_maintenances Create a new scheduled maintenance event
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_scheduled_maintenance '{}' --json kosmo integrations:firehydrant firehydrant_create_scheduled_maintenance '{}' --json firehydrant.firehydrant_get_scheduled_maintenance
Get a scheduled maintenance event Official FireHydrant endpoint: GET /v1/scheduled_maintenances/{scheduled_maintenance_id} Fetch the details of a scheduled maintenance event.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_scheduled_maintenance '{}' --json kosmo integrations:firehydrant firehydrant_get_scheduled_maintenance '{}' --json firehydrant.firehydrant_update_scheduled_maintenance
Update a scheduled maintenance event Official FireHydrant endpoint: PATCH /v1/scheduled_maintenances/{scheduled_maintenance_id} Change the conditions of a scheduled maintenance event, including updating any status page announcements of chan
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_scheduled_maintenance '{}' --json kosmo integrations:firehydrant firehydrant_update_scheduled_maintenance '{}' --json firehydrant.firehydrant_delete_scheduled_maintenance
Delete a scheduled maintenance event Official FireHydrant endpoint: DELETE /v1/scheduled_maintenances/{scheduled_maintenance_id} Delete a scheduled maintenance event, preventing it from taking place.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_scheduled_maintenance '{}' --json kosmo integrations:firehydrant firehydrant_delete_scheduled_maintenance '{}' --json firehydrant.firehydrant_list_schedules
List schedules Official FireHydrant endpoint: GET /v1/schedules List all known schedules in FireHydrant as pulled from external sources
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_schedules '{}' --json kosmo integrations:firehydrant firehydrant_list_schedules '{}' --json firehydrant.firehydrant_list_infrastructures
Lists functionality, service and environment objects Official FireHydrant endpoint: GET /v1/infrastructures Lists functionality, service and environment objects
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_infrastructures '{}' --json kosmo integrations:firehydrant firehydrant_list_infrastructures '{}' --json firehydrant.firehydrant_delete_nunc_subscription
Unsubscribe from status page notifications Official FireHydrant endpoint: DELETE /v1/nunc/subscriptions/{unsubscribe_token} Unsubscribe from status page updates
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_nunc_subscription '{}' --json kosmo integrations:firehydrant firehydrant_delete_nunc_subscription '{}' --json firehydrant.firehydrant_create_nunc_subscription
Create a status page subscription Official FireHydrant endpoint: POST /v1/nunc/subscriptions Subscribe to status page updates
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_nunc_subscription '{}' --json kosmo integrations:firehydrant firehydrant_create_nunc_subscription '{}' --json firehydrant.firehydrant_list_status_update_templates
List status update templates Official FireHydrant endpoint: GET /v1/status_update_templates List all status update templates for your organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_status_update_templates '{}' --json kosmo integrations:firehydrant firehydrant_list_status_update_templates '{}' --json firehydrant.firehydrant_create_status_update_template
Create a status update template Official FireHydrant endpoint: POST /v1/status_update_templates Create a status update template for your organization
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_status_update_template '{}' --json kosmo integrations:firehydrant firehydrant_create_status_update_template '{}' --json firehydrant.firehydrant_get_status_update_template
Get a status update template Official FireHydrant endpoint: GET /v1/status_update_templates/{status_update_template_id} Get a single status update template by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_status_update_template '{}' --json kosmo integrations:firehydrant firehydrant_get_status_update_template '{}' --json firehydrant.firehydrant_update_status_update_template
Update a status update template Official FireHydrant endpoint: PATCH /v1/status_update_templates/{status_update_template_id} Update a single status update template
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_status_update_template '{}' --json kosmo integrations:firehydrant firehydrant_update_status_update_template '{}' --json firehydrant.firehydrant_delete_status_update_template
Delete a status update template Official FireHydrant endpoint: DELETE /v1/status_update_templates/{status_update_template_id} Delete a single status update template
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_status_update_template '{}' --json kosmo integrations:firehydrant firehydrant_delete_status_update_template '{}' --json firehydrant.firehydrant_update_custom_field_definition
Update a custom field definition Official FireHydrant endpoint: PATCH /v1/custom_fields/definitions/{field_id} Update a single custom field definition
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_custom_field_definition '{}' --json kosmo integrations:firehydrant firehydrant_update_custom_field_definition '{}' --json firehydrant.firehydrant_delete_custom_field_definition
Delete a custom field definition Official FireHydrant endpoint: DELETE /v1/custom_fields/definitions/{field_id} Delete a custom field definition
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_custom_field_definition '{}' --json kosmo integrations:firehydrant firehydrant_delete_custom_field_definition '{}' --json firehydrant.firehydrant_list_custom_field_definitions
List custom field definitions Official FireHydrant endpoint: GET /v1/custom_fields/definitions List all custom field definitions
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_custom_field_definitions '{}' --json kosmo integrations:firehydrant firehydrant_list_custom_field_definitions '{}' --json firehydrant.firehydrant_create_custom_field_definition
Create a custom field definition Official FireHydrant endpoint: POST /v1/custom_fields/definitions Create a new custom field definition
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_custom_field_definition '{}' --json kosmo integrations:firehydrant firehydrant_create_custom_field_definition '{}' --json firehydrant.firehydrant_list_custom_field_select_options
Get available values for a custom field Official FireHydrant endpoint: GET /v1/custom_fields/definitions/{field_id}/select_options Get the permissible values for the a currently active custom select or multi-select field.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_custom_field_select_options '{}' --json kosmo integrations:firehydrant firehydrant_list_custom_field_select_options '{}' --json firehydrant.firehydrant_list_post_mortem_reports
List retrospective reports Official FireHydrant endpoint: GET /v1/post_mortems/reports List all reports
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_post_mortem_reports '{}' --json kosmo integrations:firehydrant firehydrant_list_post_mortem_reports '{}' --json firehydrant.firehydrant_create_post_mortem_report
Create a retrospective report Official FireHydrant endpoint: POST /v1/post_mortems/reports Create a report
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_post_mortem_report '{}' --json kosmo integrations:firehydrant firehydrant_create_post_mortem_report '{}' --json firehydrant.firehydrant_get_post_mortem_report
Get a retrospective report Official FireHydrant endpoint: GET /v1/post_mortems/reports/{report_id} Get a report
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_post_mortem_report '{}' --json kosmo integrations:firehydrant firehydrant_get_post_mortem_report '{}' --json firehydrant.firehydrant_update_post_mortem_report
Update a retrospective report Official FireHydrant endpoint: PATCH /v1/post_mortems/reports/{report_id} Update a report
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_post_mortem_report '{}' --json kosmo integrations:firehydrant firehydrant_update_post_mortem_report '{}' --json firehydrant.firehydrant_list_post_mortem_reasons
List contributing factors for a retrospective report Official FireHydrant endpoint: GET /v1/post_mortems/reports/{report_id}/reasons List all contributing factors to an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_post_mortem_reasons '{}' --json kosmo integrations:firehydrant firehydrant_list_post_mortem_reasons '{}' --json firehydrant.firehydrant_create_post_mortem_reason
Create a contributing factor for a retrospective report Official FireHydrant endpoint: POST /v1/post_mortems/reports/{report_id}/reasons Add a new contributing factor to an incident
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_post_mortem_reason '{}' --json kosmo integrations:firehydrant firehydrant_create_post_mortem_reason '{}' --json firehydrant.firehydrant_update_post_mortem_reason
Update a contributing factor in a retrospective report Official FireHydrant endpoint: PATCH /v1/post_mortems/reports/{report_id}/reasons/{reason_id} Update a contributing factor
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_post_mortem_reason '{}' --json kosmo integrations:firehydrant firehydrant_update_post_mortem_reason '{}' --json firehydrant.firehydrant_delete_post_mortem_reason
Delete a contributing factor from a retrospective report Official FireHydrant endpoint: DELETE /v1/post_mortems/reports/{report_id}/reasons/{reason_id} Delete a contributing factor
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_post_mortem_reason '{}' --json kosmo integrations:firehydrant firehydrant_delete_post_mortem_reason '{}' --json firehydrant.firehydrant_reorder_post_mortem_reasons
Reorder a contributing factor for a retrospective report Official FireHydrant endpoint: PUT /v1/post_mortems/reports/{report_id}/reasons/order Update the order of contributing factors in a retrospective report
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_reorder_post_mortem_reasons '{}' --json kosmo integrations:firehydrant firehydrant_reorder_post_mortem_reasons '{}' --json firehydrant.firehydrant_publish_post_mortem_report
Publish a retrospective report Official FireHydrant endpoint: POST /v1/post_mortems/reports/{report_id}/publish Marks an incident retrospective as published and emails all of the participants in the report the summary
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_publish_post_mortem_report '{}' --json kosmo integrations:firehydrant firehydrant_publish_post_mortem_report '{}' --json firehydrant.firehydrant_update_post_mortem_field
Update a retrospective field Official FireHydrant endpoint: PATCH /v1/post_mortems/reports/{report_id}/fields/{field_id} Update a field value on a post mortem report
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_post_mortem_field '{}' --json kosmo integrations:firehydrant firehydrant_update_post_mortem_field '{}' --json firehydrant.firehydrant_list_post_mortem_questions
List retrospective questions Official FireHydrant endpoint: GET /v1/post_mortems/questions List the questions configured to be provided and filled out on each retrospective report.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_post_mortem_questions '{}' --json kosmo integrations:firehydrant firehydrant_list_post_mortem_questions '{}' --json firehydrant.firehydrant_update_post_mortem_questions
Update retrospective questions Official FireHydrant endpoint: PUT /v1/post_mortems/questions Update the questions configured to be provided and filled out on future retrospective reports.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_post_mortem_questions '{}' --json kosmo integrations:firehydrant firehydrant_update_post_mortem_questions '{}' --json firehydrant.firehydrant_get_post_mortem_question
Get a retrospective question Official FireHydrant endpoint: GET /v1/post_mortems/questions/{question_id} Get an incident retrospective question configured to be provided and filled out on each retrospective report.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_post_mortem_question '{}' --json kosmo integrations:firehydrant firehydrant_get_post_mortem_question '{}' --json firehydrant.firehydrant_list_retrospective_templates
List retrospective templates Official FireHydrant endpoint: GET /v1/retrospective_templates List all retrospective templates
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_retrospective_templates '{}' --json kosmo integrations:firehydrant firehydrant_list_retrospective_templates '{}' --json firehydrant.firehydrant_create_retrospective_template
Create a retrospective template Official FireHydrant endpoint: POST /v1/retrospective_templates Create a new retrospective template
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_retrospective_template '{}' --json kosmo integrations:firehydrant firehydrant_create_retrospective_template '{}' --json firehydrant.firehydrant_get_retrospective_template
Get a retrospective template Official FireHydrant endpoint: GET /v1/retrospective_templates/{retrospective_template_id} Retrieve a single retrospective template by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_retrospective_template '{}' --json kosmo integrations:firehydrant firehydrant_get_retrospective_template '{}' --json firehydrant.firehydrant_update_retrospective_template
Update a retrospective template Official FireHydrant endpoint: PATCH /v1/retrospective_templates/{retrospective_template_id} Update a single retrospective template
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_retrospective_template '{}' --json kosmo integrations:firehydrant firehydrant_update_retrospective_template '{}' --json firehydrant.firehydrant_delete_retrospective_template
Delete a retrospective template Official FireHydrant endpoint: DELETE /v1/retrospective_templates/{retrospective_template_id} Delete a single retrospective template
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_retrospective_template '{}' --json kosmo integrations:firehydrant firehydrant_delete_retrospective_template '{}' --json firehydrant.firehydrant_list_alerts
List alerts Official FireHydrant endpoint: GET /v1/alerts Retrieve all alerts, including Signals alerts and third-party
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_alerts '{}' --json kosmo integrations:firehydrant firehydrant_list_alerts '{}' --json firehydrant.firehydrant_get_alert
Get an alert Official FireHydrant endpoint: GET /v1/alerts/{alert_id} Retrieve a single alert
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_alert '{}' --json kosmo integrations:firehydrant firehydrant_get_alert '{}' --json firehydrant.firehydrant_list_processing_log_entries
List alert processing log entries Official FireHydrant endpoint: GET /v1/processing_log_entries Processing Log Entries for a specific alert
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_processing_log_entries '{}' --json kosmo integrations:firehydrant firehydrant_list_processing_log_entries '{}' --json firehydrant.firehydrant_create_signals_page
Page a user, team, on-call schedule, or escalation policy Official FireHydrant endpoint: POST /v1/page/signals Used for paging an on-call target within FireHydrant's signals product. This can be used for paging users, teams, on-call schedul
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_signals_page '{}' --json kosmo integrations:firehydrant firehydrant_create_signals_page '{}' --json firehydrant.firehydrant_list_tickets
List tickets Official FireHydrant endpoint: GET /v1/ticketing/tickets List all of the tickets that have been added to the organiation
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_tickets '{}' --json kosmo integrations:firehydrant firehydrant_list_tickets '{}' --json firehydrant.firehydrant_create_ticket
Create a ticket Official FireHydrant endpoint: POST /v1/ticketing/tickets Creates a ticket for a project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_ticket '{}' --json kosmo integrations:firehydrant firehydrant_create_ticket '{}' --json firehydrant.firehydrant_get_ticket
Get a ticket Official FireHydrant endpoint: GET /v1/ticketing/tickets/{ticket_id} Retrieves a single ticket by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_ticket '{}' --json kosmo integrations:firehydrant firehydrant_get_ticket '{}' --json firehydrant.firehydrant_update_ticket
Update a ticket Official FireHydrant endpoint: PATCH /v1/ticketing/tickets/{ticket_id} Update a ticket's attributes
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_ticket '{}' --json kosmo integrations:firehydrant firehydrant_update_ticket '{}' --json firehydrant.firehydrant_delete_ticket
Archive a ticket Official FireHydrant endpoint: DELETE /v1/ticketing/tickets/{ticket_id} Archive a ticket
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_ticket '{}' --json kosmo integrations:firehydrant firehydrant_delete_ticket '{}' --json firehydrant.firehydrant_list_ticketing_projects
List ticketing projects Official FireHydrant endpoint: GET /v1/ticketing/projects List all ticketing projects available to the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_ticketing_projects '{}' --json kosmo integrations:firehydrant firehydrant_list_ticketing_projects '{}' --json firehydrant.firehydrant_get_ticketing_project
Get a ticketing project Official FireHydrant endpoint: GET /v1/ticketing/projects/{ticketing_project_id} Retrieve a single ticketing project by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_ticketing_project '{}' --json kosmo integrations:firehydrant firehydrant_get_ticketing_project '{}' --json firehydrant.firehydrant_get_configuration_options
List configuration options for a ticketing project Official FireHydrant endpoint: GET /v1/ticketing/projects/{ticketing_project_id}/configuration_options List all configuration options for a ticketing project
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_configuration_options '{}' --json kosmo integrations:firehydrant firehydrant_get_configuration_options '{}' --json firehydrant.firehydrant_get_options_for_field
List a field's configuration options for a ticketing project Official FireHydrant endpoint: GET /v1/ticketing/projects/{ticketing_project_id}/configuration_options/options_for/{field_id} List a field's configuration options for a ticketing
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_options_for_field '{}' --json kosmo integrations:firehydrant firehydrant_get_options_for_field '{}' --json firehydrant.firehydrant_list_available_ticketing_field_maps
List available fields for ticket field mapping Official FireHydrant endpoint: GET /v1/ticketing/projects/{ticketing_project_id}/field_maps/available_fields Returns metadata for the fields that are available for field mapping.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_available_ticketing_field_maps '{}' --json kosmo integrations:firehydrant firehydrant_list_available_ticketing_field_maps '{}' --json firehydrant.firehydrant_create_ticketing_field_map
Create a field mapping for a ticketing project Official FireHydrant endpoint: POST /v1/ticketing/projects/{ticketing_project_id}/field_maps Creates field map for a ticketing project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_ticketing_field_map '{}' --json kosmo integrations:firehydrant firehydrant_create_ticketing_field_map '{}' --json firehydrant.firehydrant_get_ticketing_field_map
Get a field map for a ticketing project Official FireHydrant endpoint: GET /v1/ticketing/projects/{ticketing_project_id}/field_maps/{map_id} Retrieve field map for a ticketing project
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_ticketing_field_map '{}' --json kosmo integrations:firehydrant firehydrant_get_ticketing_field_map '{}' --json firehydrant.firehydrant_update_ticketing_field_map
Update a field map for a ticketing project Official FireHydrant endpoint: PATCH /v1/ticketing/projects/{ticketing_project_id}/field_maps/{map_id} Update field map for a ticketing project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_ticketing_field_map '{}' --json kosmo integrations:firehydrant firehydrant_update_ticketing_field_map '{}' --json firehydrant.firehydrant_delete_ticketing_field_map
Archive a field map for a ticketing project Official FireHydrant endpoint: DELETE /v1/ticketing/projects/{ticketing_project_id}/field_maps/{map_id} Archive field map for a ticketing project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_ticketing_field_map '{}' --json kosmo integrations:firehydrant firehydrant_delete_ticketing_field_map '{}' --json firehydrant.firehydrant_list_available_inbound_field_maps
List available fields for ticket field mapping Official FireHydrant endpoint: GET /v1/ticketing/projects/{ticketing_project_id}/inbound_field_maps/available_fields Returns metadata for the fields that are available for inbound field mapping
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_available_inbound_field_maps '{}' --json kosmo integrations:firehydrant firehydrant_list_available_inbound_field_maps '{}' --json firehydrant.firehydrant_list_inbound_field_maps
List inbound field maps for a ticketing project Official FireHydrant endpoint: GET /v1/ticketing/projects/{ticketing_project_id}/inbound_field_maps List all inbound field maps for a ticketing project
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_inbound_field_maps '{}' --json kosmo integrations:firehydrant firehydrant_list_inbound_field_maps '{}' --json firehydrant.firehydrant_create_inbound_field_map
Create inbound field map for a ticketing project Official FireHydrant endpoint: POST /v1/ticketing/projects/{ticketing_project_id}/inbound_field_maps Creates inbound field map for a ticketing project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_inbound_field_map '{}' --json kosmo integrations:firehydrant firehydrant_create_inbound_field_map '{}' --json firehydrant.firehydrant_get_inbound_field_map
Get inbound field map for a ticketing project Official FireHydrant endpoint: GET /v1/ticketing/projects/{ticketing_project_id}/inbound_field_maps/{map_id} Retrieve inbound field map for a ticketing project
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_inbound_field_map '{}' --json kosmo integrations:firehydrant firehydrant_get_inbound_field_map '{}' --json firehydrant.firehydrant_update_inbound_field_map
Update inbound field map for a ticketing project Official FireHydrant endpoint: PUT /v1/ticketing/projects/{ticketing_project_id}/inbound_field_maps/{map_id} Update inbound field map for a ticketing project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_inbound_field_map '{}' --json kosmo integrations:firehydrant firehydrant_update_inbound_field_map '{}' --json firehydrant.firehydrant_delete_inbound_field_map
Archive inbound field map for a ticketing project Official FireHydrant endpoint: DELETE /v1/ticketing/projects/{ticketing_project_id}/inbound_field_maps/{map_id} Archive inbound field map for a ticketing project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_inbound_field_map '{}' --json kosmo integrations:firehydrant firehydrant_delete_inbound_field_map '{}' --json firehydrant.firehydrant_create_ticketing_project_config
Create a ticketing project configuration Official FireHydrant endpoint: POST /v1/ticketing/projects/{ticketing_project_id}/provider_project_configurations Creates configuration for a ticketing project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_ticketing_project_config '{}' --json kosmo integrations:firehydrant firehydrant_create_ticketing_project_config '{}' --json firehydrant.firehydrant_get_ticketing_project_config
Get configuration for a ticketing project Official FireHydrant endpoint: GET /v1/ticketing/projects/{ticketing_project_id}/provider_project_configurations/{config_id} Retrieve configuration for a ticketing project
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_ticketing_project_config '{}' --json kosmo integrations:firehydrant firehydrant_get_ticketing_project_config '{}' --json firehydrant.firehydrant_update_ticketing_project_config
Update configuration for a ticketing project Official FireHydrant endpoint: PATCH /v1/ticketing/projects/{ticketing_project_id}/provider_project_configurations/{config_id} Update configuration for a ticketing project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_ticketing_project_config '{}' --json kosmo integrations:firehydrant firehydrant_update_ticketing_project_config '{}' --json firehydrant.firehydrant_delete_ticketing_project_config
Archive a ticketing project configuration Official FireHydrant endpoint: DELETE /v1/ticketing/projects/{ticketing_project_id}/provider_project_configurations/{config_id} Archive configuration for a ticketing project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_ticketing_project_config '{}' --json kosmo integrations:firehydrant firehydrant_delete_ticketing_project_config '{}' --json firehydrant.firehydrant_list_ticketing_priorities
List ticketing priorities Official FireHydrant endpoint: GET /v1/ticketing/priorities List all ticketing priorities available to the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_ticketing_priorities '{}' --json kosmo integrations:firehydrant firehydrant_list_ticketing_priorities '{}' --json firehydrant.firehydrant_create_ticketing_priority
Create a ticketing priority Official FireHydrant endpoint: POST /v1/ticketing/priorities Create a single ticketing priority
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_ticketing_priority '{}' --json kosmo integrations:firehydrant firehydrant_create_ticketing_priority '{}' --json firehydrant.firehydrant_get_ticketing_priority
Get a ticketing priority Official FireHydrant endpoint: GET /v1/ticketing/priorities/{id} Retrieve a single ticketing priority by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_ticketing_priority '{}' --json kosmo integrations:firehydrant firehydrant_get_ticketing_priority '{}' --json firehydrant.firehydrant_update_ticketing_priority
Update a ticketing priority Official FireHydrant endpoint: PATCH /v1/ticketing/priorities/{id} Update a single ticketing priority's attributes
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_ticketing_priority '{}' --json kosmo integrations:firehydrant firehydrant_update_ticketing_priority '{}' --json firehydrant.firehydrant_delete_ticketing_priority
Delete a ticketing priority Official FireHydrant endpoint: DELETE /v1/ticketing/priorities/{id} Delete a single ticketing priority by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_ticketing_priority '{}' --json kosmo integrations:firehydrant firehydrant_delete_ticketing_priority '{}' --json firehydrant.firehydrant_list_ticket_tags
List ticket tags Official FireHydrant endpoint: GET /v1/ticketing/ticket_tags List all of the ticket tags in the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_ticket_tags '{}' --json kosmo integrations:firehydrant firehydrant_list_ticket_tags '{}' --json firehydrant.firehydrant_get_ticketing_form_configuration
Get the ticketing form configuration Official FireHydrant endpoint: GET /v1/ticketing/form_configurations Get the ticketing form configuration
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_ticketing_form_configuration '{}' --json kosmo integrations:firehydrant firehydrant_get_ticketing_form_configuration '{}' --json firehydrant.firehydrant_list_ticketing_custom_definitions
List ticketing custom fields Official FireHydrant endpoint: GET /v1/ticketing/custom_fields/definitions List all ticketing custom fields available to the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_ticketing_custom_definitions '{}' --json kosmo integrations:firehydrant firehydrant_list_ticketing_custom_definitions '{}' --json firehydrant.firehydrant_create_ticketing_custom_definition
Create a ticketing custom field Official FireHydrant endpoint: POST /v1/ticketing/custom_fields/definitions Creates a ticketing custom field for the organization
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_ticketing_custom_definition '{}' --json kosmo integrations:firehydrant firehydrant_create_ticketing_custom_definition '{}' --json firehydrant.firehydrant_update_ticketing_custom_definition
Update a ticketing custom field Official FireHydrant endpoint: PATCH /v1/ticketing/custom_fields/definitions/{field_id} Update a ticketing custom field for the organization
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_ticketing_custom_definition '{}' --json kosmo integrations:firehydrant firehydrant_update_ticketing_custom_definition '{}' --json firehydrant.firehydrant_delete_ticketing_custom_definition
Delete a ticketing custom field Official FireHydrant endpoint: DELETE /v1/ticketing/custom_fields/definitions/{field_id} Deletes a ticketing custom field for the organization
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_ticketing_custom_definition '{}' --json kosmo integrations:firehydrant firehydrant_delete_ticketing_custom_definition '{}' --json firehydrant.firehydrant_list_task_lists
List task lists Official FireHydrant endpoint: GET /v1/task_lists Lists all task lists for your organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_task_lists '{}' --json kosmo integrations:firehydrant firehydrant_list_task_lists '{}' --json firehydrant.firehydrant_create_task_list
Create a task list Official FireHydrant endpoint: POST /v1/task_lists Creates a new task list
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_task_list '{}' --json kosmo integrations:firehydrant firehydrant_create_task_list '{}' --json firehydrant.firehydrant_get_task_list
Get a task list Official FireHydrant endpoint: GET /v1/task_lists/{task_list_id} Retrieves a single task list by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_task_list '{}' --json kosmo integrations:firehydrant firehydrant_get_task_list '{}' --json firehydrant.firehydrant_update_task_list
Update a task list Official FireHydrant endpoint: PATCH /v1/task_lists/{task_list_id} Updates a task list's attributes and task list items
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_task_list '{}' --json kosmo integrations:firehydrant firehydrant_update_task_list '{}' --json firehydrant.firehydrant_delete_task_list
Delete a task list Official FireHydrant endpoint: DELETE /v1/task_lists/{task_list_id} Delete a task list
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_task_list '{}' --json kosmo integrations:firehydrant firehydrant_delete_task_list '{}' --json firehydrant.firehydrant_ping_noauth
Check API connectivity Official FireHydrant endpoint: GET /v1/noauth/ping Simple endpoint to verify your API connection is working
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_ping_noauth '{}' --json kosmo integrations:firehydrant firehydrant_ping_noauth '{}' --json firehydrant.firehydrant_get_scim_group
Get a SCIM group Official FireHydrant endpoint: GET /v1/scim/v2/Groups/{id} SCIM endpoint that lists a Team (Colloquial for Group in the SCIM protocol)
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_scim_group '{}' --json kosmo integrations:firehydrant firehydrant_get_scim_group '{}' --json firehydrant.firehydrant_update_scim_group
Update a SCIM group and assign members Official FireHydrant endpoint: PUT /v1/scim/v2/Groups/{id} SCIM endpoint to update a Team (Colloquial for Group in the SCIM protocol). Any members defined in the payload will be assigned to the team wi
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_scim_group '{}' --json kosmo integrations:firehydrant firehydrant_update_scim_group '{}' --json firehydrant.firehydrant_patch_scim_group
Partially update a SCIM group Official FireHydrant endpoint: PATCH /v1/scim/v2/Groups/{id} SCIM endpoint to partially update a Team (Colloquial for Group in the SCIM protocol). Supports adding, removing, or replacing members using SCIM PATC
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_patch_scim_group '{}' --json kosmo integrations:firehydrant firehydrant_patch_scim_group '{}' --json firehydrant.firehydrant_delete_scim_group
Delete a SCIM group Official FireHydrant endpoint: DELETE /v1/scim/v2/Groups/{id} SCIM endpoint to delete a Team (Colloquial for Group in the SCIM protocol).
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_scim_group '{}' --json kosmo integrations:firehydrant firehydrant_delete_scim_group '{}' --json firehydrant.firehydrant_list_scim_groups
List SCIM groups Official FireHydrant endpoint: GET /v1/scim/v2/Groups SCIM endpoint that lists all Teams (Colloquial for Group in the SCIM protocol)
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_scim_groups '{}' --json kosmo integrations:firehydrant firehydrant_list_scim_groups '{}' --json firehydrant.firehydrant_create_scim_group
Create a SCIM group and assign members Official FireHydrant endpoint: POST /v1/scim/v2/Groups SCIM endpoint to create a new Team (Colloquial for Group in the SCIM protocol). Any members defined in the payload will be assigned to the team wi
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_scim_group '{}' --json kosmo integrations:firehydrant firehydrant_create_scim_group '{}' --json firehydrant.firehydrant_get_scim_user
Get a SCIM user Official FireHydrant endpoint: GET /v1/scim/v2/Users/{id} SCIM endpoint that lists a User
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_scim_user '{}' --json kosmo integrations:firehydrant firehydrant_get_scim_user '{}' --json firehydrant.firehydrant_update_scim_user
Update a User from SCIM data Official FireHydrant endpoint: PUT /v1/scim/v2/Users/{id} PUT SCIM endpoint to update a User. This endpoint is used to replace a resource's attributes.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_scim_user '{}' --json kosmo integrations:firehydrant firehydrant_update_scim_user '{}' --json firehydrant.firehydrant_patch_scim_user
Update a User from SCIM data Official FireHydrant endpoint: PATCH /v1/scim/v2/Users/{id} PATCH SCIM endpoint to update a User. This endpoint is used to update a resource's attributes.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_patch_scim_user '{}' --json kosmo integrations:firehydrant firehydrant_patch_scim_user '{}' --json firehydrant.firehydrant_delete_scim_user
Delete a User matching SCIM data Official FireHydrant endpoint: DELETE /v1/scim/v2/Users/{id} SCIM endpoint to delete a User. This endpoint will deactivate a confirmed User record in our system.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_scim_user '{}' --json kosmo integrations:firehydrant firehydrant_delete_scim_user '{}' --json firehydrant.firehydrant_list_scim_users
List SCIM users Official FireHydrant endpoint: GET /v1/scim/v2/Users SCIM endpoint that lists users. This endpoint will display a list of Users currently in the system.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_scim_users '{}' --json kosmo integrations:firehydrant firehydrant_list_scim_users '{}' --json firehydrant.firehydrant_create_scim_user
Create a User from SCIM data Official FireHydrant endpoint: POST /v1/scim/v2/Users SCIM endpoint to create and provision a new User. This endpoint will provision the User, which allows them to accept their account throught their IDP or via
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_scim_user '{}' --json kosmo integrations:firehydrant firehydrant_create_scim_user '{}' --json firehydrant.firehydrant_refresh_catalog
Refresh a service catalog Official FireHydrant endpoint: GET /v1/catalogs/{catalog_id}/refresh Schedules an async task to re-import catalog info and update catalog data accordingly.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_refresh_catalog '{}' --json kosmo integrations:firehydrant firehydrant_refresh_catalog '{}' --json firehydrant.firehydrant_ingest_catalog_data
Ingest service catalog data Official FireHydrant endpoint: POST /v1/catalogs/{catalog_id}/ingest Accepts catalog data in the configured format and asyncronously processes the data to incorporate changes into service catalog.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_ingest_catalog_data '{}' --json kosmo integrations:firehydrant firehydrant_ingest_catalog_data '{}' --json firehydrant.firehydrant_list_checklist_templates
List checklist templates Official FireHydrant endpoint: GET /v1/checklist_templates List all of the checklist templates that have been added to the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_checklist_templates '{}' --json kosmo integrations:firehydrant firehydrant_list_checklist_templates '{}' --json firehydrant.firehydrant_create_checklist_template
Create a checklist template Official FireHydrant endpoint: POST /v1/checklist_templates Creates a checklist template for the organization
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_checklist_template '{}' --json kosmo integrations:firehydrant firehydrant_create_checklist_template '{}' --json firehydrant.firehydrant_get_checklist_template
Get a checklist template Official FireHydrant endpoint: GET /v1/checklist_templates/{id} Retrieves a single checklist template by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_checklist_template '{}' --json kosmo integrations:firehydrant firehydrant_get_checklist_template '{}' --json firehydrant.firehydrant_update_checklist_template
Update a checklist template Official FireHydrant endpoint: PATCH /v1/checklist_templates/{id} Update a checklist templates attributes
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_checklist_template '{}' --json kosmo integrations:firehydrant firehydrant_update_checklist_template '{}' --json firehydrant.firehydrant_delete_checklist_template
Archive a checklist template Official FireHydrant endpoint: DELETE /v1/checklist_templates/{id} Archive a checklist template
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_checklist_template '{}' --json kosmo integrations:firehydrant firehydrant_delete_checklist_template '{}' --json firehydrant.firehydrant_get_bootstrap
Get initial application configuration Official FireHydrant endpoint: GET /v1/bootstrap Get initial application configuration
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_bootstrap '{}' --json kosmo integrations:firehydrant firehydrant_get_bootstrap '{}' --json firehydrant.firehydrant_append_form_data_on_selected_value_get
Get data for a form field on select Official FireHydrant endpoint: GET /v1/form_configurations/{slug}/append_data_on_select/{field_id}/{selected_value} Get data for a form field on select that should be appended to a form by using a templat
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_append_form_data_on_selected_value_get '{}' --json kosmo integrations:firehydrant firehydrant_append_form_data_on_selected_value_get '{}' --json firehydrant.firehydrant_get_form_configuration
Get a form configuration Official FireHydrant endpoint: GET /v1/form_configurations/{slug} Get a form configuration
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_form_configuration '{}' --json kosmo integrations:firehydrant firehydrant_get_form_configuration '{}' --json firehydrant.firehydrant_delete_comment_reaction
Delete a reaction from a conversation comment Official FireHydrant endpoint: DELETE /v1/conversations/{conversation_id}/comments/{comment_id}/reactions/{reaction_id} Archive a reaction
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_comment_reaction '{}' --json kosmo integrations:firehydrant firehydrant_delete_comment_reaction '{}' --json firehydrant.firehydrant_list_comment_reactions
List reactions for a conversation comment Official FireHydrant endpoint: GET /v1/conversations/{conversation_id}/comments/{comment_id}/reactions List all of the reactions that have been added to a comment
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_comment_reactions '{}' --json kosmo integrations:firehydrant firehydrant_list_comment_reactions '{}' --json firehydrant.firehydrant_create_comment_reaction
Create a reaction for a conversation comment Official FireHydrant endpoint: POST /v1/conversations/{conversation_id}/comments/{comment_id}/reactions Create a reaction on a comment
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_comment_reaction '{}' --json kosmo integrations:firehydrant firehydrant_create_comment_reaction '{}' --json firehydrant.firehydrant_get_comment
Get a conversation comment Official FireHydrant endpoint: GET /v1/conversations/{conversation_id}/comments/{comment_id} Retrieves a single comment by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_comment '{}' --json kosmo integrations:firehydrant firehydrant_get_comment '{}' --json firehydrant.firehydrant_update_comment
Update a conversation comment Official FireHydrant endpoint: PATCH /v1/conversations/{conversation_id}/comments/{comment_id} Update a comment's attributes
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_comment '{}' --json kosmo integrations:firehydrant firehydrant_update_comment '{}' --json firehydrant.firehydrant_delete_comment
Archive a conversation comment Official FireHydrant endpoint: DELETE /v1/conversations/{conversation_id}/comments/{comment_id} Archive a comment
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_comment '{}' --json kosmo integrations:firehydrant firehydrant_delete_comment '{}' --json firehydrant.firehydrant_list_comments
List comments for a conversation Official FireHydrant endpoint: GET /v1/conversations/{conversation_id}/comments List all of the comments that have been added to the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_comments '{}' --json kosmo integrations:firehydrant firehydrant_list_comments '{}' --json firehydrant.firehydrant_create_comment
Create a conversation comment Official FireHydrant endpoint: POST /v1/conversations/{conversation_id}/comments Creates a comment for a project
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_comment '{}' --json kosmo integrations:firehydrant firehydrant_create_comment '{}' --json firehydrant.firehydrant_update_signals_alert
Update a Signal alert Official FireHydrant endpoint: PATCH /v1/signals/alerts/{id} Update a Signal alert
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_signals_alert '{}' --json kosmo integrations:firehydrant firehydrant_update_signals_alert '{}' --json firehydrant.firehydrant_get_signals_timeseries_analytics
Generate timeseries alert metrics Official FireHydrant endpoint: GET /v1/signals/analytics/timeseries Generate a timeseries-based report of metrics for Signals alerts
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_timeseries_analytics '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_timeseries_analytics '{}' --json firehydrant.firehydrant_get_signals_grouped_metrics
Generate grouped alert metrics Official FireHydrant endpoint: GET /v1/signals/analytics/grouped_metrics Generate a report of grouped metrics for Signals alerts
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_grouped_metrics '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_grouped_metrics '{}' --json firehydrant.firehydrant_get_signals_mttx_analytics
Get MTTX analytics for signals Official FireHydrant endpoint: GET /v1/signals/analytics/mttx Get mean-time-to-acknowledged (MTTA) and mean-time-to-resolved (MTTR) metrics for Signals alerts
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_mttx_analytics '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_mttx_analytics '{}' --json firehydrant.firehydrant_get_signals_noise_analytics
Get noise analytics for signals Official FireHydrant endpoint: GET /v1/signals/analytics/noise/metrics Get noise metrics for Signals alerts
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_noise_analytics '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_noise_analytics '{}' --json firehydrant.firehydrant_export_signals_shift_analytics
Export on-call hours report Official FireHydrant endpoint: GET /v1/signals/analytics/shifts/export Export on-call hours report for users/teams during a time period
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_export_signals_shift_analytics '{}' --json kosmo integrations:firehydrant firehydrant_export_signals_shift_analytics '{}' --json firehydrant.firehydrant_list_call_routes
List call routes Official FireHydrant endpoint: GET /v1/signals/call_routes List call routes for the organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_call_routes '{}' --json kosmo integrations:firehydrant firehydrant_list_call_routes '{}' --json firehydrant.firehydrant_get_call_route
Retrieve a call route Official FireHydrant endpoint: GET /v1/signals/call_routes/{id} Retrieve a call route by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_call_route '{}' --json kosmo integrations:firehydrant firehydrant_get_call_route '{}' --json firehydrant.firehydrant_update_call_route
Update a call route Official FireHydrant endpoint: PATCH /v1/signals/call_routes/{id} Update a call route by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_call_route '{}' --json kosmo integrations:firehydrant firehydrant_update_call_route '{}' --json firehydrant.firehydrant_delete_call_route
Delete a call route Official FireHydrant endpoint: DELETE /v1/signals/call_routes/{id} Delete a call route by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_call_route '{}' --json kosmo integrations:firehydrant firehydrant_delete_call_route '{}' --json firehydrant.firehydrant_list_signals_event_sources
List event sources for Signals Official FireHydrant endpoint: GET /v1/signals/event_sources List all Signals event sources for the authenticated user.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_signals_event_sources '{}' --json kosmo integrations:firehydrant firehydrant_list_signals_event_sources '{}' --json firehydrant.firehydrant_create_signals_event_source
Create an event source for Signals Official FireHydrant endpoint: PUT /v1/signals/event_sources Create a Signals event source for the authenticated user.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_signals_event_source '{}' --json kosmo integrations:firehydrant firehydrant_create_signals_event_source '{}' --json firehydrant.firehydrant_get_signals_event_source
Get an event source for Signals Official FireHydrant endpoint: GET /v1/signals/event_sources/{transposer_slug} Get a Signals event source by slug
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_event_source '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_event_source '{}' --json firehydrant.firehydrant_delete_signals_event_source
Delete an event source for Signals Official FireHydrant endpoint: DELETE /v1/signals/event_sources/{transposer_slug} Delete a Signals event source by slug
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_signals_event_source '{}' --json kosmo integrations:firehydrant firehydrant_delete_signals_event_source '{}' --json firehydrant.firehydrant_get_signals_hacker_mode
Get hacker mode status Official FireHydrant endpoint: GET /v1/signals/hacker_mode Get the status of the hacker mode for the current user
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_hacker_mode '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_hacker_mode '{}' --json firehydrant.firehydrant_list_signals_alert_grouping_configurations
List alert grouping configurations. Official FireHydrant endpoint: GET /v1/signals/grouping List all Signals alert grouping rules for the organization.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_signals_alert_grouping_configurations '{}' --json kosmo integrations:firehydrant firehydrant_list_signals_alert_grouping_configurations '{}' --json firehydrant.firehydrant_create_signals_alert_grouping_configuration
Create an alert grouping configuration. Official FireHydrant endpoint: POST /v1/signals/grouping Create a Signals alert grouping rule for the organization.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_signals_alert_grouping_configuration '{}' --json kosmo integrations:firehydrant firehydrant_create_signals_alert_grouping_configuration '{}' --json firehydrant.firehydrant_get_signals_alert_grouping_configuration
Get an alert grouping configuration. Official FireHydrant endpoint: GET /v1/signals/grouping/{id} Get a Signals alert grouping rule by ID.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_alert_grouping_configuration '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_alert_grouping_configuration '{}' --json firehydrant.firehydrant_update_signals_alert_grouping_configuration
Update an alert grouping configuration. Official FireHydrant endpoint: PATCH /v1/signals/grouping/{id} Update a Signals alert grouping rule for the organization.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_signals_alert_grouping_configuration '{}' --json kosmo integrations:firehydrant firehydrant_update_signals_alert_grouping_configuration '{}' --json firehydrant.firehydrant_delete_signals_alert_grouping_configuration
Delete an alert grouping configuration. Official FireHydrant endpoint: DELETE /v1/signals/grouping/{id} Delete a Signals alert grouping rule by ID.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_signals_alert_grouping_configuration '{}' --json kosmo integrations:firehydrant firehydrant_delete_signals_alert_grouping_configuration '{}' --json firehydrant.firehydrant_list_signals_email_targets
List email targets for signals Official FireHydrant endpoint: GET /v1/signals/email_targets List all Signals email targets for a team.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_signals_email_targets '{}' --json kosmo integrations:firehydrant firehydrant_list_signals_email_targets '{}' --json firehydrant.firehydrant_create_signals_email_target
Create an email target for signals Official FireHydrant endpoint: POST /v1/signals/email_targets Create a Signals email target for a team.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_signals_email_target '{}' --json kosmo integrations:firehydrant firehydrant_create_signals_email_target '{}' --json firehydrant.firehydrant_get_signals_email_target
Get a signal email target Official FireHydrant endpoint: GET /v1/signals/email_targets/{id} Get a Signals email target by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_email_target '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_email_target '{}' --json firehydrant.firehydrant_update_signals_email_target
Update an email target Official FireHydrant endpoint: PATCH /v1/signals/email_targets/{id} Update a Signals email target by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_signals_email_target '{}' --json kosmo integrations:firehydrant firehydrant_update_signals_email_target '{}' --json firehydrant.firehydrant_delete_signals_email_target
Delete a signal email target Official FireHydrant endpoint: DELETE /v1/signals/email_targets/{id} Delete a Signals email target by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_signals_email_target '{}' --json kosmo integrations:firehydrant firehydrant_delete_signals_email_target '{}' --json firehydrant.firehydrant_list_signals_webhook_targets
List webhook targets Official FireHydrant endpoint: GET /v1/signals/webhook_targets List all Signals webhook targets.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_signals_webhook_targets '{}' --json kosmo integrations:firehydrant firehydrant_list_signals_webhook_targets '{}' --json firehydrant.firehydrant_create_signals_webhook_target
Create a webhook target Official FireHydrant endpoint: POST /v1/signals/webhook_targets Create a Signals webhook target.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_signals_webhook_target '{}' --json kosmo integrations:firehydrant firehydrant_create_signals_webhook_target '{}' --json firehydrant.firehydrant_get_signals_webhook_target
Get a webhook target Official FireHydrant endpoint: GET /v1/signals/webhook_targets/{id} Get a Signals webhook target by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_webhook_target '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_webhook_target '{}' --json firehydrant.firehydrant_update_signals_webhook_target
Update a webhook target Official FireHydrant endpoint: PATCH /v1/signals/webhook_targets/{id} Update a Signals webhook target by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_signals_webhook_target '{}' --json kosmo integrations:firehydrant firehydrant_update_signals_webhook_target '{}' --json firehydrant.firehydrant_delete_signals_webhook_target
Delete a webhook target Official FireHydrant endpoint: DELETE /v1/signals/webhook_targets/{id} Delete a Signals webhook target by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_signals_webhook_target '{}' --json kosmo integrations:firehydrant firehydrant_delete_signals_webhook_target '{}' --json firehydrant.firehydrant_list_signals_heartbeat_endpoint_configurations
List heartbeat endpoint configurations Official FireHydrant endpoint: GET /v1/signals/heartbeat_endpoints Retrieve all heartbeat endpoint configurations for your organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_signals_heartbeat_endpoint_configurations '{}' --json kosmo integrations:firehydrant firehydrant_list_signals_heartbeat_endpoint_configurations '{}' --json firehydrant.firehydrant_create_signals_heartbeat_endpoint_configuration
Create a heartbeat endpoint configuration Official FireHydrant endpoint: POST /v1/signals/heartbeat_endpoints Create a new heartbeat endpoint configuration for your organization
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_signals_heartbeat_endpoint_configuration '{}' --json kosmo integrations:firehydrant firehydrant_create_signals_heartbeat_endpoint_configuration '{}' --json firehydrant.firehydrant_get_signals_heartbeat_endpoint_status
Get heartbeat endpoint status Official FireHydrant endpoint: GET /v1/signals/heartbeat_endpoints/statuses Check the current status of a heartbeat endpoint
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_heartbeat_endpoint_status '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_heartbeat_endpoint_status '{}' --json firehydrant.firehydrant_get_signals_heartbeat_endpoint_url
Get heartbeat endpoint URL Official FireHydrant endpoint: GET /v1/signals/heartbeat_endpoints/addresses Retrieve the URL for a heartbeat endpoint
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_heartbeat_endpoint_url '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_heartbeat_endpoint_url '{}' --json firehydrant.firehydrant_get_signals_heartbeat_endpoint_configuration
Get a heartbeat endpoint configuration Official FireHydrant endpoint: GET /v1/signals/heartbeat_endpoints/{id} Retrieve a single heartbeat endpoint configuration
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_heartbeat_endpoint_configuration '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_heartbeat_endpoint_configuration '{}' --json firehydrant.firehydrant_update_signals_heartbeat_endpoint_configuration
Update a heartbeat endpoint configuration Official FireHydrant endpoint: PATCH /v1/signals/heartbeat_endpoints/{id} Update an existing heartbeat endpoint configuration
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_signals_heartbeat_endpoint_configuration '{}' --json kosmo integrations:firehydrant firehydrant_update_signals_heartbeat_endpoint_configuration '{}' --json firehydrant.firehydrant_delete_signals_heartbeat_endpoint_configuration
Delete a heartbeat endpoint configuration Official FireHydrant endpoint: DELETE /v1/signals/heartbeat_endpoints/{id} Delete a heartbeat endpoint configuration
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_signals_heartbeat_endpoint_configuration '{}' --json kosmo integrations:firehydrant firehydrant_delete_signals_heartbeat_endpoint_configuration '{}' --json firehydrant.firehydrant_list_notification_policy_settings
List notification policies Official FireHydrant endpoint: GET /v1/signals/notification_policy_items List all Signals notification policies.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_notification_policy_settings '{}' --json kosmo integrations:firehydrant firehydrant_list_notification_policy_settings '{}' --json firehydrant.firehydrant_create_notification_policy
Create a notification policy Official FireHydrant endpoint: POST /v1/signals/notification_policy_items Create a Signals notification policy.
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_notification_policy '{}' --json kosmo integrations:firehydrant firehydrant_create_notification_policy '{}' --json firehydrant.firehydrant_get_notification_policy
Get a notification policy Official FireHydrant endpoint: GET /v1/signals/notification_policy_items/{id} Get a Signals notification policy by ID
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_notification_policy '{}' --json kosmo integrations:firehydrant firehydrant_get_notification_policy '{}' --json firehydrant.firehydrant_update_notification_policy
Update a notification policy Official FireHydrant endpoint: PATCH /v1/signals/notification_policy_items/{id} Update a Signals notification policy by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_notification_policy '{}' --json kosmo integrations:firehydrant firehydrant_update_notification_policy '{}' --json firehydrant.firehydrant_delete_notification_policy
Delete a notification policy Official FireHydrant endpoint: DELETE /v1/signals/notification_policy_items/{id} Delete a Signals notification policy by ID
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_notification_policy '{}' --json kosmo integrations:firehydrant firehydrant_delete_notification_policy '{}' --json firehydrant.firehydrant_list_user_notification_settings_by_user_id
List notification settings for a user Official FireHydrant endpoint: GET /v1/signals/users/{user_id}/notification_settings List all Signals notification settings for a specific user. Requires an API key with PII access enabled.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_user_notification_settings_by_user_id '{}' --json kosmo integrations:firehydrant firehydrant_list_user_notification_settings_by_user_id '{}' --json firehydrant.firehydrant_list_signals_transposers
List signal transposers Official FireHydrant endpoint: GET /v1/signals/transposers List all transposers for your organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_signals_transposers '{}' --json kosmo integrations:firehydrant firehydrant_list_signals_transposers '{}' --json firehydrant.firehydrant_get_signals_ingest_url
Get the signals ingestion URL Official FireHydrant endpoint: GET /v1/signals/ingest_url Retrieve the url for ingesting signals for your organization
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_signals_ingest_url '{}' --json kosmo integrations:firehydrant firehydrant_get_signals_ingest_url '{}' --json firehydrant.firehydrant_debug_signals_expression
Debug Signals expressions Official FireHydrant endpoint: POST /v1/signals/debugger Debug Signals expressions
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_debug_signals_expression '{}' --json kosmo integrations:firehydrant firehydrant_debug_signals_expression '{}' --json firehydrant.firehydrant_list_organization_on_call_schedules
List who's on call for the organization Official FireHydrant endpoint: GET /v1/signals_on_call List all users who are currently on-call across the entire organization.
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_organization_on_call_schedules '{}' --json kosmo integrations:firehydrant firehydrant_list_organization_on_call_schedules '{}' --json firehydrant.firehydrant_list_webhooks
List webhooks Official FireHydrant endpoint: GET /v1/webhooks Lists webhooks
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_webhooks '{}' --json kosmo integrations:firehydrant firehydrant_list_webhooks '{}' --json firehydrant.firehydrant_create_webhook
Create a webhook Official FireHydrant endpoint: POST /v1/webhooks Create a new webhook
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_webhook '{}' --json kosmo integrations:firehydrant firehydrant_create_webhook '{}' --json firehydrant.firehydrant_list_webhook_deliveries
List webhook deliveries Official FireHydrant endpoint: GET /v1/webhooks/{webhook_id}/deliveries Get webhook deliveries
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_webhook_deliveries '{}' --json kosmo integrations:firehydrant firehydrant_list_webhook_deliveries '{}' --json firehydrant.firehydrant_get_webhook
Get a webhook Official FireHydrant endpoint: GET /v1/webhooks/{webhook_id} Retrieve a specific webhook
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_webhook '{}' --json kosmo integrations:firehydrant firehydrant_get_webhook '{}' --json firehydrant.firehydrant_update_webhook
Update a webhook Official FireHydrant endpoint: PATCH /v1/webhooks/{webhook_id} Update a specific webhook
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_webhook '{}' --json kosmo integrations:firehydrant firehydrant_update_webhook '{}' --json firehydrant.firehydrant_delete_webhook
Delete a webhook Official FireHydrant endpoint: DELETE /v1/webhooks/{webhook_id} Delete a specific webhook
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_delete_webhook '{}' --json kosmo integrations:firehydrant firehydrant_delete_webhook '{}' --json firehydrant.firehydrant_get_ai_incident_summary_vote_status
Get the current user's vote status for an AI-generated incident summary Official FireHydrant endpoint: GET /v1/ai/summarize_incident/{incident_id}/{generated_summary_id}/voted Get the current user's vote status for an AI-generated incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_ai_incident_summary_vote_status '{}' --json kosmo integrations:firehydrant firehydrant_get_ai_incident_summary_vote_status '{}' --json firehydrant.firehydrant_vote_ai_incident_summary
Vote on an AI-generated incident summary Official FireHydrant endpoint: PUT /v1/ai/summarize_incident/{incident_id}/{generated_summary_id}/vote Vote on an AI-generated incident summary for the current user
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_vote_ai_incident_summary '{}' --json kosmo integrations:firehydrant firehydrant_vote_ai_incident_summary '{}' --json firehydrant.firehydrant_get_ai_preferences
Get AI preferences Official FireHydrant endpoint: GET /v1/ai/preferences Retrieves the current AI preferences
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_ai_preferences '{}' --json kosmo integrations:firehydrant firehydrant_get_ai_preferences '{}' --json firehydrant.firehydrant_update_ai_preferences
Update AI preferences Official FireHydrant endpoint: PATCH /v1/ai/preferences Updates the AI preferences
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_ai_preferences '{}' --json kosmo integrations:firehydrant firehydrant_update_ai_preferences '{}' --json firehydrant.firehydrant_list_audiences
List audiences Official FireHydrant endpoint: GET /v1/audiences List all audiences
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_audiences '{}' --json kosmo integrations:firehydrant firehydrant_list_audiences '{}' --json firehydrant.firehydrant_create_audience
Create audience Official FireHydrant endpoint: POST /v1/audiences Create a new audience
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_create_audience '{}' --json kosmo integrations:firehydrant firehydrant_create_audience '{}' --json firehydrant.firehydrant_get_audience
Get audience Official FireHydrant endpoint: GET /v1/audiences/{audience_id} Get audience details
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_audience '{}' --json kosmo integrations:firehydrant firehydrant_get_audience '{}' --json firehydrant.firehydrant_update_audience
Update audience Official FireHydrant endpoint: PATCH /v1/audiences/{audience_id} Update an existing audience
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_update_audience '{}' --json kosmo integrations:firehydrant firehydrant_update_audience '{}' --json firehydrant.firehydrant_archive_audience
Archive audience Official FireHydrant endpoint: DELETE /v1/audiences/{audience_id} Archive an audience
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_archive_audience '{}' --json kosmo integrations:firehydrant firehydrant_archive_audience '{}' --json firehydrant.firehydrant_restore_audience
Restore audience Official FireHydrant endpoint: PATCH /v1/audiences/{audience_id}/restore Restore a previously archived audience
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_restore_audience '{}' --json kosmo integrations:firehydrant firehydrant_restore_audience '{}' --json firehydrant.firehydrant_get_member_default_audience
Get default audience Official FireHydrant endpoint: GET /v1/audiences/member/{member_id}/default Get member's default audience
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_member_default_audience '{}' --json kosmo integrations:firehydrant firehydrant_get_member_default_audience '{}' --json firehydrant.firehydrant_set_member_default_audience
Set default audience Official FireHydrant endpoint: PUT /v1/audiences/member/{member_id}/default Set member's default audience
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_set_member_default_audience '{}' --json kosmo integrations:firehydrant firehydrant_set_member_default_audience '{}' --json firehydrant.firehydrant_get_audience_summary
Get latest summary Official FireHydrant endpoint: GET /v1/audiences/{audience_id}/summaries/{incident_id} Get the latest audience-specific summary for an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_get_audience_summary '{}' --json kosmo integrations:firehydrant firehydrant_get_audience_summary '{}' --json firehydrant.firehydrant_generate_audience_summary
Generate summary (async) Official FireHydrant endpoint: POST /v1/audiences/{audience_id}/summaries/{incident_id} Initiates asynchronous generation of a new audience-specific summary for an incident. This is an async operation that can take
write - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_generate_audience_summary '{}' --json kosmo integrations:firehydrant firehydrant_generate_audience_summary '{}' --json firehydrant.firehydrant_list_audience_summaries
List audience summaries Official FireHydrant endpoint: GET /v1/audiences/summaries/{incident_id} List all audience summaries for an incident
read - Parameters
- none
kosmo integrations:call firehydrant.firehydrant_list_audience_summaries '{}' --json kosmo integrations:firehydrant firehydrant_list_audience_summaries '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
firehydrant.firehydrant_ping 0 parameters
kosmo integrations:schema firehydrant.firehydrant_ping --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_environments 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_environments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_environment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_environment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_environment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_environment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_environment_services 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_environment_services --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_environment_functionalities 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_environment_functionalities --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_services 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_services --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_service 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_service_links 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_service_links --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_service 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_service 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_service 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_service --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_service_environments 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_service_environments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_service_dependencies 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_service_dependencies --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_service_available_upstream_dependencies 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_service_available_upstream_dependencies --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_service_available_downstream_dependencies 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_service_available_downstream_dependencies --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_service_link 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_service_link --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_service_checklist_response 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_service_checklist_response --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_service_dependency 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_service_dependency --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_service_dependency 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_service_dependency --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_service_dependency 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_service_dependency --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_service_dependency 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_service_dependency --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_functionalities 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_functionalities --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_functionality 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_functionality --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_functionality 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_functionality --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_functionality 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_functionality --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_functionality 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_functionality --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_functionality_environments 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_functionality_environments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_functionality_services 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_functionality_services --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_teams 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_teams --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_team 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_team --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_team 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_team --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_team 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_team --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_team 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_team --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_support_hours_schedule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_support_hours_schedule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_support_hours_schedule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_support_hours_schedule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_support_hours_schedule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_support_hours_schedule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_team_call_routes 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_team_call_routes --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_team_call_route 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_team_call_route --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_team_escalation_policies 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_team_escalation_policies --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_team_escalation_policy 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_team_escalation_policy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_team_escalation_policy 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_team_escalation_policy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_team_escalation_policy 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_team_escalation_policy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_team_escalation_policy 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_team_escalation_policy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_preview_team_on_call_schedule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_preview_team_on_call_schedule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_team_on_call_schedules 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_team_on_call_schedules --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_team_on_call_schedule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_team_on_call_schedule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_team_on_call_schedule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_team_on_call_schedule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_team_on_call_schedule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_team_on_call_schedule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_team_on_call_schedule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_team_on_call_schedule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_preview_on_call_schedule_rotation 0 parameters
kosmo integrations:schema firehydrant.firehydrant_preview_on_call_schedule_rotation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_on_call_schedule_rotation 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_on_call_schedule_rotation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_copy_on_call_schedule_rotation 0 parameters
kosmo integrations:schema firehydrant.firehydrant_copy_on_call_schedule_rotation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_on_call_schedule_rotation 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_on_call_schedule_rotation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_on_call_schedule_rotation 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_on_call_schedule_rotation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_on_call_schedule_rotation 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_on_call_schedule_rotation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_override_on_call_schedule_rotation_shifts 0 parameters
kosmo integrations:schema firehydrant.firehydrant_override_on_call_schedule_rotation_shifts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_on_call_shift 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_on_call_shift --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_on_call_shift 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_on_call_shift --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_on_call_shift 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_on_call_shift --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_on_call_shift 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_on_call_shift --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_team_signal_rules 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_team_signal_rules --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_team_signal_rule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_team_signal_rule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_team_signal_rule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_team_signal_rule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_team_signal_rule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_team_signal_rule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_team_signal_rule 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_team_signal_rule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_changes 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_changes --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_change 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_change --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_change 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_change --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_change 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_change --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_change_identities 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_change_identities --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_change_identity 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_change_identity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_change_identity 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_change_identity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_change_identity 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_change_identity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_change_events 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_change_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_change_event 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_change_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_change_event 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_change_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_change_event 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_change_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_change_event 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_change_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_change_types 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_change_types --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_entitlements 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_entitlements --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incidents 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incidents --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_incident_channel 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_incident_channel --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_close_incident 0 parameters
kosmo integrations:schema firehydrant.firehydrant_close_incident --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_resolve_incident 0 parameters
kosmo integrations:schema firehydrant.firehydrant_resolve_incident --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_incident 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_incident --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_unarchive_incident 0 parameters
kosmo integrations:schema firehydrant.firehydrant_unarchive_incident --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_alerts 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_alerts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_alert 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_alert --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_alert_primary 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_alert_primary --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_alert 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_alert --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_bulk_update_incident_milestones 0 parameters
kosmo integrations:schema firehydrant.firehydrant_bulk_update_incident_milestones --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_milestones 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_milestones --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_change_events 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_change_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_change_event 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_change_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_change_event 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_change_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_status_pages 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_status_pages --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_status_page 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_status_page --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_status_page 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_status_page --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_task_list 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_task_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_tasks 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_tasks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_task 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_incident_task 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_incident_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_task 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_task 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_convert_incident_task 0 parameters
kosmo integrations:schema firehydrant.firehydrant_convert_incident_task --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_links 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_links --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_link 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_link --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_link 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_link --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_link 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_link --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_transcript_attribution 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_transcript_attribution --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_transcript_entries 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_transcript_entries --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_transcript_entry 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_transcript_entry --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_conference_bridges 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_conference_bridges --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_conference_bridge_translation 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_conference_bridge_translation --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_similar_incidents 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_similar_incidents --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_attachments 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_attachments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_attachment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_attachment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_events 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_incident_event 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_incident_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_event 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_event 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_vote_status 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_vote_status --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_vote 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_vote --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_impact_put 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_impact_put --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_impact_patch 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_impact_patch --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_impacts 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_impacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_impact 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_impact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_impact 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_impact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_note 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_note --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_note 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_note --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_chat_message 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_chat_message --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_chat_message 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_chat_message --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_chat_message 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_chat_message --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_role_assignments 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_role_assignments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_role_assignment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_role_assignment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_role_assignment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_role_assignment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_team_assignment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_team_assignment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_team_assignment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_team_assignment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_incident_user 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_incident_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_incident_relationships 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_incident_relationships --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_export_incident_retrospectives_markdown 0 parameters
kosmo integrations:schema firehydrant.firehydrant_export_incident_retrospectives_markdown --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_export_incident_retrospectives 0 parameters
kosmo integrations:schema firehydrant.firehydrant_export_incident_retrospectives --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_retrospectives 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_retrospectives --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_retrospective 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_retrospective --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_retrospective 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_retrospective --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_retrospective_field 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_retrospective_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_incident_retrospective_field 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_incident_retrospective_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_retrospective_field 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_retrospective_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_retrospective_dynamic_input 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_retrospective_dynamic_input --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_retrospective_dynamic_input 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_retrospective_dynamic_input --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_roles 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_roles --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_role 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_role --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_incident_role 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_incident_role --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_role 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_role --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_role 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_role --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_validate_incident_tags 0 parameters
kosmo integrations:schema firehydrant.firehydrant_validate_incident_tags --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_tags 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_tags --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_types 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_types --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_incident_type 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_incident_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_incident_type 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_incident_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_incident_type 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_incident_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_incident_type 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_incident_type --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_integrations 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_integrations --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_integration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_integration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_field_map 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_field_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_field_map_available_fields 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_field_map_available_fields --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_authed_providers 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_authed_providers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_authed_provider 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_authed_provider --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_connections 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_connections --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_refresh_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_refresh_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_connection_statuses 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_connection_statuses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_connection_statuses_by_slug 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_connection_statuses_by_slug --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_connection_statuses_by_slug_and_id 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_connection_statuses_by_slug_and_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_aws_connections 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_aws_connections --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_aws_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_aws_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_aws_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_aws_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_aws_cloudtrail_batches 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_aws_cloudtrail_batches --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_aws_cloudtrail_batch 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_aws_cloudtrail_batch --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_aws_cloudtrail_batch 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_aws_cloudtrail_batch --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_aws_cloudtrail_batch_events 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_aws_cloudtrail_batch_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_search_confluence_spaces 0 parameters
kosmo integrations:schema firehydrant.firehydrant_search_confluence_spaces --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_slack_workspaces 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_slack_workspaces --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_slack_usergroups 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_slack_usergroups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_slack_emoji_actions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_slack_emoji_actions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_slack_emoji_action 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_slack_emoji_action --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_slack_emoji_action 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_slack_emoji_action --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_slack_emoji_action 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_slack_emoji_action --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_slack_emoji_action 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_slack_emoji_action --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_statuspage_connections 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_statuspage_connections --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_statuspage_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_statuspage_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_statuspage_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_statuspage_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_statuspage_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_statuspage_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_statuspage_connection_pages 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_statuspage_connection_pages --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_search_zendesk_tickets 0 parameters
kosmo integrations:schema firehydrant.firehydrant_search_zendesk_tickets --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_zendesk_customer_support_issue 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_zendesk_customer_support_issue --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_users 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_users --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_user 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_user_owned_services 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_user_owned_services --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_current_user 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_current_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_permissions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_permissions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_current_user_permissions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_current_user_permissions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_team_permissions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_team_permissions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_mean_time_report 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_mean_time_report --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_retrospectives 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_retrospectives --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_roles 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_roles --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_role 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_role --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_role 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_role --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_role 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_role --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_role 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_role --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_ticket_funnel_metrics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_ticket_funnel_metrics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_retrospective_metrics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_retrospective_metrics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_milestone_funnel_metrics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_milestone_funnel_metrics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_user_involvement_metrics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_user_involvement_metrics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_incident_metrics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_incident_metrics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_mttx_metrics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_mttx_metrics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_infrastructure_type_metrics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_infrastructure_type_metrics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_infrastructure_metrics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_infrastructure_metrics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_runbook_actions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_runbook_actions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_runbook_executions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_runbook_executions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_runbook_execution 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_runbook_execution --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_runbook_execution 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_runbook_execution --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_runbook_execution 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_runbook_execution --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_runbook_execution_step 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_runbook_execution_step --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_runbook_execution_step_script 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_runbook_execution_step_script --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_runbook_execution_step_script 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_runbook_execution_step_script --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_runbook_action_field_options 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_runbook_action_field_options --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_runbooks 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_runbooks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_runbook 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_runbook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_runbook 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_runbook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_runbook 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_runbook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_runbook 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_runbook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_runbook_audits 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_runbook_audits --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_audit_events 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_audit_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_audit_event 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_audit_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_nunc_connections 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_nunc_connections --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_nunc_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_nunc_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_email_subscribers 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_email_subscribers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_email_subscriber 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_email_subscriber --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_email_subscriber 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_email_subscriber --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_nunc_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_nunc_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_nunc_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_nunc_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_nunc_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_nunc_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_unpublish_nunc_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_unpublish_nunc_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_publish_nunc_connection 0 parameters
kosmo integrations:schema firehydrant.firehydrant_publish_nunc_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_nunc_component_group 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_nunc_component_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_nunc_component_group 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_nunc_component_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_nunc_component_group 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_nunc_component_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_nunc_link 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_nunc_link --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_nunc_link 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_nunc_link --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_nunc_link 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_nunc_link --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_nunc_image 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_nunc_image --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_nunc_image 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_nunc_image --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_saved_search 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_saved_search --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_saved_search 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_saved_search --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_saved_search 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_saved_search --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_saved_searches 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_saved_searches --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_saved_search 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_saved_search --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_lifecycle_measurement_definitions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_lifecycle_measurement_definitions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_lifecycle_measurement_definition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_lifecycle_measurement_definition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_lifecycle_measurement_definition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_lifecycle_measurement_definition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_lifecycle_measurement_definition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_lifecycle_measurement_definition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_lifecycle_measurement_definition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_lifecycle_measurement_definition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_lifecycle_phases 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_lifecycle_phases --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_lifecycle_milestone 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_lifecycle_milestone --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_lifecycle_milestone 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_lifecycle_milestone --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_lifecycle_milestone 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_lifecycle_milestone --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_priorities 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_priorities --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_priority 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_priority --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_priority 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_priority --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_priority 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_priority --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_priority 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_priority --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_severities 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_severities --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_severity 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_severity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_severity 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_severity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_severity 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_severity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_severity 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_severity --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_severity_matrix 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_severity_matrix --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_severity_matrix 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_severity_matrix --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_severity_matrix_conditions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_severity_matrix_conditions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_severity_matrix_condition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_severity_matrix_condition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_severity_matrix_condition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_severity_matrix_condition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_severity_matrix_condition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_severity_matrix_condition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_severity_matrix_condition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_severity_matrix_condition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_severity_matrix_impacts 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_severity_matrix_impacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_severity_matrix_impact 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_severity_matrix_impact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_severity_matrix_impact 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_severity_matrix_impact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_severity_matrix_impact 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_severity_matrix_impact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_scheduled_maintenances 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_scheduled_maintenances --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_scheduled_maintenance 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_scheduled_maintenance --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_scheduled_maintenance 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_scheduled_maintenance --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_scheduled_maintenance 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_scheduled_maintenance --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_scheduled_maintenance 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_scheduled_maintenance --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_schedules 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_schedules --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_infrastructures 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_infrastructures --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_nunc_subscription 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_nunc_subscription --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_nunc_subscription 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_nunc_subscription --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_status_update_templates 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_status_update_templates --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_status_update_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_status_update_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_status_update_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_status_update_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_status_update_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_status_update_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_status_update_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_status_update_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_custom_field_definition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_custom_field_definition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_custom_field_definition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_custom_field_definition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_custom_field_definitions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_custom_field_definitions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_custom_field_definition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_custom_field_definition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_custom_field_select_options 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_custom_field_select_options --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_post_mortem_reports 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_post_mortem_reports --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_post_mortem_report 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_post_mortem_report --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_post_mortem_report 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_post_mortem_report --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_post_mortem_report 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_post_mortem_report --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_post_mortem_reasons 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_post_mortem_reasons --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_post_mortem_reason 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_post_mortem_reason --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_post_mortem_reason 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_post_mortem_reason --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_post_mortem_reason 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_post_mortem_reason --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_reorder_post_mortem_reasons 0 parameters
kosmo integrations:schema firehydrant.firehydrant_reorder_post_mortem_reasons --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_publish_post_mortem_report 0 parameters
kosmo integrations:schema firehydrant.firehydrant_publish_post_mortem_report --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_post_mortem_field 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_post_mortem_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_post_mortem_questions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_post_mortem_questions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_post_mortem_questions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_post_mortem_questions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_post_mortem_question 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_post_mortem_question --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_retrospective_templates 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_retrospective_templates --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_retrospective_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_retrospective_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_retrospective_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_retrospective_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_retrospective_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_retrospective_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_retrospective_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_retrospective_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_alerts 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_alerts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_alert 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_alert --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_processing_log_entries 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_processing_log_entries --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_signals_page 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_signals_page --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_tickets 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_tickets --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_ticket 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_ticket --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_ticket 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_ticket --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_ticket 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_ticket --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_ticket 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_ticket --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_ticketing_projects 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_ticketing_projects --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_ticketing_project 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_ticketing_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_configuration_options 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_configuration_options --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_options_for_field 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_options_for_field --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_available_ticketing_field_maps 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_available_ticketing_field_maps --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_ticketing_field_map 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_ticketing_field_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_ticketing_field_map 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_ticketing_field_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_ticketing_field_map 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_ticketing_field_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_ticketing_field_map 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_ticketing_field_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_available_inbound_field_maps 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_available_inbound_field_maps --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_inbound_field_maps 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_inbound_field_maps --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_inbound_field_map 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_inbound_field_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_inbound_field_map 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_inbound_field_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_inbound_field_map 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_inbound_field_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_inbound_field_map 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_inbound_field_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_ticketing_project_config 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_ticketing_project_config --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_ticketing_project_config 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_ticketing_project_config --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_ticketing_project_config 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_ticketing_project_config --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_ticketing_project_config 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_ticketing_project_config --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_ticketing_priorities 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_ticketing_priorities --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_ticketing_priority 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_ticketing_priority --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_ticketing_priority 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_ticketing_priority --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_ticketing_priority 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_ticketing_priority --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_ticketing_priority 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_ticketing_priority --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_ticket_tags 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_ticket_tags --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_ticketing_form_configuration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_ticketing_form_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_ticketing_custom_definitions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_ticketing_custom_definitions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_ticketing_custom_definition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_ticketing_custom_definition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_ticketing_custom_definition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_ticketing_custom_definition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_ticketing_custom_definition 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_ticketing_custom_definition --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_task_lists 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_task_lists --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_task_list 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_task_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_task_list 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_task_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_task_list 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_task_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_task_list 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_task_list --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_ping_noauth 0 parameters
kosmo integrations:schema firehydrant.firehydrant_ping_noauth --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_scim_group 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_scim_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_scim_group 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_scim_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_patch_scim_group 0 parameters
kosmo integrations:schema firehydrant.firehydrant_patch_scim_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_scim_group 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_scim_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_scim_groups 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_scim_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_scim_group 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_scim_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_scim_user 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_scim_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_scim_user 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_scim_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_patch_scim_user 0 parameters
kosmo integrations:schema firehydrant.firehydrant_patch_scim_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_scim_user 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_scim_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_scim_users 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_scim_users --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_scim_user 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_scim_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_refresh_catalog 0 parameters
kosmo integrations:schema firehydrant.firehydrant_refresh_catalog --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_ingest_catalog_data 0 parameters
kosmo integrations:schema firehydrant.firehydrant_ingest_catalog_data --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_checklist_templates 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_checklist_templates --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_checklist_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_checklist_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_checklist_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_checklist_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_checklist_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_checklist_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_checklist_template 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_checklist_template --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_bootstrap 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_bootstrap --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_append_form_data_on_selected_value_get 0 parameters
kosmo integrations:schema firehydrant.firehydrant_append_form_data_on_selected_value_get --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_form_configuration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_form_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_comment_reaction 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_comment_reaction --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_comment_reactions 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_comment_reactions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_comment_reaction 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_comment_reaction --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_comment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_comment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_comment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_comment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_comment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_comment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_comments 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_comments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_comment 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_comment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_signals_alert 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_signals_alert --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_timeseries_analytics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_timeseries_analytics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_grouped_metrics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_grouped_metrics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_mttx_analytics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_mttx_analytics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_noise_analytics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_noise_analytics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_export_signals_shift_analytics 0 parameters
kosmo integrations:schema firehydrant.firehydrant_export_signals_shift_analytics --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_call_routes 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_call_routes --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_call_route 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_call_route --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_call_route 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_call_route --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_call_route 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_call_route --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_signals_event_sources 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_signals_event_sources --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_signals_event_source 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_signals_event_source --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_event_source 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_event_source --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_signals_event_source 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_signals_event_source --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_hacker_mode 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_hacker_mode --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_signals_alert_grouping_configurations 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_signals_alert_grouping_configurations --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_signals_alert_grouping_configuration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_signals_alert_grouping_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_alert_grouping_configuration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_alert_grouping_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_signals_alert_grouping_configuration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_signals_alert_grouping_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_signals_alert_grouping_configuration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_signals_alert_grouping_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_signals_email_targets 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_signals_email_targets --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_signals_email_target 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_signals_email_target --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_email_target 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_email_target --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_signals_email_target 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_signals_email_target --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_signals_email_target 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_signals_email_target --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_signals_webhook_targets 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_signals_webhook_targets --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_signals_webhook_target 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_signals_webhook_target --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_webhook_target 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_webhook_target --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_signals_webhook_target 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_signals_webhook_target --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_signals_webhook_target 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_signals_webhook_target --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_signals_heartbeat_endpoint_configurations 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_signals_heartbeat_endpoint_configurations --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_signals_heartbeat_endpoint_configuration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_signals_heartbeat_endpoint_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_heartbeat_endpoint_status 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_heartbeat_endpoint_status --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_heartbeat_endpoint_url 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_heartbeat_endpoint_url --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_heartbeat_endpoint_configuration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_heartbeat_endpoint_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_signals_heartbeat_endpoint_configuration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_signals_heartbeat_endpoint_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_signals_heartbeat_endpoint_configuration 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_signals_heartbeat_endpoint_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_notification_policy_settings 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_notification_policy_settings --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_notification_policy 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_notification_policy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_notification_policy 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_notification_policy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_notification_policy 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_notification_policy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_notification_policy 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_notification_policy --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_user_notification_settings_by_user_id 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_user_notification_settings_by_user_id --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_signals_transposers 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_signals_transposers --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_signals_ingest_url 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_signals_ingest_url --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_debug_signals_expression 0 parameters
kosmo integrations:schema firehydrant.firehydrant_debug_signals_expression --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_organization_on_call_schedules 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_organization_on_call_schedules --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_webhooks 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_webhooks --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_webhook 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_webhook_deliveries 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_webhook_deliveries --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_webhook 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_webhook 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_delete_webhook 0 parameters
kosmo integrations:schema firehydrant.firehydrant_delete_webhook --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_ai_incident_summary_vote_status 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_ai_incident_summary_vote_status --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_vote_ai_incident_summary 0 parameters
kosmo integrations:schema firehydrant.firehydrant_vote_ai_incident_summary --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_ai_preferences 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_ai_preferences --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_ai_preferences 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_ai_preferences --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_audiences 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_audiences --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_create_audience 0 parameters
kosmo integrations:schema firehydrant.firehydrant_create_audience --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_audience 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_audience --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_update_audience 0 parameters
kosmo integrations:schema firehydrant.firehydrant_update_audience --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_archive_audience 0 parameters
kosmo integrations:schema firehydrant.firehydrant_archive_audience --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_restore_audience 0 parameters
kosmo integrations:schema firehydrant.firehydrant_restore_audience --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_member_default_audience 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_member_default_audience --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_set_member_default_audience 0 parameters
kosmo integrations:schema firehydrant.firehydrant_set_member_default_audience --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_get_audience_summary 0 parameters
kosmo integrations:schema firehydrant.firehydrant_get_audience_summary --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_generate_audience_summary 0 parameters
kosmo integrations:schema firehydrant.firehydrant_generate_audience_summary --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
firehydrant.firehydrant_list_audience_summaries 0 parameters
kosmo integrations:schema firehydrant.firehydrant_list_audience_summaries --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.