KosmoKrator

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, configure, and verify
# 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.

KeyEnv varTypeRequiredLabel
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.

Generic CLI call
kosmo integrations:call firehydrant.firehydrant_ping '{}' --json
Provider shortcut
kosmo integrations:firehydrant firehydrant_ping '{}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_ping '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_environments '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_environment '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_environment '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_environment '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_environment '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_environment_services '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_environment_functionalities '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_services '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_service '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_service_links '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_service '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_service '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_service '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_service_environments '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_service_dependencies '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_service_available_upstream_dependencies '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_service_available_downstream_dependencies '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_service_link '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_service_checklist_response '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_service_dependency '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_service_dependency '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_service_dependency '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_service_dependency '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_functionalities '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_functionality '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_functionality '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_functionality '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_functionality '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_functionality_environments '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_functionality_services '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_teams '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_team '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_team '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_team '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_team '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_support_hours_schedule '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_support_hours_schedule '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_support_hours_schedule '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_team_call_routes '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_team_call_route '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_team_escalation_policies '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_team_escalation_policy '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_team_escalation_policy '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_team_escalation_policy '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_team_escalation_policy '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_preview_team_on_call_schedule '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_team_on_call_schedules '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_team_on_call_schedule '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_team_on_call_schedule '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_team_on_call_schedule '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_team_on_call_schedule '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_preview_on_call_schedule_rotation '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_on_call_schedule_rotation '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_copy_on_call_schedule_rotation '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_on_call_schedule_rotation '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_on_call_schedule_rotation '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_on_call_schedule_rotation '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_override_on_call_schedule_rotation_shifts '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_on_call_shift '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_on_call_shift '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_on_call_shift '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_on_call_shift '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_team_signal_rules '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_team_signal_rule '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_team_signal_rule '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_team_signal_rule '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_team_signal_rule '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_changes '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_change '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_change '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_change '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_change_identities '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_change_identity '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_change_identity '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_change_identity '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_change_events '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_change_event '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_change_event '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_change_event '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_change_event '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_change_types '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_entitlements '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incidents '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_incident_channel '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_close_incident '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_resolve_incident '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_incident '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_unarchive_incident '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_alerts '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_alert '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_alert_primary '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_alert '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_bulk_update_incident_milestones '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_milestones '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_change_events '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_change_event '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_change_event '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_status_pages '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_status_page '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_status_page '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_task_list '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_tasks '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_task '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_incident_task '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_task '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_task '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_convert_incident_task '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_links '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_link '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_link '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_link '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_transcript_attribution '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_transcript_entries '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_transcript_entry '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_conference_bridges '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_conference_bridge_translation '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_similar_incidents '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_attachments '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_attachment '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_events '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_incident_event '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_event '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_event '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_vote_status '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_vote '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_impact_put '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_impact_patch '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_impacts '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_impact '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_impact '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_note '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_note '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_chat_message '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_chat_message '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_chat_message '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_role_assignments '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_role_assignment '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_role_assignment '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_team_assignment '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_team_assignment '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_incident_user '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_incident_relationships '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_share_incident_retrospectives '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_export_incident_retrospectives_markdown '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_export_incident_retrospectives '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_retrospectives '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_retrospective '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_retrospective '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_retrospective_field '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_incident_retrospective_field '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_retrospective_field '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_retrospective_dynamic_input '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_retrospective_dynamic_input '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_roles '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_role '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_incident_role '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_role '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_role '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_validate_incident_tags '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_tags '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_types '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_incident_type '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_incident_type '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_incident_type '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_incident_type '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_integrations '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_integration '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_field_map '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_field_map_available_fields '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_authed_providers '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_authed_provider '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_connections '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_connection '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_refresh_connection '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_connection '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_connection_statuses '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_connection_statuses_by_slug '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_connection_statuses_by_slug_and_id '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_aws_connections '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_aws_connection '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_aws_connection '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_aws_cloudtrail_batches '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_aws_cloudtrail_batch '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_aws_cloudtrail_batch '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_aws_cloudtrail_batch_events '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_search_confluence_spaces '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_slack_workspaces '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_slack_usergroups '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_slack_emoji_actions '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_slack_emoji_action '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_slack_emoji_action '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_slack_emoji_action '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_slack_emoji_action '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_statuspage_connections '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_statuspage_connection '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_statuspage_connection '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_statuspage_connection '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_statuspage_connection_pages '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_search_zendesk_tickets '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_zendesk_customer_support_issue '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_users '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_user '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_user_owned_services '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_current_user '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_permissions '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_current_user_permissions '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_team_permissions '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_mean_time_report '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_retrospectives '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_roles '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_role '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_role '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_role '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_role '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_ticket_funnel_metrics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_retrospective_metrics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_milestone_funnel_metrics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_user_involvement_metrics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_incident_metrics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_mttx_metrics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_infrastructure_type_metrics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_infrastructure_metrics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_runbook_actions '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_runbook_executions '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_runbook_execution '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_runbook_execution '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_runbook_execution '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_runbook_execution_step '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_runbook_execution_step_script '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_runbook_execution_step_script '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_runbook_action_field_options '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_runbooks '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_runbook '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_runbook '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_runbook '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_runbook '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_runbook_audits '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_audit_events '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_audit_event '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_nunc_connections '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_nunc_connection '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_email_subscribers '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_email_subscriber '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_email_subscriber '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_nunc_connection '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_nunc_connection '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_nunc_connection '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_unpublish_nunc_connection '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_publish_nunc_connection '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_nunc_component_group '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_nunc_component_group '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_nunc_component_group '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_nunc_link '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_nunc_link '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_nunc_link '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_nunc_image '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_nunc_image '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_saved_search '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_saved_search '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_saved_search '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_saved_searches '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_saved_search '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_lifecycle_measurement_definitions '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_lifecycle_measurement_definition '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_lifecycle_measurement_definition '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_lifecycle_measurement_definition '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_lifecycle_measurement_definition '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_lifecycle_phases '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_lifecycle_milestone '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_lifecycle_milestone '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_lifecycle_milestone '{}' --json
Shortcut
kosmo integrations:firehydrant firehydrant_delete_lifecycle_milestone '{}' --json

firehydrant.firehydrant_list_priorities

List priorities Official FireHydrant endpoint: GET /v1/priorities Lists priorities

Read read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_priorities '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_priority '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_priority '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_priority '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_priority '{}' --json
Shortcut
kosmo integrations:firehydrant firehydrant_delete_priority '{}' --json

firehydrant.firehydrant_list_severities

List severities Official FireHydrant endpoint: GET /v1/severities Lists severities

Read read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_severities '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_severity '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_severity '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_severity '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_severity '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_severity_matrix '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_severity_matrix '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_severity_matrix_conditions '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_severity_matrix_condition '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_severity_matrix_condition '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_severity_matrix_condition '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_severity_matrix_condition '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_severity_matrix_impacts '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_severity_matrix_impact '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_severity_matrix_impact '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_severity_matrix_impact '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_scheduled_maintenances '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_scheduled_maintenance '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_scheduled_maintenance '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_scheduled_maintenance '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_scheduled_maintenance '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_schedules '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_infrastructures '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_nunc_subscription '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_nunc_subscription '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_status_update_templates '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_status_update_template '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_status_update_template '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_status_update_template '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_status_update_template '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_custom_field_definition '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_custom_field_definition '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_custom_field_definitions '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_custom_field_definition '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_custom_field_select_options '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_post_mortem_reports '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_post_mortem_report '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_post_mortem_report '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_post_mortem_report '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_post_mortem_reasons '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_post_mortem_reason '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_post_mortem_reason '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_post_mortem_reason '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_reorder_post_mortem_reasons '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_publish_post_mortem_report '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_post_mortem_field '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_post_mortem_questions '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_post_mortem_questions '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_post_mortem_question '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_retrospective_templates '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_retrospective_template '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_retrospective_template '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_retrospective_template '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_retrospective_template '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_alerts '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_alert '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_processing_log_entries '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_signals_page '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_tickets '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_ticket '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_ticket '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_ticket '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_ticket '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_ticketing_projects '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_ticketing_project '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_configuration_options '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_options_for_field '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_available_ticketing_field_maps '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_ticketing_field_map '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_ticketing_field_map '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_ticketing_field_map '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_ticketing_field_map '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_available_inbound_field_maps '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_inbound_field_maps '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_inbound_field_map '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_inbound_field_map '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_inbound_field_map '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_inbound_field_map '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_ticketing_project_config '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_ticketing_project_config '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_ticketing_project_config '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_ticketing_project_config '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_ticketing_priorities '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_ticketing_priority '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_ticketing_priority '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_ticketing_priority '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_ticketing_priority '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_ticket_tags '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_ticketing_form_configuration '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_ticketing_custom_definitions '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_ticketing_custom_definition '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_ticketing_custom_definition '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_ticketing_custom_definition '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_task_lists '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_task_list '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_task_list '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_task_list '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_task_list '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_ping_noauth '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_scim_group '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_scim_group '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_patch_scim_group '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_scim_group '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_scim_groups '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_scim_group '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_scim_user '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_scim_user '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_patch_scim_user '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_scim_user '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_scim_users '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_scim_user '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_refresh_catalog '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_ingest_catalog_data '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_checklist_templates '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_checklist_template '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_checklist_template '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_checklist_template '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_checklist_template '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_bootstrap '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_append_form_data_on_selected_value_get '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_form_configuration '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_comment_reaction '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_comment_reactions '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_comment_reaction '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_comment '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_comment '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_comment '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_comments '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_comment '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_signals_alert '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_timeseries_analytics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_grouped_metrics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_mttx_analytics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_noise_analytics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_export_signals_shift_analytics '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_call_routes '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_call_route '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_call_route '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_call_route '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_signals_event_sources '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_signals_event_source '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_event_source '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_signals_event_source '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_hacker_mode '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_signals_alert_grouping_configurations '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_signals_alert_grouping_configuration '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_alert_grouping_configuration '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_signals_alert_grouping_configuration '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_signals_alert_grouping_configuration '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_signals_email_targets '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_signals_email_target '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_email_target '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_signals_email_target '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_signals_email_target '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_signals_webhook_targets '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_signals_webhook_target '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_webhook_target '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_signals_webhook_target '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_signals_webhook_target '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_signals_heartbeat_endpoint_configurations '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_signals_heartbeat_endpoint_configuration '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_heartbeat_endpoint_status '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_heartbeat_endpoint_url '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_heartbeat_endpoint_configuration '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_signals_heartbeat_endpoint_configuration '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_signals_heartbeat_endpoint_configuration '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_notification_policy_settings '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_notification_policy '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_notification_policy '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_notification_policy '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_notification_policy '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_user_notification_settings_by_user_id '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_signals_transposers '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_signals_ingest_url '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_debug_signals_expression '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_organization_on_call_schedules '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_webhooks '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_webhook '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_webhook_deliveries '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_webhook '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_webhook '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_delete_webhook '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_ai_incident_summary_vote_status '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_vote_ai_incident_summary '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_ai_preferences '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_ai_preferences '{}' --json
Shortcut
kosmo integrations:firehydrant firehydrant_update_ai_preferences '{}' --json

firehydrant.firehydrant_list_audiences

List audiences Official FireHydrant endpoint: GET /v1/audiences List all audiences

Read read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_audiences '{}' --json
Shortcut
kosmo integrations:firehydrant firehydrant_list_audiences '{}' --json

firehydrant.firehydrant_create_audience

Create audience Official FireHydrant endpoint: POST /v1/audiences Create a new audience

Write write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_create_audience '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_audience '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_update_audience '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_archive_audience '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_restore_audience '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_member_default_audience '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_set_member_default_audience '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_get_audience_summary '{}' --json
Shortcut
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 write
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_generate_audience_summary '{}' --json
Shortcut
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 read
Parameters
none
Generic call
kosmo integrations:call firehydrant.firehydrant_list_audience_summaries '{}' --json
Shortcut
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
Schema command
kosmo integrations:schema firehydrant.firehydrant_ping --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_environments 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_environments --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_environment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_environment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_environment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_environment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_environment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_environment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_environment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_environment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_environment_services 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_environment_services --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_environment_functionalities 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_environment_functionalities --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_services 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_services --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_service 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_service --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_service 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_service --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_service 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_service --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_service 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_service --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_service_environments 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_service_environments --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_service_dependencies 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_service_dependencies --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_service_available_upstream_dependencies 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_service_available_upstream_dependencies --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_service_available_downstream_dependencies 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_service_available_downstream_dependencies --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_service_checklist_response 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_service_checklist_response --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_service_dependency 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_service_dependency --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_service_dependency 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_service_dependency --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_service_dependency 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_service_dependency --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_service_dependency 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_service_dependency --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_functionalities 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_functionalities --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_functionality 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_functionality --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_functionality 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_functionality --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_functionality 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_functionality --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_functionality 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_functionality --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_functionality_environments 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_functionality_environments --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_functionality_services 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_functionality_services --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_teams 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_teams --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_team 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_team --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_team 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_team --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_team 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_team --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_team 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_team --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_support_hours_schedule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_support_hours_schedule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_support_hours_schedule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_support_hours_schedule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_support_hours_schedule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_support_hours_schedule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_team_call_routes 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_team_call_routes --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_team_call_route 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_team_call_route --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_team_escalation_policies 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_team_escalation_policies --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_team_escalation_policy 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_team_escalation_policy --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_team_escalation_policy 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_team_escalation_policy --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_team_escalation_policy 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_team_escalation_policy --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_team_escalation_policy 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_team_escalation_policy --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_preview_team_on_call_schedule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_preview_team_on_call_schedule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_team_on_call_schedules 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_team_on_call_schedules --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_team_on_call_schedule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_team_on_call_schedule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_team_on_call_schedule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_team_on_call_schedule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_team_on_call_schedule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_team_on_call_schedule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_team_on_call_schedule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_team_on_call_schedule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_preview_on_call_schedule_rotation 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_preview_on_call_schedule_rotation --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_on_call_schedule_rotation 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_on_call_schedule_rotation --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_copy_on_call_schedule_rotation 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_copy_on_call_schedule_rotation --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_on_call_schedule_rotation 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_on_call_schedule_rotation --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_on_call_schedule_rotation 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_on_call_schedule_rotation --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_on_call_schedule_rotation 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_on_call_schedule_rotation --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_override_on_call_schedule_rotation_shifts 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_override_on_call_schedule_rotation_shifts --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_on_call_shift 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_on_call_shift --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_on_call_shift 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_on_call_shift --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_on_call_shift 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_on_call_shift --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_on_call_shift 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_on_call_shift --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_team_signal_rules 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_team_signal_rules --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_team_signal_rule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_team_signal_rule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_team_signal_rule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_team_signal_rule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_team_signal_rule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_team_signal_rule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_team_signal_rule 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_team_signal_rule --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_changes 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_changes --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_change 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_change --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_change 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_change --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_change 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_change --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_change_identities 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_change_identities --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_change_identity 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_change_identity --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_change_identity 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_change_identity --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_change_identity 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_change_identity --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_change_events 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_change_events --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_change_event 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_change_event --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_change_event 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_change_event --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_change_event 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_change_event --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_change_event 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_change_event --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_change_types 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_change_types --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_entitlements 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_entitlements --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incidents 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incidents --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_incident_channel 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_incident_channel --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_close_incident 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_close_incident --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_resolve_incident 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_resolve_incident --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_incident 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_incident --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_unarchive_incident 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_unarchive_incident --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_alerts 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_alerts --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_alert 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_alert --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_alert_primary 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_alert_primary --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_alert 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_alert --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_bulk_update_incident_milestones 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_bulk_update_incident_milestones --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_milestones 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_milestones --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_change_events 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_change_events --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_change_event 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_change_event --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_change_event 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_change_event --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_status_pages 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_status_pages --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_status_page 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_status_page --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_status_page 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_status_page --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_task_list 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_task_list --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_tasks 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_tasks --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_task 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_task --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_incident_task 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_incident_task --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_task 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_task --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_task 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_task --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_convert_incident_task 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_convert_incident_task --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_transcript_attribution 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_transcript_attribution --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_transcript_entries 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_transcript_entries --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_transcript_entry 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_transcript_entry --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_conference_bridges 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_conference_bridges --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_conference_bridge_translation 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_conference_bridge_translation --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_similar_incidents 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_similar_incidents --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_attachments 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_attachments --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_attachment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_attachment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_events 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_events --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_incident_event 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_incident_event --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_event 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_event --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_event 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_event --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_vote_status 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_vote_status --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_vote 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_vote --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_impact_put 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_impact_put --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_impact_patch 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_impact_patch --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_impacts 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_impacts --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_impact 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_impact --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_impact 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_impact --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_note 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_note --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_note 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_note --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_chat_message 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_chat_message --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_chat_message 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_chat_message --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_chat_message 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_chat_message --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_role_assignments 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_role_assignments --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_role_assignment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_role_assignment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_role_assignment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_role_assignment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_team_assignment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_team_assignment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_team_assignment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_team_assignment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_incident_user 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_incident_user --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_incident_relationships 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_incident_relationships --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_share_incident_retrospectives 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_share_incident_retrospectives --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_export_incident_retrospectives_markdown 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_export_incident_retrospectives_markdown --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_export_incident_retrospectives 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_export_incident_retrospectives --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_retrospectives 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_retrospectives --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_retrospective 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_retrospective --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_retrospective 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_retrospective --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_retrospective_field 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_retrospective_field --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_incident_retrospective_field 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_incident_retrospective_field --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_retrospective_field 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_retrospective_field --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_retrospective_dynamic_input 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_retrospective_dynamic_input --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_retrospective_dynamic_input 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_retrospective_dynamic_input --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_roles 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_roles --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_role 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_role --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_incident_role 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_incident_role --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_role 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_role --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_role 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_role --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_validate_incident_tags 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_validate_incident_tags --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_tags 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_tags --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_types 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_types --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_incident_type 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_incident_type --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_incident_type 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_incident_type --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_incident_type 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_incident_type --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_incident_type 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_incident_type --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_integrations 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_integrations --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_integration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_integration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_field_map 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_field_map --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_field_map_available_fields 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_field_map_available_fields --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_authed_providers 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_authed_providers --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_authed_provider 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_authed_provider --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_connections 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_connections --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_refresh_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_refresh_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_connection_statuses 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_connection_statuses --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_connection_statuses_by_slug 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_connection_statuses_by_slug --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_connection_statuses_by_slug_and_id 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_connection_statuses_by_slug_and_id --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_aws_connections 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_aws_connections --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_aws_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_aws_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_aws_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_aws_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_aws_cloudtrail_batches 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_aws_cloudtrail_batches --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_aws_cloudtrail_batch 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_aws_cloudtrail_batch --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_aws_cloudtrail_batch 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_aws_cloudtrail_batch --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_aws_cloudtrail_batch_events 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_aws_cloudtrail_batch_events --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_search_confluence_spaces 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_search_confluence_spaces --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_slack_workspaces 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_slack_workspaces --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_slack_usergroups 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_slack_usergroups --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_slack_emoji_actions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_slack_emoji_actions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_slack_emoji_action 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_slack_emoji_action --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_slack_emoji_action 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_slack_emoji_action --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_slack_emoji_action 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_slack_emoji_action --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_slack_emoji_action 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_slack_emoji_action --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_statuspage_connections 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_statuspage_connections --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_statuspage_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_statuspage_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_statuspage_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_statuspage_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_statuspage_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_statuspage_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_statuspage_connection_pages 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_statuspage_connection_pages --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_search_zendesk_tickets 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_search_zendesk_tickets --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_zendesk_customer_support_issue 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_zendesk_customer_support_issue --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_users 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_users --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_user 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_user --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_user_owned_services 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_user_owned_services --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_current_user 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_current_user --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_permissions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_permissions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_current_user_permissions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_current_user_permissions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_team_permissions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_team_permissions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_mean_time_report 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_mean_time_report --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_retrospectives 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_retrospectives --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_roles 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_roles --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_role 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_role --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_role 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_role --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_role 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_role --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_role 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_role --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_ticket_funnel_metrics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_ticket_funnel_metrics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_retrospective_metrics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_retrospective_metrics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_milestone_funnel_metrics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_milestone_funnel_metrics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_user_involvement_metrics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_user_involvement_metrics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_incident_metrics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_incident_metrics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_mttx_metrics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_mttx_metrics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_infrastructure_type_metrics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_infrastructure_type_metrics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_infrastructure_metrics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_infrastructure_metrics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_runbook_actions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_runbook_actions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_runbook_executions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_runbook_executions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_runbook_execution 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_runbook_execution --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_runbook_execution 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_runbook_execution --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_runbook_execution 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_runbook_execution --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_runbook_execution_step 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_runbook_execution_step --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_runbook_execution_step_script 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_runbook_execution_step_script --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_runbook_execution_step_script 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_runbook_execution_step_script --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_runbook_action_field_options 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_runbook_action_field_options --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_runbooks 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_runbooks --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_runbook 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_runbook --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_runbook 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_runbook --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_runbook 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_runbook --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_runbook 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_runbook --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_runbook_audits 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_runbook_audits --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_audit_events 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_audit_events --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_audit_event 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_audit_event --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_nunc_connections 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_nunc_connections --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_nunc_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_nunc_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_email_subscribers 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_email_subscribers --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_email_subscriber 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_email_subscriber --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_email_subscriber 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_email_subscriber --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_nunc_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_nunc_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_nunc_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_nunc_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_nunc_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_nunc_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_unpublish_nunc_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_unpublish_nunc_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_publish_nunc_connection 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_publish_nunc_connection --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_nunc_component_group 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_nunc_component_group --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_nunc_component_group 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_nunc_component_group --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_nunc_component_group 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_nunc_component_group --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_nunc_image 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_nunc_image --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_nunc_image 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_nunc_image --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_saved_searches 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_saved_searches --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_lifecycle_measurement_definitions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_lifecycle_measurement_definitions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_lifecycle_measurement_definition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_lifecycle_measurement_definition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_lifecycle_measurement_definition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_lifecycle_measurement_definition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_lifecycle_measurement_definition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_lifecycle_measurement_definition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_lifecycle_measurement_definition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_lifecycle_measurement_definition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_lifecycle_phases 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_lifecycle_phases --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_lifecycle_milestone 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_lifecycle_milestone --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_lifecycle_milestone 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_lifecycle_milestone --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_lifecycle_milestone 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_lifecycle_milestone --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_priorities 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_priorities --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_priority 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_priority --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_priority 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_priority --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_priority 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_priority --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_priority 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_priority --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_severities 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_severities --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_severity 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_severity --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_severity 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_severity --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_severity 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_severity --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_severity 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_severity --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_severity_matrix 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_severity_matrix --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_severity_matrix 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_severity_matrix --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_severity_matrix_conditions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_severity_matrix_conditions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_severity_matrix_condition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_severity_matrix_condition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_severity_matrix_condition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_severity_matrix_condition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_severity_matrix_condition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_severity_matrix_condition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_severity_matrix_condition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_severity_matrix_condition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_severity_matrix_impacts 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_severity_matrix_impacts --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_severity_matrix_impact 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_severity_matrix_impact --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_severity_matrix_impact 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_severity_matrix_impact --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_severity_matrix_impact 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_severity_matrix_impact --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_scheduled_maintenances 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_scheduled_maintenances --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_scheduled_maintenance 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_scheduled_maintenance --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_scheduled_maintenance 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_scheduled_maintenance --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_scheduled_maintenance 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_scheduled_maintenance --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_scheduled_maintenance 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_scheduled_maintenance --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_schedules 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_schedules --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_infrastructures 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_infrastructures --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_nunc_subscription 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_nunc_subscription --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_nunc_subscription 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_nunc_subscription --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_status_update_templates 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_status_update_templates --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_status_update_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_status_update_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_status_update_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_status_update_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_status_update_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_status_update_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_status_update_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_status_update_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_custom_field_definition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_custom_field_definition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_custom_field_definition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_custom_field_definition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_custom_field_definitions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_custom_field_definitions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_custom_field_definition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_custom_field_definition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_custom_field_select_options 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_custom_field_select_options --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_post_mortem_reports 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_post_mortem_reports --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_post_mortem_report 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_post_mortem_report --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_post_mortem_report 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_post_mortem_report --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_post_mortem_report 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_post_mortem_report --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_post_mortem_reasons 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_post_mortem_reasons --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_post_mortem_reason 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_post_mortem_reason --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_post_mortem_reason 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_post_mortem_reason --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_post_mortem_reason 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_post_mortem_reason --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_reorder_post_mortem_reasons 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_reorder_post_mortem_reasons --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_publish_post_mortem_report 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_publish_post_mortem_report --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_post_mortem_field 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_post_mortem_field --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_post_mortem_questions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_post_mortem_questions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_post_mortem_questions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_post_mortem_questions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_post_mortem_question 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_post_mortem_question --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_retrospective_templates 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_retrospective_templates --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_retrospective_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_retrospective_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_retrospective_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_retrospective_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_retrospective_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_retrospective_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_retrospective_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_retrospective_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_alerts 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_alerts --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_alert 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_alert --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_processing_log_entries 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_processing_log_entries --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_signals_page 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_signals_page --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_tickets 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_tickets --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_ticket 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_ticket --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_ticket 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_ticket --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_ticket 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_ticket --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_ticket 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_ticket --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_ticketing_projects 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_ticketing_projects --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_ticketing_project 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_ticketing_project --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_configuration_options 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_configuration_options --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_options_for_field 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_options_for_field --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_available_ticketing_field_maps 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_available_ticketing_field_maps --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_ticketing_field_map 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_ticketing_field_map --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_ticketing_field_map 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_ticketing_field_map --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_ticketing_field_map 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_ticketing_field_map --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_ticketing_field_map 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_ticketing_field_map --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_available_inbound_field_maps 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_available_inbound_field_maps --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_inbound_field_maps 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_inbound_field_maps --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_inbound_field_map 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_inbound_field_map --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_inbound_field_map 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_inbound_field_map --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_inbound_field_map 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_inbound_field_map --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_inbound_field_map 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_inbound_field_map --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_ticketing_project_config 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_ticketing_project_config --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_ticketing_project_config 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_ticketing_project_config --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_ticketing_project_config 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_ticketing_project_config --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_ticketing_project_config 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_ticketing_project_config --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_ticketing_priorities 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_ticketing_priorities --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_ticketing_priority 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_ticketing_priority --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_ticketing_priority 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_ticketing_priority --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_ticketing_priority 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_ticketing_priority --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_ticketing_priority 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_ticketing_priority --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_ticket_tags 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_ticket_tags --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_ticketing_form_configuration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_ticketing_form_configuration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_ticketing_custom_definitions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_ticketing_custom_definitions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_ticketing_custom_definition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_ticketing_custom_definition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_ticketing_custom_definition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_ticketing_custom_definition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_ticketing_custom_definition 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_ticketing_custom_definition --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_task_lists 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_task_lists --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_task_list 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_task_list --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_task_list 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_task_list --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_task_list 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_task_list --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_task_list 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_task_list --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_ping_noauth 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_ping_noauth --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_scim_group 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_scim_group --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_scim_group 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_scim_group --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_patch_scim_group 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_patch_scim_group --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_scim_group 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_scim_group --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_scim_groups 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_scim_groups --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_scim_group 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_scim_group --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_scim_user 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_scim_user --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_scim_user 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_scim_user --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_patch_scim_user 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_patch_scim_user --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_scim_user 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_scim_user --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_scim_users 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_scim_users --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_scim_user 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_scim_user --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_refresh_catalog 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_refresh_catalog --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_ingest_catalog_data 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_ingest_catalog_data --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_checklist_templates 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_checklist_templates --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_checklist_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_checklist_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_checklist_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_checklist_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_checklist_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_checklist_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_checklist_template 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_checklist_template --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_bootstrap 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_bootstrap --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_append_form_data_on_selected_value_get 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_append_form_data_on_selected_value_get --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_form_configuration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_form_configuration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_comment_reaction 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_comment_reaction --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_comment_reactions 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_comment_reactions --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_comment_reaction 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_comment_reaction --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_comment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_comment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_comment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_comment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_comment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_comment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_comments 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_comments --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_comment 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_comment --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_signals_alert 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_signals_alert --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_timeseries_analytics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_timeseries_analytics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_grouped_metrics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_grouped_metrics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_mttx_analytics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_mttx_analytics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_noise_analytics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_noise_analytics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_export_signals_shift_analytics 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_export_signals_shift_analytics --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_call_routes 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_call_routes --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_call_route 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_call_route --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_call_route 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_call_route --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_call_route 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_call_route --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_signals_event_sources 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_signals_event_sources --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_signals_event_source 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_signals_event_source --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_event_source 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_event_source --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_signals_event_source 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_signals_event_source --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_hacker_mode 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_hacker_mode --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_signals_alert_grouping_configurations 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_signals_alert_grouping_configurations --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_signals_alert_grouping_configuration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_signals_alert_grouping_configuration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_alert_grouping_configuration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_alert_grouping_configuration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_signals_alert_grouping_configuration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_signals_alert_grouping_configuration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_signals_alert_grouping_configuration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_signals_alert_grouping_configuration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_signals_email_targets 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_signals_email_targets --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_signals_email_target 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_signals_email_target --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_email_target 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_email_target --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_signals_email_target 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_signals_email_target --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_signals_email_target 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_signals_email_target --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_signals_webhook_targets 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_signals_webhook_targets --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_signals_webhook_target 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_signals_webhook_target --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_webhook_target 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_webhook_target --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_signals_webhook_target 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_signals_webhook_target --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_signals_webhook_target 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_signals_webhook_target --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_signals_heartbeat_endpoint_configurations 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_signals_heartbeat_endpoint_configurations --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_signals_heartbeat_endpoint_configuration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_signals_heartbeat_endpoint_configuration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_heartbeat_endpoint_status 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_heartbeat_endpoint_status --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_heartbeat_endpoint_url 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_heartbeat_endpoint_url --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_heartbeat_endpoint_configuration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_heartbeat_endpoint_configuration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_signals_heartbeat_endpoint_configuration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_signals_heartbeat_endpoint_configuration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_signals_heartbeat_endpoint_configuration 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_signals_heartbeat_endpoint_configuration --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_notification_policy_settings 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_notification_policy_settings --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_notification_policy 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_notification_policy --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_notification_policy 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_notification_policy --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_notification_policy 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_notification_policy --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_notification_policy 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_notification_policy --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_user_notification_settings_by_user_id 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_user_notification_settings_by_user_id --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_signals_transposers 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_signals_transposers --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_signals_ingest_url 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_signals_ingest_url --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_debug_signals_expression 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_debug_signals_expression --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_organization_on_call_schedules 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_organization_on_call_schedules --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_webhooks 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_webhooks --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_webhook 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_webhook --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_webhook_deliveries 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_webhook_deliveries --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_webhook 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_webhook --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_webhook 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_webhook --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_delete_webhook 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_delete_webhook --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_ai_incident_summary_vote_status 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_ai_incident_summary_vote_status --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_vote_ai_incident_summary 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_vote_ai_incident_summary --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_ai_preferences 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_ai_preferences --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_ai_preferences 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_ai_preferences --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_audiences 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_audiences --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_create_audience 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_create_audience --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_audience 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_audience --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_update_audience 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_update_audience --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_archive_audience 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_archive_audience --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_restore_audience 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_restore_audience --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_member_default_audience 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_member_default_audience --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_set_member_default_audience 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_set_member_default_audience --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_get_audience_summary 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_get_audience_summary --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_generate_audience_summary 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_generate_audience_summary --json
ParameterTypeRequiredDescription
No parameters.
firehydrant.firehydrant_list_audience_summaries 0 parameters
Schema command
kosmo integrations:schema firehydrant.firehydrant_list_audience_summaries --json
ParameterTypeRequiredDescription
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.