KosmoKrator

productivity

Rootly CLI for AI Agents

Use the Rootly CLI from KosmoKrator to call Rootly tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Rootly CLI Setup

Rootly can be configured headlessly with `kosmokrator integrations:configure rootly`.

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 rootly --set api_token="$ROOTLY_API_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor rootly --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 ROOTLY_API_TOKEN Secret secret yes API Token
url ROOTLY_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 rootly.rootly_list_alert_events '{}' --json
Provider shortcut
kosmo integrations:rootly rootly_list_alert_events '{}' --json

Discovery

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

Discovery commands
kosmo integrations:docs rootly --json
kosmo integrations:docs rootly.rootly_list_alert_events --json
kosmo integrations:schema rootly.rootly_list_alert_events --json
kosmo integrations:search "Rootly" --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.

rootly.rootly_list_alert_events

List alert events Official Rootly endpoint: GET /v1/alerts/{alert_id}/events List alert_events

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

rootly.rootly_create_alert_event

Create alert event Official Rootly endpoint: POST /v1/alerts/{alert_id}/events Creates a new alert event

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_alert_event '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_alert_event '{}' --json

rootly.rootly_get_alert_event

Retrieve alert event Official Rootly endpoint: GET /v1/alert_events/{id} Retrieves a specific alert_event by id

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

rootly.rootly_update_alert_event

Update alert event Official Rootly endpoint: PATCH /v1/alert_events/{id} Updates a specific alert event. Only alert events with kind 'note' (user-created notes) can be updated. System-generated events are immutable to maintain audit trail i

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_alert_event '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_alert_event '{}' --json

rootly.rootly_delete_alert_event

Delete alert event Official Rootly endpoint: DELETE /v1/alert_events/{id} Deletes a specific alert event. Only alert events with kind 'note' (user-created notes) can be deleted. System-generated events are immutable to maintain audit trail

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_alert_event '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_alert_event '{}' --json

rootly.rootly_list_alert_fields

List alert fields Official Rootly endpoint: GET /v1/alert_fields List alert fields

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

rootly.rootly_create_alert_field

Creates an alert field Official Rootly endpoint: POST /v1/alert_fields Creates a new alert field from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_alert_field '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_alert_field '{}' --json

rootly.rootly_get_alert_field

Retrieves an alert field Official Rootly endpoint: GET /v1/alert_fields/{id} Retrieves a specific alert field by id

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

rootly.rootly_update_alert_field

Update an alert field Official Rootly endpoint: PUT /v1/alert_fields/{id} Update a specific alert field by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_alert_field '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_alert_field '{}' --json

rootly.rootly_delete_alert_field

Delete an alert field Official Rootly endpoint: DELETE /v1/alert_fields/{id} Delete a specific alert field by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_alert_field '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_alert_field '{}' --json

rootly.rootly_list_alert_groups

List alert groups Official Rootly endpoint: GET /v1/alert_groups List alert groups

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

rootly.rootly_create_alert_group

Creates an alert group Official Rootly endpoint: POST /v1/alert_groups Creates a new alert group. **Note**: For enhanced functionality and future compatibility, consider using the advanced alert grouping with `conditions` field instead of t

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_alert_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_alert_group '{}' --json

rootly.rootly_get_alert_group

Retrieves an alert group Official Rootly endpoint: GET /v1/alert_groups/{id} Retrieves a specific alert group by id

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

rootly.rootly_update_alert_group

Update an alert group Official Rootly endpoint: PATCH /v1/alert_groups/{id} Update a specific alert group by id. **Note**: For enhanced functionality and future compatibility, consider using the advanced alert grouping with `conditions` fie

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_alert_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_alert_group '{}' --json

rootly.rootly_delete_alert_group

Delete an alert group Official Rootly endpoint: DELETE /v1/alert_groups/{id} Delete a specific alert group by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_alert_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_alert_group '{}' --json

rootly.rootly_list_alert_routes

List alert routes Official Rootly endpoint: GET /v1/alert_routes List all alert routes for the current team with filtering and pagination. **Note: This endpoint requires access to Advanced Alert Routing. If you're unsure whether you have ac

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

rootly.rootly_create_alert_route

Creates an alert route Official Rootly endpoint: POST /v1/alert_routes Creates a new alert route from provided data. **Note: This endpoint requires access to Advanced Alert Routing. If you're unsure whether you have access to this feature,

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_alert_route '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_alert_route '{}' --json

rootly.rootly_get_alert_route

Get an alert route Official Rootly endpoint: GET /v1/alert_routes/{id} Get a specific alert route by id. **Note: This endpoint requires access to Advanced Alert Routing. If you're unsure whether you have access to this feature, please conta

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

rootly.rootly_update_alert_route

Update an alert route Official Rootly endpoint: PUT /v1/alert_routes/{id} Update a specific alert route by id. **Note: This endpoint requires access to Advanced Alert Routing. If you're unsure whether you have access to this feature, please

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_alert_route '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_alert_route '{}' --json

rootly.rootly_patch_alert_route

Update an alert route Official Rootly endpoint: PATCH /v1/alert_routes/{id} Updates an alert route. **Note: This endpoint requires access to Advanced Alert Routing. If you're unsure whether you have access to this feature, please contact Ro

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_patch_alert_route '{}' --json
Shortcut
kosmo integrations:rootly rootly_patch_alert_route '{}' --json

rootly.rootly_delete_alert_route

Delete an alert route Official Rootly endpoint: DELETE /v1/alert_routes/{id} Delete a specific alert route by id. **Note: This endpoint requires access to Advanced Alert Routing. If you're unsure whether you have access to this feature, ple

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_alert_route '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_alert_route '{}' --json

rootly.rootly_list_alert_routing_rules

List alert routing rules Official Rootly endpoint: GET /v1/alert_routing_rules List alert routing rules. **Note: If you are an advanced alert routing user, you should use the Alert Routes endpoint instead of this endpoint. If you don't know

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

rootly.rootly_create_alert_routing_rule

Creates an alert routing rule Official Rootly endpoint: POST /v1/alert_routing_rules Creates a new alert routing rule from provided data. **Note: If you are an advanced alert routing user, you should use the Alert Routes endpoint instead of

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_alert_routing_rule '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_alert_routing_rule '{}' --json

rootly.rootly_get_alert_routing_rule

Retrieves an alert routing rule Official Rootly endpoint: GET /v1/alert_routing_rules/{id} Retrieves a specific alert routing rule by id. **Note: If you are an advanced alert routing user, you should use the Alert Routes endpoint instead of

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

rootly.rootly_update_alert_routing_rule

Update an alert routing rule Official Rootly endpoint: PUT /v1/alert_routing_rules/{id} Update a specific alert routing rule by id. **Note: If you are an advanced alert routing user, you should use the Alert Routes endpoint instead of this

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_alert_routing_rule '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_alert_routing_rule '{}' --json

rootly.rootly_delete_alert_routing_rule

Delete an alert routing rule Official Rootly endpoint: DELETE /v1/alert_routing_rules/{id} Delete a specific alert routing rule by id. **Note: If you are an advanced alert routing user, you should use the Alert Routes endpoint instead of th

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_alert_routing_rule '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_alert_routing_rule '{}' --json

rootly.rootly_list_alert_urgencies

List alert urgencies Official Rootly endpoint: GET /v1/alert_urgencies List alert urgencies

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

rootly.rootly_create_alert_urgency

Creates an alert urgency Official Rootly endpoint: POST /v1/alert_urgencies Creates a new alert urgency from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_alert_urgency '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_alert_urgency '{}' --json

rootly.rootly_get_alert_urgency

Retrieves an alert urgency Official Rootly endpoint: GET /v1/alert_urgencies/{id} Retrieves a specific alert urgency by id

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

rootly.rootly_update_alert_urgency

Update an alert urgency Official Rootly endpoint: PUT /v1/alert_urgencies/{id} Update a specific alert urgency by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_alert_urgency '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_alert_urgency '{}' --json

rootly.rootly_delete_alert_urgency

Delete an alert urgency Official Rootly endpoint: DELETE /v1/alert_urgencies/{id} Delete a specific alert urgency by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_alert_urgency '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_alert_urgency '{}' --json

rootly.rootly_list_alerts_sources

List alert sources Official Rootly endpoint: GET /v1/alert_sources List alert sources

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

rootly.rootly_create_alerts_source

Creates an alert source Official Rootly endpoint: POST /v1/alert_sources Creates a new alert source from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_alerts_source '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_alerts_source '{}' --json

rootly.rootly_get_alerts_source

Retrieves an alert source Official Rootly endpoint: GET /v1/alert_sources/{id} Retrieves a specific alert source by id

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

rootly.rootly_update_alerts_source

Update an alert source Official Rootly endpoint: PUT /v1/alert_sources/{id} Update a specific alert source by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_alerts_source '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_alerts_source '{}' --json

rootly.rootly_delete_alerts_source

Delete an alert source Official Rootly endpoint: DELETE /v1/alert_sources/{id} Delete a specific alert source by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_alerts_source '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_alerts_source '{}' --json

rootly.rootly_list_incident_alerts

List Incident alerts Official Rootly endpoint: GET /v1/incidents/{incident_id}/alerts List incident alerts

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

rootly.rootly_attach_alert

Attach alerts to an incident Official Rootly endpoint: POST /v1/incidents/{incident_id}/alerts Attach alerts to an incident from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_attach_alert '{}' --json
Shortcut
kosmo integrations:rootly rootly_attach_alert '{}' --json

rootly.rootly_list_alerts

List alerts Official Rootly endpoint: GET /v1/alerts List alerts

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

rootly.rootly_create_alert

Creates an alert Official Rootly endpoint: POST /v1/alerts Creates a new alert from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_alert '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_alert '{}' --json

rootly.rootly_get_alert

Retrieves an alert Official Rootly endpoint: GET /v1/alerts/{id} Retrieves a specific alert by id

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

rootly.rootly_update_alert

Update alert Official Rootly endpoint: PATCH /v1/alerts/{id} Updates an alert

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_alert '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_alert '{}' --json

rootly.rootly_acknowledge_alert

Acknowledges an alert Official Rootly endpoint: POST /v1/alerts/{id}/acknowledge Acknowledges a specific alert by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_acknowledge_alert '{}' --json
Shortcut
kosmo integrations:rootly rootly_acknowledge_alert '{}' --json

rootly.rootly_resolve_alert

Resolves an alert Official Rootly endpoint: POST /v1/alerts/{id}/resolve Resolves a specific alert by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_resolve_alert '{}' --json
Shortcut
kosmo integrations:rootly rootly_resolve_alert '{}' --json

rootly.rootly_snooze_alert

Snoozes an alert Official Rootly endpoint: POST /v1/alerts/{id}/snooze Snoozes a specific alert by id, extending the acknowledgment timeout

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_snooze_alert '{}' --json
Shortcut
kosmo integrations:rootly rootly_snooze_alert '{}' --json

rootly.rootly_escalate_alert

Escalates an alert Official Rootly endpoint: POST /v1/alerts/{id}/escalate Escalates a specific alert to the next or specified level in its escalation policy

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_escalate_alert '{}' --json
Shortcut
kosmo integrations:rootly rootly_escalate_alert '{}' --json

rootly.rootly_list_api_keys

List API keys Official Rootly endpoint: GET /v1/api_keys List API keys for the current organization. Returns key metadata including name, kind, expiration, and last usage — the secret token value is never included in the response. **API k

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

rootly.rootly_create_api_key

Creates an API key Official Rootly endpoint: POST /v1/api_keys Creates a new API key and returns it with the plaintext token. **The token is only returned once** — store it securely, as it cannot be retrieved again. **Kinds and required f

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_api_key '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_api_key '{}' --json

rootly.rootly_get_api_key

Retrieves an API key Official Rootly endpoint: GET /v1/api_keys/{id} Retrieves a specific API key by its UUID. Returns key metadata including name, kind, expiration, last usage timestamp, and the grace period status — the secret token is

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

rootly.rootly_update_api_key

Update an API key Official Rootly endpoint: PUT /v1/api_keys/{id} Update an API key's mutable attributes: `name`, `description`, and `expires_at`. The key's `kind`, `role_id`, `on_call_role_id`, and token cannot be changed after creation. T

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_api_key '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_api_key '{}' --json

rootly.rootly_delete_api_key

Revoke an API key Official Rootly endpoint: DELETE /v1/api_keys/{id} Revoke an API key. The key is immediately invalidated and can no longer be used for authentication. This action cannot be undone. For `team` and `organization` keys, the a

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_api_key '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_api_key '{}' --json

rootly.rootly_rotate_api_key

Rotate an API key Official Rootly endpoint: POST /v1/api_keys/{id}/rotate Rotate an API key's token. Issues a new secret token and returns it — **the new token is only shown once**, so store it securely. **Self-only:** You can only rotate

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_rotate_api_key '{}' --json
Shortcut
kosmo integrations:rootly rootly_rotate_api_key '{}' --json

rootly.rootly_list_audits

List audits Official Rootly endpoint: GET /v1/audits List audits

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

rootly.rootly_list_authorizations

List authorizations Official Rootly endpoint: GET /v1/authorizations List authorizations

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

rootly.rootly_create_authorization

Creates an authorization Official Rootly endpoint: POST /v1/authorizations Creates a new authorization from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_authorization '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_authorization '{}' --json

rootly.rootly_get_authorization

Retrieves an authorization Official Rootly endpoint: GET /v1/authorizations/{id} Retrieves a specific authorization by id

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

rootly.rootly_update_authorization

Update an authorization Official Rootly endpoint: PUT /v1/authorizations/{id} Update a specific authorization by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_authorization '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_authorization '{}' --json

rootly.rootly_delete_authorization

Delete an authorization Official Rootly endpoint: DELETE /v1/authorizations/{id} Delete a specific authorization by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_authorization '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_authorization '{}' --json

rootly.rootly_list_catalog_checklist_templates

List catalog checklist templates Official Rootly endpoint: GET /v1/catalog_checklist_templates List catalog checklist templates

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

rootly.rootly_create_catalog_checklist_template

Creates a catalog checklist template Official Rootly endpoint: POST /v1/catalog_checklist_templates Creates a new catalog checklist template

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_catalog_checklist_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_catalog_checklist_template '{}' --json

rootly.rootly_trigger_catalog_checklist_template

Trigger an audit for a catalog checklist template Official Rootly endpoint: POST /v1/catalog_checklist_templates/{id}/trigger Triggers an audit for all applicable entities of the checklist template

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_trigger_catalog_checklist_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_trigger_catalog_checklist_template '{}' --json

rootly.rootly_get_catalog_checklist_template

Retrieves a catalog checklist template Official Rootly endpoint: GET /v1/catalog_checklist_templates/{id} Retrieves a specific catalog checklist template by id

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

rootly.rootly_update_catalog_checklist_template

Update a catalog checklist template Official Rootly endpoint: PUT /v1/catalog_checklist_templates/{id} Update a specific catalog checklist template by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_catalog_checklist_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_catalog_checklist_template '{}' --json

rootly.rootly_delete_catalog_checklist_template

Delete a catalog checklist template Official Rootly endpoint: DELETE /v1/catalog_checklist_templates/{id} Delete a specific catalog checklist template by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_catalog_checklist_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_catalog_checklist_template '{}' --json

rootly.rootly_list_catalog_entities

List Catalog Entities Official Rootly endpoint: GET /v1/catalogs/{catalog_id}/entities List Catalog Entities

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

rootly.rootly_create_catalog_entity

Creates a Catalog Entity Official Rootly endpoint: POST /v1/catalogs/{catalog_id}/entities Creates a new Catalog Entity from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_catalog_entity '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_catalog_entity '{}' --json

rootly.rootly_get_catalog_entity

Retrieves a Catalog Entity Official Rootly endpoint: GET /v1/catalog_entities/{id} Retrieves a specific Catalog Entity by id

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

rootly.rootly_update_catalog_entity

Update a Catalog Entity Official Rootly endpoint: PUT /v1/catalog_entities/{id} Update a specific Catalog Entity by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_catalog_entity '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_catalog_entity '{}' --json

rootly.rootly_delete_catalog_entity

Delete a Catalog Entity Official Rootly endpoint: DELETE /v1/catalog_entities/{id} Delete a specific Catalog Entity by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_catalog_entity '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_catalog_entity '{}' --json

rootly.rootly_list_catalog_entity_checklists

List catalog entity checklists Official Rootly endpoint: GET /v1/catalog_entity_checklists List catalog entity checklists

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

rootly.rootly_get_catalog_entity_checklist

Retrieves a catalog entity checklist Official Rootly endpoint: GET /v1/catalog_entity_checklists/{id} Retrieves a specific catalog entity checklist by id

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

rootly.rootly_list_catalog_entity_properties

List catalog properties Official Rootly endpoint: GET /v1/catalog_entities/{catalog_entity_id}/properties **Deprecated:** This endpoint is deprecated, please use `include=fields` on catalog entities or native catalog endpoints (teams, servi

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

rootly.rootly_create_catalog_entity_property

Creates a Catalog Entity Property Official Rootly endpoint: POST /v1/catalog_entities/{catalog_entity_id}/properties **Deprecated:** This endpoint is deprecated, please use the `fields` attribute on catalog entities or native catalog endpoi

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_catalog_entity_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_catalog_entity_property '{}' --json

rootly.rootly_get_catalog_entity_property

Retrieves a Catalog Entity Property Official Rootly endpoint: GET /v1/catalog_entity_properties/{id} **Deprecated:** This endpoint is deprecated, please use `include=fields` on catalog entities or native catalog endpoints (teams, services,

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

rootly.rootly_update_catalog_entity_property

Update a Catalog Entity Property Official Rootly endpoint: PUT /v1/catalog_entity_properties/{id} **Deprecated:** This endpoint is deprecated, please use the `fields` attribute on catalog entities or native catalog endpoints (teams, service

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_catalog_entity_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_catalog_entity_property '{}' --json

rootly.rootly_delete_catalog_entity_property

Delete a Catalog Entity Property Official Rootly endpoint: DELETE /v1/catalog_entity_properties/{id} **Deprecated:** This endpoint is deprecated, please use the `fields` attribute on catalog entities or native catalog endpoints (teams, serv

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_catalog_entity_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_catalog_entity_property '{}' --json

rootly.rootly_list_catalog_properties

List Catalog Properties (alias for fields) Official Rootly endpoint: GET /v1/catalogs/{catalog_id}/properties List Catalog Properties - returns catalog_properties type

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

rootly.rootly_create_catalog_property

Creates a Catalog Property (alias for field) Official Rootly endpoint: POST /v1/catalogs/{catalog_id}/properties Creates a new Catalog Property - returns catalog_properties type

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_catalog_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_catalog_property '{}' --json

rootly.rootly_get_catalog_property

Retrieves a Catalog Property (alias for field) Official Rootly endpoint: GET /v1/catalog_properties/{id} Retrieves a specific Catalog Property by id - returns catalog_properties type

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

rootly.rootly_update_catalog_property

Update a catalog_property (alias for field) Official Rootly endpoint: PUT /v1/catalog_properties/{id} Update a specific catalog_property by id - returns catalog_properties type

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_catalog_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_catalog_property '{}' --json

rootly.rootly_delete_catalog_property

Delete a catalog_property Official Rootly endpoint: DELETE /v1/catalog_properties/{id} Delete a specific catalog_property by id - returns catalog_properties type

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_catalog_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_catalog_property '{}' --json

rootly.rootly_list_catalogs

List catalogs Official Rootly endpoint: GET /v1/catalogs List catalogs

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

rootly.rootly_create_catalog

Creates a catalog Official Rootly endpoint: POST /v1/catalogs Creates a new catalog from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_catalog '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_catalog '{}' --json

rootly.rootly_get_catalog

Retrieves a catalog Official Rootly endpoint: GET /v1/catalogs/{id} Retrieves a specific catalog by id

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

rootly.rootly_update_catalog

Update a catalog Official Rootly endpoint: PUT /v1/catalogs/{id} Update a specific catalog by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_catalog '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_catalog '{}' --json

rootly.rootly_delete_catalog

Delete a catalog Official Rootly endpoint: DELETE /v1/catalogs/{id} Delete a specific catalog by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_catalog '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_catalog '{}' --json

rootly.rootly_list_causes

List causes Official Rootly endpoint: GET /v1/causes List causes

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

rootly.rootly_create_cause

Creates a cause Official Rootly endpoint: POST /v1/causes Creates a new cause from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_cause '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_cause '{}' --json

rootly.rootly_get_cause

Retrieves a cause Official Rootly endpoint: GET /v1/causes/{id} Retrieves a specific cause by id

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

rootly.rootly_update_cause

Update a cause Official Rootly endpoint: PUT /v1/causes/{id} Update a specific cause by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_cause '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_cause '{}' --json

rootly.rootly_delete_cause

Delete a cause Official Rootly endpoint: DELETE /v1/causes/{id} Delete a specific cause by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_cause '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_cause '{}' --json

rootly.rootly_list_cause_catalog_properties

List Catalog Properties Official Rootly endpoint: GET /v1/causes/properties List Cause Catalog Properties

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

rootly.rootly_create_cause_catalog_property

Creates a Catalog Property Official Rootly endpoint: POST /v1/causes/properties Creates a new Catalog Property from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_cause_catalog_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_cause_catalog_property '{}' --json

rootly.rootly_list_communications_groups

Lists communications groups Official Rootly endpoint: GET /v1/communications/groups Lists communications groups

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

rootly.rootly_create_communications_group

Creates a communications group Official Rootly endpoint: POST /v1/communications/groups Creates a new communications group from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_communications_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_communications_group '{}' --json

rootly.rootly_get_communications_group

Shows a communications group Official Rootly endpoint: GET /v1/communications/groups/{id} Shows details of a communications group

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

rootly.rootly_update_communications_group

Updates a communications group Official Rootly endpoint: PATCH /v1/communications/groups/{id} Updates a communications group

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_communications_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_communications_group '{}' --json

rootly.rootly_delete_communications_group

Deletes a communications group Official Rootly endpoint: DELETE /v1/communications/groups/{id} Deletes a communications group

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_communications_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_communications_group '{}' --json

rootly.rootly_list_communications_stages

Lists communications stages Official Rootly endpoint: GET /v1/communications/stages Lists communications stages

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

rootly.rootly_create_communications_stage

Creates a communications stage Official Rootly endpoint: POST /v1/communications/stages Creates a new communications stage from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_communications_stage '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_communications_stage '{}' --json

rootly.rootly_get_communications_stage

Shows a communications stage Official Rootly endpoint: GET /v1/communications/stages/{id} Shows details of a communications stage

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

rootly.rootly_update_communications_stage

Updates a communications stage Official Rootly endpoint: PATCH /v1/communications/stages/{id} Updates a communications stage

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_communications_stage '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_communications_stage '{}' --json

rootly.rootly_delete_communications_stage

Deletes a communications stage Official Rootly endpoint: DELETE /v1/communications/stages/{id} Deletes a communications stage

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_communications_stage '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_communications_stage '{}' --json

rootly.rootly_list_communications_templates

Lists communications templates Official Rootly endpoint: GET /v1/communications/templates Lists communications templates

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

rootly.rootly_create_communications_template

Creates a communications template Official Rootly endpoint: POST /v1/communications/templates Creates a new communications template from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_communications_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_communications_template '{}' --json

rootly.rootly_get_communications_template

Shows a communications template Official Rootly endpoint: GET /v1/communications/templates/{id} Shows details of a communications template

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

rootly.rootly_update_communications_template

Updates a communications template Official Rootly endpoint: PATCH /v1/communications/templates/{id} Updates a communications template

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_communications_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_communications_template '{}' --json

rootly.rootly_delete_communications_template

Deletes a communications template Official Rootly endpoint: DELETE /v1/communications/templates/{id} Deletes a communications template

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_communications_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_communications_template '{}' --json

rootly.rootly_list_communications_types

Lists communications types Official Rootly endpoint: GET /v1/communications/types Lists communications types

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

rootly.rootly_create_communications_type

Creates a communications type Official Rootly endpoint: POST /v1/communications/types Creates a new communications type from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_communications_type '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_communications_type '{}' --json

rootly.rootly_get_communications_type

Shows a communications type Official Rootly endpoint: GET /v1/communications/types/{id} Shows details of a communications type

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

rootly.rootly_update_communications_type

Updates a communications type Official Rootly endpoint: PATCH /v1/communications/types/{id} Updates a communications type

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_communications_type '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_communications_type '{}' --json

rootly.rootly_delete_communications_type

Deletes a communications type Official Rootly endpoint: DELETE /v1/communications/types/{id} Deletes a communications type

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_communications_type '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_communications_type '{}' --json

rootly.rootly_list_custom_field_options

[DEPRECATED] List custom field options Official Rootly endpoint: GET /v1/custom_fields/{custom_field_id}/options [DEPRECATED] Use form field endpoints instead. List custom field options

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

rootly.rootly_create_custom_field_option

[DEPRECATED] Creates a custom field option Official Rootly endpoint: POST /v1/custom_fields/{custom_field_id}/options [DEPRECATED] Use form field endpoints instead. Creates a new custom field option from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_custom_field_option '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_custom_field_option '{}' --json

rootly.rootly_get_custom_field_option

[DEPRECATED] Retrieves a custom field option Official Rootly endpoint: GET /v1/custom_field_options/{id} [DEPRECATED] Use form field endpoints instead. Retrieves a specific custom field option by id

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

rootly.rootly_update_custom_field_option

[DEPRECATED] Update a custom field option Official Rootly endpoint: PUT /v1/custom_field_options/{id} [DEPRECATED] Use form field endpoints instead. Update a specific custom field option by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_custom_field_option '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_custom_field_option '{}' --json

rootly.rootly_delete_custom_field_option

[DEPRECATED] Delete a custom field option Official Rootly endpoint: DELETE /v1/custom_field_options/{id} [DEPRECATED] Use form field endpoints instead. Delete a specific Custom Field Option by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_custom_field_option '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_custom_field_option '{}' --json

rootly.rootly_list_custom_fields

[DEPRECATED] List Custom Fields Official Rootly endpoint: GET /v1/custom_fields [DEPRECATED] Use form field endpoints instead. List Custom fields

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

rootly.rootly_create_custom_field

[DEPRECATED] Creates a Custom Field Official Rootly endpoint: POST /v1/custom_fields [DEPRECATED] Use form field endpoints instead. Creates a new custom field from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_custom_field '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_custom_field '{}' --json

rootly.rootly_get_custom_field

[DEPRECATED] Retrieves a Custom Field Official Rootly endpoint: GET /v1/custom_fields/{id} Retrieves a specific custom_field by id

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

rootly.rootly_update_custom_field

[DEPRECATED] Update a Custom Field Official Rootly endpoint: PUT /v1/custom_fields/{id} [DEPRECATED] Use form field endpoints instead. Update a specific custom field by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_custom_field '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_custom_field '{}' --json

rootly.rootly_delete_custom_field

[DEPRECATED] Delete a Custom Field Official Rootly endpoint: DELETE /v1/custom_fields/{id} [DEPRECATED] Use form field endpoints instead. Delete a specific custom field by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_custom_field '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_custom_field '{}' --json

rootly.rootly_list_custom_forms

List custom forms Official Rootly endpoint: GET /v1/custom_forms List custom forms

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

rootly.rootly_create_custom_form

Creates a custom form Official Rootly endpoint: POST /v1/custom_forms Creates a new custom form from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_custom_form '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_custom_form '{}' --json

rootly.rootly_get_custom_form

Retrieves a custom form Official Rootly endpoint: GET /v1/custom_forms/{id} Retrieves a specific custom form by id

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

rootly.rootly_update_custom_form

Update a custom form Official Rootly endpoint: PUT /v1/custom_forms/{id} Update a specific custom form by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_custom_form '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_custom_form '{}' --json

rootly.rootly_delete_custom_form

Delete a custom form Official Rootly endpoint: DELETE /v1/custom_forms/{id} Delete a specific custom form by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_custom_form '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_custom_form '{}' --json

rootly.rootly_list_dashboard_panels

List dashboard panels Official Rootly endpoint: GET /v1/dashboards/{dashboard_id}/panels List dashboard panels

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

rootly.rootly_create_dashboard_panel

Creates a dashboard panel Official Rootly endpoint: POST /v1/dashboards/{dashboard_id}/panels Creates a new dashboard panel from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_dashboard_panel '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_dashboard_panel '{}' --json

rootly.rootly_duplicate_dashboard_panel

Duplicates a dashboard panel Official Rootly endpoint: POST /v1/dashboard_panels/{id}/duplicate Duplicates a dashboard panel

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_duplicate_dashboard_panel '{}' --json
Shortcut
kosmo integrations:rootly rootly_duplicate_dashboard_panel '{}' --json

rootly.rootly_get_dashboard_panel

Retrieves a dashboard panel Official Rootly endpoint: GET /v1/dashboard_panels/{id} Retrieves a specific dashboard panel by id

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

rootly.rootly_update_dashboard_panel

Update a dashboard panel Official Rootly endpoint: PUT /v1/dashboard_panels/{id} Update a specific dashboard panel by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_dashboard_panel '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_dashboard_panel '{}' --json

rootly.rootly_delete_dashboard_panel

Delete a dashboard panel Official Rootly endpoint: DELETE /v1/dashboard_panels/{id} Delete a specific dashboard panel by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_dashboard_panel '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_dashboard_panel '{}' --json

rootly.rootly_list_dashboards

List dashboards Official Rootly endpoint: GET /v1/dashboards List dashboards

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

rootly.rootly_create_dashboard

Creates a dashboard Official Rootly endpoint: POST /v1/dashboards Creates a new dashboard from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_dashboard '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_dashboard '{}' --json

rootly.rootly_duplicate_dashboard

Duplicates a dashboard Official Rootly endpoint: POST /v1/dashboards/{id}/duplicate Duplicates a dashboard

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_duplicate_dashboard '{}' --json
Shortcut
kosmo integrations:rootly rootly_duplicate_dashboard '{}' --json

rootly.rootly_set_default_dashboard

Sets dashboard to user default Official Rootly endpoint: POST /v1/dashboards/{id}/set_default Sets dashboard to user default

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_set_default_dashboard '{}' --json
Shortcut
kosmo integrations:rootly rootly_set_default_dashboard '{}' --json

rootly.rootly_get_dashboard

Retrieves a dashboard Official Rootly endpoint: GET /v1/dashboards/{id} Retrieves a specific dashboard by id

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

rootly.rootly_update_dashboard

Update a dashboard Official Rootly endpoint: PUT /v1/dashboards/{id} Update a specific dashboard by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_dashboard '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_dashboard '{}' --json

rootly.rootly_delete_dashboard

Delete a dashboard Official Rootly endpoint: DELETE /v1/dashboards/{id} Delete a specific dashboard by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_dashboard '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_dashboard '{}' --json

rootly.rootly_list_edge_connector_actions

List edge connector actions Official Rootly endpoint: GET /v1/edge_connectors/{edge_connector_id}/actions

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

rootly.rootly_create_edge_connector_action

Create edge connector action Official Rootly endpoint: POST /v1/edge_connectors/{edge_connector_id}/actions

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_edge_connector_action '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_edge_connector_action '{}' --json

rootly.rootly_get_edge_connector_action

Show edge connector action Official Rootly endpoint: GET /v1/edge_connectors/{edge_connector_id}/actions/{id}

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

rootly.rootly_update_edge_connector_action

Update edge connector action Official Rootly endpoint: PATCH /v1/edge_connectors/{edge_connector_id}/actions/{id}

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_edge_connector_action '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_edge_connector_action '{}' --json

rootly.rootly_delete_edge_connector_action

Delete edge connector action Official Rootly endpoint: DELETE /v1/edge_connectors/{edge_connector_id}/actions/{id}

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_edge_connector_action '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_edge_connector_action '{}' --json

rootly.rootly_list_edge_connectors

List edge connectors Official Rootly endpoint: GET /v1/edge_connectors

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

rootly.rootly_create_edge_connector

Create edge connector Official Rootly endpoint: POST /v1/edge_connectors

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_edge_connector '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_edge_connector '{}' --json

rootly.rootly_get_edge_connector

Show edge connector Official Rootly endpoint: GET /v1/edge_connectors/{id}

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

rootly.rootly_update_edge_connector

Update edge connector Official Rootly endpoint: PATCH /v1/edge_connectors/{id}

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_edge_connector '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_edge_connector '{}' --json

rootly.rootly_delete_edge_connector

Delete edge connector Official Rootly endpoint: DELETE /v1/edge_connectors/{id}

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_edge_connector '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_edge_connector '{}' --json

rootly.rootly_list_environments

List environments Official Rootly endpoint: GET /v1/environments List environments

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

rootly.rootly_create_environment

Creates an environment Official Rootly endpoint: POST /v1/environments Creates a new environment from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_environment '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_environment '{}' --json

rootly.rootly_get_environment

Retrieves an environment Official Rootly endpoint: GET /v1/environments/{id} Retrieves a specific environment by id

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

rootly.rootly_update_environment

Update an environment Official Rootly endpoint: PUT /v1/environments/{id} Update a specific environment by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_environment '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_environment '{}' --json

rootly.rootly_delete_environment

Delete an environment Official Rootly endpoint: DELETE /v1/environments/{id} Delete a specific environment by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_environment '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_environment '{}' --json

rootly.rootly_list_environment_catalog_properties

List Catalog Properties Official Rootly endpoint: GET /v1/environments/properties List Environment Catalog Properties

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

rootly.rootly_create_environment_catalog_property

Creates a Catalog Property Official Rootly endpoint: POST /v1/environments/properties Creates a new Catalog Property from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_environment_catalog_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_environment_catalog_property '{}' --json

rootly.rootly_list_escalation_policies

List escalation policies Official Rootly endpoint: GET /v1/escalation_policies List escalation policies

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

rootly.rootly_create_escalation_policy

Creates an escalation policy Official Rootly endpoint: POST /v1/escalation_policies Creates a new escalation policy from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_escalation_policy '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_escalation_policy '{}' --json

rootly.rootly_get_escalation_policy

Retrieves an escalation policy Official Rootly endpoint: GET /v1/escalation_policies/{id} Retrieves a specific escalation policy by id

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

rootly.rootly_update_escalation_policy

Update an escalation policy Official Rootly endpoint: PUT /v1/escalation_policies/{id} Update a specific escalation policy by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_escalation_policy '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_escalation_policy '{}' --json

rootly.rootly_delete_escalation_policy

Delete an escalation policy Official Rootly endpoint: DELETE /v1/escalation_policies/{id} Delete a specific escalation policy by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_escalation_policy '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_escalation_policy '{}' --json

rootly.rootly_list_escalation_levels

List escalation levels for an Escalation Policy Official Rootly endpoint: GET /v1/escalation_policies/{escalation_policy_id}/escalation_levels List escalation levels

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

rootly.rootly_create_escalation_level

Creates an escalation level for an Escalation Policy Official Rootly endpoint: POST /v1/escalation_policies/{escalation_policy_id}/escalation_levels Creates a new escalation level from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_escalation_level '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_escalation_level '{}' --json

rootly.rootly_list_escalation_levels_paths

List escalation levels for an Escalation Path Official Rootly endpoint: GET /v1/escalation_paths/{escalation_policy_path_id}/escalation_levels List escalation levels

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

rootly.rootly_create_escalation_level_paths

Creates an escalation level for an Escalation Path Official Rootly endpoint: POST /v1/escalation_paths/{escalation_policy_path_id}/escalation_levels Creates a new escalation level from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_escalation_level_paths '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_escalation_level_paths '{}' --json

rootly.rootly_get_escalation_level

Retrieves an escalation level Official Rootly endpoint: GET /v1/escalation_levels/{id} Retrieves a specific escalation level by id

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

rootly.rootly_update_escalation_level

Update an escalation level Official Rootly endpoint: PUT /v1/escalation_levels/{id} Update a specific escalation level by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_escalation_level '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_escalation_level '{}' --json

rootly.rootly_delete_escalation_level

Delete an escalation level Official Rootly endpoint: DELETE /v1/escalation_levels/{id} Delete a specific escalation level by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_escalation_level '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_escalation_level '{}' --json

rootly.rootly_list_escalation_paths

List escalation paths Official Rootly endpoint: GET /v1/escalation_policies/{escalation_policy_id}/escalation_paths List escalation paths

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

rootly.rootly_create_escalation_path

Creates an escalation path Official Rootly endpoint: POST /v1/escalation_policies/{escalation_policy_id}/escalation_paths Creates a new escalation path from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_escalation_path '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_escalation_path '{}' --json

rootly.rootly_get_escalation_path

Retrieves an escalation path Official Rootly endpoint: GET /v1/escalation_paths/{id} Retrieves a specific escalation path by id

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

rootly.rootly_update_escalation_path

Update an escalation path Official Rootly endpoint: PUT /v1/escalation_paths/{id} Update a specific escalation path by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_escalation_path '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_escalation_path '{}' --json

rootly.rootly_delete_escalation_path

Delete an escalation path Official Rootly endpoint: DELETE /v1/escalation_paths/{id} Delete a specific escalation path by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_escalation_path '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_escalation_path '{}' --json

rootly.rootly_list_form_field_options

List FormField Options Official Rootly endpoint: GET /v1/form_fields/{form_field_id}/options List form_field_options

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

rootly.rootly_create_form_field_option

Creates FormField Options Official Rootly endpoint: POST /v1/form_fields/{form_field_id}/options Creates a new form_field_option from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_form_field_option '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_form_field_option '{}' --json

rootly.rootly_get_form_field_option

Retrieves FormField Options Official Rootly endpoint: GET /v1/form_field_options/{id} Retrieves a specific form_field_option by id

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

rootly.rootly_update_form_field_option

Update FormField Options Official Rootly endpoint: PUT /v1/form_field_options/{id} Update a specific form_field_option by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_form_field_option '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_form_field_option '{}' --json

rootly.rootly_delete_form_field_option

Delete FormField Options Official Rootly endpoint: DELETE /v1/form_field_options/{id} Delete a specific form_field_option by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_form_field_option '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_form_field_option '{}' --json

rootly.rootly_list_form_field_placement_conditions

List Form Set Conditions Official Rootly endpoint: GET /v1/form_field_placements/{form_field_placement_id}/conditions List form_field_placement_conditions

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

rootly.rootly_create_form_field_placement_condition

Creates a Form Set Condition Official Rootly endpoint: POST /v1/form_field_placements/{form_field_placement_id}/conditions Creates a new form_field_placement_condition from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_form_field_placement_condition '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_form_field_placement_condition '{}' --json

rootly.rootly_get_form_field_placement_condition

Retrieves a Form Set Condition Official Rootly endpoint: GET /v1/form_field_placement_conditions/{id} Retrieves a specific form_field_placement_condition by id

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

rootly.rootly_update_form_field_placement_condition

Update a Form Set Condition Official Rootly endpoint: PUT /v1/form_field_placement_conditions/{id} Update a specific form_field_placement_condition by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_form_field_placement_condition '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_form_field_placement_condition '{}' --json

rootly.rootly_delete_form_field_placement_condition

Delete a Form Set Condition Official Rootly endpoint: DELETE /v1/form_field_placement_conditions/{id} Delete a specific form_field_placement_condition by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_form_field_placement_condition '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_form_field_placement_condition '{}' --json

rootly.rootly_list_form_field_placements

List Form Field Placements Official Rootly endpoint: GET /v1/form_fields/{form_field_id}/placements List form_field_placements

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

rootly.rootly_create_form_field_placement

Creates a Form Field Placement Official Rootly endpoint: POST /v1/form_fields/{form_field_id}/placements Creates a new form_field_placement from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_form_field_placement '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_form_field_placement '{}' --json

rootly.rootly_get_form_field_placement

Retrieves a Form Field Placement Official Rootly endpoint: GET /v1/form_field_placements/{id} Retrieves a specific form_field_placement by id

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

rootly.rootly_update_form_field_placement

Update a Form Field Placement Official Rootly endpoint: PUT /v1/form_field_placements/{id} Update a specific form_field_placement by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_form_field_placement '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_form_field_placement '{}' --json

rootly.rootly_delete_form_field_placement

Delete a Form Field Placement Official Rootly endpoint: DELETE /v1/form_field_placements/{id} Delete a specific form_field_placement by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_form_field_placement '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_form_field_placement '{}' --json

rootly.rootly_list_form_field_positions

List FormField Position Official Rootly endpoint: GET /v1/form_fields/{form_field_id}/positions List form field positions

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

rootly.rootly_create_form_field_position

Creates FormField Positions Official Rootly endpoint: POST /v1/form_fields/{form_field_id}/positions Creates a new form field_position from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_form_field_position '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_form_field_position '{}' --json

rootly.rootly_get_form_field_position

Retrieves a FormFieldPosition Official Rootly endpoint: GET /v1/form_field_positions/{id} Retrieves a specific form field_position by id

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

rootly.rootly_update_form_field_position

Update a FormFieldPosition Official Rootly endpoint: PUT /v1/form_field_positions/{id} Update a specific form_field position by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_form_field_position '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_form_field_position '{}' --json

rootly.rootly_delete_form_field_position

Delete a FormFieldPosition Official Rootly endpoint: DELETE /v1/form_field_positions/{id} Delete a specific form_field position by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_form_field_position '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_form_field_position '{}' --json

rootly.rootly_list_form_fields

List Form Fields Official Rootly endpoint: GET /v1/form_fields List form_fields

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

rootly.rootly_create_form_field

Creates a Form Field Official Rootly endpoint: POST /v1/form_fields Creates a new form_field from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_form_field '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_form_field '{}' --json

rootly.rootly_get_form_field

Retrieves a Form Field Official Rootly endpoint: GET /v1/form_fields/{id} Retrieves a specific form_field by id

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

rootly.rootly_update_form_field

Update a Form Field Official Rootly endpoint: PUT /v1/form_fields/{id} Update a specific form_field by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_form_field '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_form_field '{}' --json

rootly.rootly_delete_form_field

Delete a Form Field Official Rootly endpoint: DELETE /v1/form_fields/{id} Delete a specific form_field by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_form_field '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_form_field '{}' --json

rootly.rootly_list_form_set_conditions

List Form Set Conditions Official Rootly endpoint: GET /v1/form_sets/{form_set_id}/conditions List form_set_conditions

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

rootly.rootly_create_form_set_condition

Creates a Form Set Condition Official Rootly endpoint: POST /v1/form_sets/{form_set_id}/conditions Creates a new form_set_condition from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_form_set_condition '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_form_set_condition '{}' --json

rootly.rootly_get_form_set_condition

Retrieves a Form Set Condition Official Rootly endpoint: GET /v1/form_set_conditions/{id} Retrieves a specific form_set_condition by id

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

rootly.rootly_update_form_set_condition

Update a Form Set Condition Official Rootly endpoint: PUT /v1/form_set_conditions/{id} Update a specific form_set_condition by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_form_set_condition '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_form_set_condition '{}' --json

rootly.rootly_delete_form_set_condition

Delete a Form Set Condition Official Rootly endpoint: DELETE /v1/form_set_conditions/{id} Delete a specific form_set_condition by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_form_set_condition '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_form_set_condition '{}' --json

rootly.rootly_list_form_sets

List Form Sets Official Rootly endpoint: GET /v1/form_sets List form_sets

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

rootly.rootly_create_form_set

Creates a Form Set Official Rootly endpoint: POST /v1/form_sets Creates a new form_set from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_form_set '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_form_set '{}' --json

rootly.rootly_get_form_set

Retrieves a Form Set Official Rootly endpoint: GET /v1/form_sets/{id} Retrieves a specific form_set by id

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

rootly.rootly_update_form_set

Update a Form Set Official Rootly endpoint: PUT /v1/form_sets/{id} Update a specific form_set by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_form_set '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_form_set '{}' --json

rootly.rootly_delete_form_set

Delete a Form Set Official Rootly endpoint: DELETE /v1/form_sets/{id} Delete a specific form_set by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_form_set '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_form_set '{}' --json

rootly.rootly_list_functionalities

List functionalities Official Rootly endpoint: GET /v1/functionalities List functionalities

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

rootly.rootly_create_functionality

Creates a functionality Official Rootly endpoint: POST /v1/functionalities Creates a new functionality from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_functionality '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_functionality '{}' --json

rootly.rootly_get_functionality

Retrieves a functionality Official Rootly endpoint: GET /v1/functionalities/{id} Retrieves a specific functionality by id

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

rootly.rootly_update_functionality

Update a functionality Official Rootly endpoint: PUT /v1/functionalities/{id} Update a specific functionality by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_functionality '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_functionality '{}' --json

rootly.rootly_delete_functionality

Delete a functionality Official Rootly endpoint: DELETE /v1/functionalities/{id} Delete a specific functionality by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_functionality '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_functionality '{}' --json

rootly.rootly_get_functionality_incidents_chart

Get functionality incidents chart Official Rootly endpoint: GET /v1/functionalities/{id}/incidents_chart Get functionality incidents chart

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

rootly.rootly_get_functionality_uptime_chart

Get functionality uptime chart Official Rootly endpoint: GET /v1/functionalities/{id}/uptime_chart Get functionality uptime chart

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

rootly.rootly_list_functionality_catalog_properties

List Catalog Properties Official Rootly endpoint: GET /v1/functionalities/properties List Functionality Catalog Properties

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

rootly.rootly_create_functionality_catalog_property

Creates a Catalog Property Official Rootly endpoint: POST /v1/functionalities/properties Creates a new Catalog Property from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_functionality_catalog_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_functionality_catalog_property '{}' --json

rootly.rootly_list_workflow_tasks

List workflow tasks Official Rootly endpoint: GET /v1/workflows/{workflow_id}/workflow_tasks List workflow tasks

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

rootly.rootly_create_workflow_task

Creates a workflow task Official Rootly endpoint: POST /v1/workflows/{workflow_id}/workflow_tasks Creates a new workflow task from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_workflow_task '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_workflow_task '{}' --json

rootly.rootly_get_workflow_task

Retrieves a workflow task Official Rootly endpoint: GET /v1/workflow_tasks/{id} Retrieves a specific workflow_task by id

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

rootly.rootly_update_workflow_task

Update a workflow task Official Rootly endpoint: PUT /v1/workflow_tasks/{id} Update a specific workflow task by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_workflow_task '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_workflow_task '{}' --json

rootly.rootly_delete_workflow_task

Delete a workflow task Official Rootly endpoint: DELETE /v1/workflow_tasks/{id} Delete a specific workflow task by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_workflow_task '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_workflow_task '{}' --json

rootly.rootly_list_workflow_custom_field_selections

[DEPRECATED] List workflow custom field selections Official Rootly endpoint: GET /v1/workflows/{workflow_id}/custom_field_selections [DEPRECATED] Use form field endpoints instead. List workflow custom field selections

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

rootly.rootly_create_workflow_custom_field_selection

[DEPRECATED] Creates a workflow custom field selection Official Rootly endpoint: POST /v1/workflows/{workflow_id}/custom_field_selections [DEPRECATED] Use form field endpoints instead. Creates a new workflow custom field selection from prov

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_workflow_custom_field_selection '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_workflow_custom_field_selection '{}' --json

rootly.rootly_get_workflow_custom_field_selection

[DEPRECATED] Retrieves a workflow custom field selection Official Rootly endpoint: GET /v1/workflow_custom_field_selections/{id} [DEPRECATED] Use form field endpoints instead. Retrieves a specific workflow custom field selection by id

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

rootly.rootly_update_workflow_custom_field_selection

[DEPRECATED] Update a workflow custom field selection Official Rootly endpoint: PUT /v1/workflow_custom_field_selections/{id} [DEPRECATED] Use form field endpoints instead. Update a specific workflow custom field selection by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_workflow_custom_field_selection '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_workflow_custom_field_selection '{}' --json

rootly.rootly_delete_workflow_custom_field_selection

[DEPRECATED] Delete a workflow custom field selection Official Rootly endpoint: DELETE /v1/workflow_custom_field_selections/{id} [DEPRECATED] Use form field endpoints instead. Delete a specific workflow custom field selection by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_workflow_custom_field_selection '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_workflow_custom_field_selection '{}' --json

rootly.rootly_list_workflow_form_field_conditions

List workflow form field conditions Official Rootly endpoint: GET /v1/workflows/{workflow_id}/form_field_conditions List workflow form field conditions

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

rootly.rootly_create_workflow_form_field_condition

Creates a workflow form field condition Official Rootly endpoint: POST /v1/workflows/{workflow_id}/form_field_conditions Creates a new workflow form field condition from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_workflow_form_field_condition '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_workflow_form_field_condition '{}' --json

rootly.rootly_get_workflow_form_field_condition

Retrieves a workflow form field condition Official Rootly endpoint: GET /v1/workflow_form_field_conditions/{id} Retrieves a specific workflow form field condition by id

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

rootly.rootly_update_workflow_form_field_condition

Update a workflow form field condition Official Rootly endpoint: PUT /v1/workflow_form_field_conditions/{id} Update a specific workflow form field condition by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_workflow_form_field_condition '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_workflow_form_field_condition '{}' --json

rootly.rootly_delete_workflow_form_field_condition

Delete a workflow_form field condition Official Rootly endpoint: DELETE /v1/workflow_form_field_conditions/{id} Delete a specific workflow form field condition by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_workflow_form_field_condition '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_workflow_form_field_condition '{}' --json

rootly.rootly_list_workflow_groups

List workflow groups Official Rootly endpoint: GET /v1/workflow_groups List workflow groups

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

rootly.rootly_create_workflow_group

Creates a workflow group Official Rootly endpoint: POST /v1/workflow_groups Creates a new workflow group from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_workflow_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_workflow_group '{}' --json

rootly.rootly_get_workflow_group

Retrieves a workflow group Official Rootly endpoint: GET /v1/workflow_groups/{id} Retrieves a specific workflow group by id

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

rootly.rootly_update_workflow_group

Update a workflow group Official Rootly endpoint: PUT /v1/workflow_groups/{id} Update a specific workflow group by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_workflow_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_workflow_group '{}' --json

rootly.rootly_delete_workflow_group

Delete a workflow_group Official Rootly endpoint: DELETE /v1/workflow_groups/{id} Delete a specific workflow group by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_workflow_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_workflow_group '{}' --json

rootly.rootly_list_workflow_runs

List workflow runs Official Rootly endpoint: GET /v1/workflows/{workflow_id}/workflow_runs List workflow runs

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

rootly.rootly_create_workflow_run

Creates a workflow run Official Rootly endpoint: POST /v1/workflows/{workflow_id}/workflow_runs Creates a new workflow run from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_workflow_run '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_workflow_run '{}' --json

rootly.rootly_list_workflows

List workflows Official Rootly endpoint: GET /v1/workflows List workflows

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

rootly.rootly_create_workflow

Creates a workflow Official Rootly endpoint: POST /v1/workflows Creates a new workflow from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_workflow '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_workflow '{}' --json

rootly.rootly_get_workflow

Retrieves a workflow Official Rootly endpoint: GET /v1/workflows/{id} Retrieves a specific workflow by id

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

rootly.rootly_update_workflow

Update a workflow Official Rootly endpoint: PUT /v1/workflows/{id} Update a specific workflow by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_workflow '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_workflow '{}' --json

rootly.rootly_delete_workflow

Delete a workflow Official Rootly endpoint: DELETE /v1/workflows/{id} Delete a specific workflow by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_workflow '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_workflow '{}' --json

rootly.rootly_ping_heartbeat

Ping a heartbeat Official Rootly endpoint: POST /v1/heartbeats/{heartbeat_id}/ping Ping a specific heartbeat by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_ping_heartbeat '{}' --json
Shortcut
kosmo integrations:rootly rootly_ping_heartbeat '{}' --json

rootly.rootly_list_heartbeats

List heartbeats Official Rootly endpoint: GET /v1/heartbeats List heartbeats

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

rootly.rootly_create_heartbeat

Creates a heartbeat Official Rootly endpoint: POST /v1/heartbeats Creates a new heartbeat from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_heartbeat '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_heartbeat '{}' --json

rootly.rootly_get_heartbeat

Retrieves a heartbeat Official Rootly endpoint: GET /v1/heartbeats/{id} Retrieves a specific heartbeat by id

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

rootly.rootly_update_heartbeat

Update a heartbeat Official Rootly endpoint: PUT /v1/heartbeats/{id} Update a specific heartbeat by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_heartbeat '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_heartbeat '{}' --json

rootly.rootly_delete_heartbeat

Delete a heartbeat Official Rootly endpoint: DELETE /v1/heartbeats/{id} Delete a specific heartbeat by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_heartbeat '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_heartbeat '{}' --json

rootly.rootly_list_incident_action_items

List incident action items Official Rootly endpoint: GET /v1/incidents/{incident_id}/action_items List incident action items

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

rootly.rootly_create_incident_action_item

Creates an incident action item Official Rootly endpoint: POST /v1/incidents/{incident_id}/action_items Creates a new action item from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_action_item '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_action_item '{}' --json

rootly.rootly_get_incident_action_items

Retrieves an incident action item Official Rootly endpoint: GET /v1/action_items/{id} Retrieves a specific incident_action_item by id

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

rootly.rootly_update_incident_action_item

Update an incident action item Official Rootly endpoint: PUT /v1/action_items/{id} Update a specific incident action item by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_action_item '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_action_item '{}' --json

rootly.rootly_delete_incident_action_item

Delete an incident action item Official Rootly endpoint: DELETE /v1/action_items/{id} Delete a specific incident action item by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_action_item '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_action_item '{}' --json

rootly.rootly_list_all_incident_action_items

List all action items for an organization Official Rootly endpoint: GET /v1/action_items List all action items for an organization

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

rootly.rootly_list_incident_custom_field_selections

[DEPRECATED] List incident custom field selections Official Rootly endpoint: GET /v1/incidents/{incident_id}/custom_field_selections [DEPRECATED] Use form field endpoints instead. List incident custom field selections

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

rootly.rootly_create_incident_custom_field_selection

[DEPRECATED] Creates an incident custom field selection Official Rootly endpoint: POST /v1/incidents/{incident_id}/custom_field_selections [DEPRECATED] Use form field endpoints instead. Creates a new incident custom field selection from pro

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_custom_field_selection '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_custom_field_selection '{}' --json

rootly.rootly_get_incident_custom_field_selection

[DEPRECATED] Retrieves an incident custom field selection Official Rootly endpoint: GET /v1/incident_custom_field_selections/{id} [DEPRECATED] Use form field endpoints instead. Retrieves a specific incident custom field selection by id

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

rootly.rootly_update_incident_custom_field_selection

[DEPRECATED] Update an incident custom field selection Official Rootly endpoint: PUT /v1/incident_custom_field_selections/{id} [DEPRECATED] Use form field endpoints instead. Update a specific incident custom field selection by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_custom_field_selection '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_custom_field_selection '{}' --json

rootly.rootly_delete_incident_custom_field_selection

[DEPRECATED] Delete an incident custom field selection Official Rootly endpoint: DELETE /v1/incident_custom_field_selections/{id} [DEPRECATED] Use form field endpoints instead. Delete a specific incident custom field selection by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_custom_field_selection '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_custom_field_selection '{}' --json

rootly.rootly_list_incident_event_functionalities

List incident event functionalities Official Rootly endpoint: GET /v1/events/{incident_event_id}/functionalities List incident event functionalities

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

rootly.rootly_create_incident_event_functionality

Creates an incident event functionality Official Rootly endpoint: POST /v1/events/{incident_event_id}/functionalities Creates a new event functionality from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_event_functionality '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_event_functionality '{}' --json

rootly.rootly_get_incident_event_functionalities

Retrieves an incident event functionality Official Rootly endpoint: GET /v1/incident_event_functionalities/{id} Retrieves a specific incident_event_functionality by id

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

rootly.rootly_update_incident_event_functionality

Update an incident event Official Rootly endpoint: PUT /v1/incident_event_functionalities/{id} Update a specific incident event functionality by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_event_functionality '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_event_functionality '{}' --json

rootly.rootly_delete_incident_event_functionality

Delete an incident event functionality Official Rootly endpoint: DELETE /v1/incident_event_functionalities/{id} Delete a specific incident event functionality by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_event_functionality '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_event_functionality '{}' --json

rootly.rootly_list_incident_event_services

List incident event services Official Rootly endpoint: GET /v1/events/{incident_event_id}/services List incident event services

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

rootly.rootly_create_incident_event_service

Creates an incident event service Official Rootly endpoint: POST /v1/events/{incident_event_id}/services Creates a new event service from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_event_service '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_event_service '{}' --json

rootly.rootly_get_incident_event_services

Retrieves an incident event service Official Rootly endpoint: GET /v1/incident_event_services/{id} Retrieves a specific incident_event_service by id

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

rootly.rootly_update_incident_event_service

Update an incident event Official Rootly endpoint: PUT /v1/incident_event_services/{id} Update a specific incident event service by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_event_service '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_event_service '{}' --json

rootly.rootly_delete_incident_event_service

Delete an incident event functionalitu Official Rootly endpoint: DELETE /v1/incident_event_services/{id} Delete a specific incident event service by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_event_service '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_event_service '{}' --json

rootly.rootly_list_incident_events

List incident events Official Rootly endpoint: GET /v1/incidents/{incident_id}/events List incident events

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

rootly.rootly_create_incident_event

Creates an incident event Official Rootly endpoint: POST /v1/incidents/{incident_id}/events Creates a new event from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_event '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_event '{}' --json

rootly.rootly_get_incident_events

Retrieves an incident event Official Rootly endpoint: GET /v1/events/{id} Retrieves a specific incident_event by id

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

rootly.rootly_update_incident_event

Update an incident event Official Rootly endpoint: PUT /v1/events/{id} Update a specific incident event by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_event '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_event '{}' --json

rootly.rootly_delete_incident_event

Delete an incident event Official Rootly endpoint: DELETE /v1/events/{id} Delete a specific incident event by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_event '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_event '{}' --json

rootly.rootly_list_incident_feedbacks

List incident feedbacks Official Rootly endpoint: GET /v1/incidents/{incident_id}/feedbacks List incident feedbacks

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

rootly.rootly_create_incident_feedback

Creates an incident feedback Official Rootly endpoint: POST /v1/incidents/{incident_id}/feedbacks Creates a new feedback from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_feedback '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_feedback '{}' --json

rootly.rootly_get_incident_feedbacks

Retrieves an incident feedback Official Rootly endpoint: GET /v1/feedbacks/{id} Retrieves a specific incident_feedback by id

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

rootly.rootly_update_incident_feedback

Update an incident feedback Official Rootly endpoint: PUT /v1/feedbacks/{id} Update a specific incident feedback by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_feedback '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_feedback '{}' --json

rootly.rootly_list_incident_form_field_selections

List incident form field selections Official Rootly endpoint: GET /v1/incidents/{incident_id}/form_field_selections List incident form field selections

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

rootly.rootly_create_incident_form_field_selection

Creates an incident form field selection Official Rootly endpoint: POST /v1/incidents/{incident_id}/form_field_selections Creates a new incident form field selection from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_form_field_selection '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_form_field_selection '{}' --json

rootly.rootly_get_incident_form_field_selection

Retrieves an incident form field selection Official Rootly endpoint: GET /v1/incident_form_field_selections/{id} Retrieves a specific incident form field selection by id

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

rootly.rootly_update_incident_form_field_selection

Update an incident form field selection Official Rootly endpoint: PUT /v1/incident_form_field_selections/{id} Update a specific incident form field selection by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_form_field_selection '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_form_field_selection '{}' --json

rootly.rootly_delete_incident_form_field_selection

Delete an incident form field selection Official Rootly endpoint: DELETE /v1/incident_form_field_selections/{id} Delete a specific incident form field selection by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_form_field_selection '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_form_field_selection '{}' --json

rootly.rootly_list_incident_permission_set_booleans

List incident_permission_set_booleans Official Rootly endpoint: GET /v1/incident_permission_sets/{incident_permission_set_id}/booleans List incident_permission_set_booleans

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

rootly.rootly_create_incident_permission_set_boolean

Creates an incident_permission_set_boolean Official Rootly endpoint: POST /v1/incident_permission_sets/{incident_permission_set_id}/booleans Creates a new incident_permission_set_boolean from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_permission_set_boolean '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_permission_set_boolean '{}' --json

rootly.rootly_get_incident_permission_set_boolean

Retrieves an incident_permission_set_boolean Official Rootly endpoint: GET /v1/incident_permission_set_booleans/{id} Retrieves a specific incident_permission_set_boolean by id

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

rootly.rootly_update_incident_permission_set_boolean

Update an incident_permission_set_boolean Official Rootly endpoint: PUT /v1/incident_permission_set_booleans/{id} Update a specific incident_permission_set_boolean by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_permission_set_boolean '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_permission_set_boolean '{}' --json

rootly.rootly_delete_incident_permission_set_boolean

Delete an incident_permission_set_boolean Official Rootly endpoint: DELETE /v1/incident_permission_set_booleans/{id} Delete a specific incident_permission_set_boolean by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_permission_set_boolean '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_permission_set_boolean '{}' --json

rootly.rootly_list_incident_permission_set_resources

List incident_permission_set_resources Official Rootly endpoint: GET /v1/incident_permission_sets/{incident_permission_set_id}/resources List incident_permission_set_resources

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

rootly.rootly_create_incident_permission_set_resource

Creates an incident_permission_set_resource Official Rootly endpoint: POST /v1/incident_permission_sets/{incident_permission_set_id}/resources Creates a new incident_permission_set_resource from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_permission_set_resource '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_permission_set_resource '{}' --json

rootly.rootly_get_incident_permission_set_resource

Retrieves an incident_permission_set_resource Official Rootly endpoint: GET /v1/incident_permission_set_resources/{id} Retrieves a specific incident_permission_set_resource by id

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

rootly.rootly_update_incident_permission_set_resource

Update an incident_permission_set_resource Official Rootly endpoint: PUT /v1/incident_permission_set_resources/{id} Update a specific incident_permission_set_resource by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_permission_set_resource '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_permission_set_resource '{}' --json

rootly.rootly_delete_incident_permission_set_resource

Delete an incident_permission_set_resource Official Rootly endpoint: DELETE /v1/incident_permission_set_resources/{id} Delete a specific incident_permission_set_resource by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_permission_set_resource '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_permission_set_resource '{}' --json

rootly.rootly_list_incident_permission_sets

List incident_permission_sets Official Rootly endpoint: GET /v1/incident_permission_sets List incident_permission_sets

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

rootly.rootly_create_incident_permission_set

Creates an incident_permission_set Official Rootly endpoint: POST /v1/incident_permission_sets Creates a new incident_permission_set from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_permission_set '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_permission_set '{}' --json

rootly.rootly_get_incident_permission_set

Retrieves an incident_permission_set Official Rootly endpoint: GET /v1/incident_permission_sets/{id} Retrieves a specific incident_permission_set by id

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

rootly.rootly_update_incident_permission_set

Update an incident_permission_set Official Rootly endpoint: PUT /v1/incident_permission_sets/{id} Update a specific incident_permission_set by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_permission_set '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_permission_set '{}' --json

rootly.rootly_delete_incident_permission_set

Delete an incident_permission_set Official Rootly endpoint: DELETE /v1/incident_permission_sets/{id} Delete a specific incident_permission_set by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_permission_set '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_permission_set '{}' --json

rootly.rootly_list_incident_post_mortems

List incident retrospectives Official Rootly endpoint: GET /v1/post_mortems List incident retrospectives

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

rootly.rootly_list_incident_postmortem

Retrieves an incident retrospective Official Rootly endpoint: GET /v1/post_mortems/{id} List incidents retrospectives

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

rootly.rootly_update_incident_postmortem

Update an incident retrospective Official Rootly endpoint: PUT /v1/post_mortems/{id} Update a specific incident retrospective by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_postmortem '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_postmortem '{}' --json

rootly.rootly_get_incident_retrospective_step

Retrieves an incident retrospective step Official Rootly endpoint: GET /v1/incident_retrospective_steps/{id} Retrieves a specific incident retrospective step by id

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

rootly.rootly_update_incident_retrospective_step

Update an incident retrospective step Official Rootly endpoint: PUT /v1/incident_retrospective_steps/{id} Update a specific incident retrospective step by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_retrospective_step '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_retrospective_step '{}' --json

rootly.rootly_list_incident_role_tasks

List incident role tasks Official Rootly endpoint: GET /v1/incident_roles/{incident_role_id}/incident_role_tasks List incident_role tasks

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

rootly.rootly_create_incident_role_task

Creates an incident role task Official Rootly endpoint: POST /v1/incident_roles/{incident_role_id}/incident_role_tasks Creates a new task from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_role_task '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_role_task '{}' --json

rootly.rootly_get_incident_role_task

Retrieves an incident role task Official Rootly endpoint: GET /v1/incident_role_tasks/{id} Retrieves a specific incident_role_task by id

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

rootly.rootly_update_incident_role_task

Update an incident role task Official Rootly endpoint: PUT /v1/incident_role_tasks/{id} Update a specific incident_role task by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_role_task '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_role_task '{}' --json

rootly.rootly_delete_incident_role_task

Delete an incident role task Official Rootly endpoint: DELETE /v1/incident_role_tasks/{id} Delete a specific incident_role task by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_role_task '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_role_task '{}' --json

rootly.rootly_list_incident_roles

List incident roles Official Rootly endpoint: GET /v1/incident_roles List incident roles

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

rootly.rootly_create_incident_role

Creates an incident role Official Rootly endpoint: POST /v1/incident_roles Creates a new incident role from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_role '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_role '{}' --json

rootly.rootly_get_incident_role

Retrieves an incident role Official Rootly endpoint: GET /v1/incident_roles/{id} Retrieves a specific incident_role by id

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

rootly.rootly_update_incident_role

Update an incident role Official Rootly endpoint: PUT /v1/incident_roles/{id} Update a specific incident_role by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_role '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_role '{}' --json

rootly.rootly_delete_incident_role

Delete an incident role Official Rootly endpoint: DELETE /v1/incident_roles/{id} Delete a specific incident_role by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_role '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_role '{}' --json

rootly.rootly_list_incident_status_pages

List incident status page events Official Rootly endpoint: GET /v1/incidents/{incident_id}/status-page-events List incident status page events

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

rootly.rootly_create_incident_status_page

Creates an incident status page event Official Rootly endpoint: POST /v1/incidents/{incident_id}/status-page-events Creates a new event from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_status_page '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_status_page '{}' --json

rootly.rootly_get_incident_status_pages

Retrieves an incident status page event Official Rootly endpoint: GET /v1/status-page-events/{id} Retrieves a specific incident_status_page_event by id

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

rootly.rootly_update_incident_status_page

Update an incident status page event Official Rootly endpoint: PUT /v1/status-page-events/{id} Update a specific incident status page event by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_status_page '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_status_page '{}' --json

rootly.rootly_delete_incident_status_page

Delete an incident status page event Official Rootly endpoint: DELETE /v1/status-page-events/{id} Delete a specific incident status page event by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_status_page '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_status_page '{}' --json

rootly.rootly_list_incident_sub_statuses

List incident_sub_statuses Official Rootly endpoint: GET /v1/incidents/{incident_id}/sub_statuses List incident_sub_statuses

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

rootly.rootly_create_incident_sub_status

Creates a sub-status assignment Official Rootly endpoint: POST /v1/incidents/{incident_id}/sub_statuses Creates a new sub-status assignment from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_sub_status '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_sub_status '{}' --json

rootly.rootly_get_incident_sub_status

Retrieves incident_sub_status Official Rootly endpoint: GET /v1/incident_sub_statuses/{id} Retrieves a specific incident_sub_status by id

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

rootly.rootly_update_incident_sub_status

Update incident_sub_status Official Rootly endpoint: PUT /v1/incident_sub_statuses/{id} Update a specific incident_sub_status by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_sub_status '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_sub_status '{}' --json

rootly.rootly_delete_incident_sub_status

Delete an incident_sub_status Official Rootly endpoint: DELETE /v1/incident_sub_statuses/{id} Delete a specific incident_sub_status by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_sub_status '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_sub_status '{}' --json

rootly.rootly_list_incident_types

List incident types Official Rootly endpoint: GET /v1/incident_types List incident types

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

rootly.rootly_create_incident_type

Creates an incident type Official Rootly endpoint: POST /v1/incident_types Creates a new incident_type from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_type '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_type '{}' --json

rootly.rootly_get_incident_type

Retrieves an incident type Official Rootly endpoint: GET /v1/incident_types/{id} Retrieves a specific incident_type by id

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

rootly.rootly_update_incident_type

Update an incident type Official Rootly endpoint: PUT /v1/incident_types/{id} Update a specific incident_type by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident_type '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident_type '{}' --json

rootly.rootly_delete_incident_type

Delete an incident type Official Rootly endpoint: DELETE /v1/incident_types/{id} Delete a specific incident_type by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident_type '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident_type '{}' --json

rootly.rootly_list_incident_type_catalog_properties

List Catalog Properties Official Rootly endpoint: GET /v1/incident_types/properties List IncidentType Catalog Properties

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

rootly.rootly_create_incident_type_catalog_property

Creates a Catalog Property Official Rootly endpoint: POST /v1/incident_types/properties Creates a new Catalog Property from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident_type_catalog_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident_type_catalog_property '{}' --json

rootly.rootly_list_incidents

List incidents Official Rootly endpoint: GET /v1/incidents List incidents

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

rootly.rootly_create_incident

Creates an incident Official Rootly endpoint: POST /v1/incidents Creates a new incident from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_incident '{}' --json

rootly.rootly_get_incident

Retrieves an incident Official Rootly endpoint: GET /v1/incidents/{id} Retrieves a specific incident by id

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

rootly.rootly_update_incident

Update an incident Official Rootly endpoint: PUT /v1/incidents/{id} Update a specific incident by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_incident '{}' --json

rootly.rootly_delete_incident

Delete an incident Official Rootly endpoint: DELETE /v1/incidents/{id} Delete a specific incident by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_incident '{}' --json

rootly.rootly_mitigate_incident

Mitigate an incident Official Rootly endpoint: PUT /v1/incidents/{id}/mitigate Mitigate a specific incident by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_mitigate_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_mitigate_incident '{}' --json

rootly.rootly_resolve_incident

Resolve an incident Official Rootly endpoint: PUT /v1/incidents/{id}/resolve Resolve a specific incident by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_resolve_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_resolve_incident '{}' --json

rootly.rootly_cancel_incident

Cancel an incident Official Rootly endpoint: PUT /v1/incidents/{id}/cancel Cancel a specific incident by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_cancel_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_cancel_incident '{}' --json

rootly.rootly_triage_incident

Triage an incident Official Rootly endpoint: PUT /v1/incidents/{id}/in_triage Set a specific incident by ID to triage state

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_triage_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_triage_incident '{}' --json

rootly.rootly_restart_incident

Restart an incident Official Rootly endpoint: PUT /v1/incidents/{id}/restart Restart a specific incident by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_restart_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_restart_incident '{}' --json

rootly.rootly_mark_as_duplicate_incident

Mark an incident as a duplicate Official Rootly endpoint: PUT /v1/incidents/{id}/duplicate Mark an incident as a duplicate

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_mark_as_duplicate_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_mark_as_duplicate_incident '{}' --json

rootly.rootly_detach_from_parent_incident

Detach an incident from its parent Official Rootly endpoint: PUT /v1/incidents/{id}/detach_from_parent Detach a sub-incident from its parent incident

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_detach_from_parent_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_detach_from_parent_incident '{}' --json

rootly.rootly_unmark_as_duplicate_incident

Remove duplicate marking from an incident Official Rootly endpoint: PUT /v1/incidents/{id}/unmark_as_duplicate Remove the duplicate marking from an incident

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_unmark_as_duplicate_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_unmark_as_duplicate_incident '{}' --json

rootly.rootly_add_subscribers_to_incident

Add subscribers to incident Official Rootly endpoint: POST /v1/incidents/{id}/add_subscribers Add subscribers to incident

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_add_subscribers_to_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_add_subscribers_to_incident '{}' --json

rootly.rootly_remove_subscribers_to_incident

Remove subscribers from incident Official Rootly endpoint: DELETE /v1/incidents/{id}/remove_subscribers Remove subscribers to incident

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_remove_subscribers_to_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_remove_subscribers_to_incident '{}' --json

rootly.rootly_assign_user_to_incident

Assign user to incident Official Rootly endpoint: POST /v1/incidents/{id}/assign_role_to_user Assign user to incident

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_assign_user_to_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_assign_user_to_incident '{}' --json

rootly.rootly_remove_assigned_user_from_incident

Remove assigned user from incident Official Rootly endpoint: DELETE /v1/incidents/{id}/unassign_role_from_user Remove assigned user from incident

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_remove_assigned_user_from_incident '{}' --json
Shortcut
kosmo integrations:rootly rootly_remove_assigned_user_from_incident '{}' --json

rootly.rootly_get_ip_ranges

Retrieves IP ranges Official Rootly endpoint: GET /v1/ip_ranges Retrieves the IP ranges for rootly.com services

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

rootly.rootly_list_live_call_routers

List Live Call Routers Official Rootly endpoint: GET /v1/live_call_routers List Live Call Routers

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

rootly.rootly_create_live_call_router

Creates a Live Call Router Official Rootly endpoint: POST /v1/live_call_routers Creates a new Live Call Router from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_live_call_router '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_live_call_router '{}' --json

rootly.rootly_generate_phone_number_live_call_router

Generates a phone number for Live Call Router Official Rootly endpoint: GET /v1/live_call_routers/generate_phone_number Generates a phone number for Live Call Router

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

rootly.rootly_get_live_call_router

Retrieves a Live Call Router Official Rootly endpoint: GET /v1/live_call_routers/{id} Retrieves a specific Live Call Router by id

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

rootly.rootly_update_live_call_router

Update a Live Call Router Official Rootly endpoint: PUT /v1/live_call_routers/{id} Update a specific Live Call Router by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_live_call_router '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_live_call_router '{}' --json

rootly.rootly_delete_live_call_router

Delete a Live Call Router Official Rootly endpoint: DELETE /v1/live_call_routers/{id} Delete a specific Live Call Router by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_live_call_router '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_live_call_router '{}' --json

rootly.rootly_list_meeting_recordings

List meeting recordings Official Rootly endpoint: GET /v1/incidents/{incident_id}/meeting_recordings List all meeting recording sessions for an incident. Returns recordings sorted by session number. Each recording represents one bot session

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

rootly.rootly_create_meeting_recording

Create meeting recording Official Rootly endpoint: POST /v1/incidents/{incident_id}/meeting_recordings Invite a recording bot to the incident's meeting. If no previous recordings exist for the platform, a new bot is invited (session 1). If

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_meeting_recording '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_meeting_recording '{}' --json

rootly.rootly_get_meeting_recording

Get a meeting recording Official Rootly endpoint: GET /v1/meeting_recordings/{id} Retrieve a single meeting recording session including its status, duration, speaker count, word count, and transcript summary.

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

rootly.rootly_delete_meeting_recording

Delete a meeting recording Official Rootly endpoint: DELETE /v1/meeting_recordings/{id} Delete a meeting recording. Only completed or failed recordings can be deleted. Active recordings (pending, recording, paused) must be stopped first.

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_meeting_recording '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_meeting_recording '{}' --json

rootly.rootly_delete_meeting_recording_video

Delete video from a meeting recording Official Rootly endpoint: DELETE /v1/meeting_recordings/{id}/delete_video Delete only the video file from a meeting recording. The transcript, summary, and all metadata are preserved. Only non-active re

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_meeting_recording_video '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_meeting_recording_video '{}' --json

rootly.rootly_pause_meeting_recording

Pause a meeting recording Official Rootly endpoint: POST /v1/meeting_recordings/{id}/pause Pause an active recording session. The bot remains in the meeting but stops capturing audio/video. Use the resume endpoint to continue recording.

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_pause_meeting_recording '{}' --json
Shortcut
kosmo integrations:rootly rootly_pause_meeting_recording '{}' --json

rootly.rootly_resume_meeting_recording

Resume a meeting recording Official Rootly endpoint: POST /v1/meeting_recordings/{id}/resume Resume a paused recording session. The bot continues capturing audio/video from the meeting.

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_resume_meeting_recording '{}' --json
Shortcut
kosmo integrations:rootly rootly_resume_meeting_recording '{}' --json

rootly.rootly_stop_meeting_recording

Stop a meeting recording Official Rootly endpoint: POST /v1/meeting_recordings/{id}/stop Stop an active or paused recording. The bot finishes processing, generates a transcript, and the session status transitions to completed. This is irrev

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_stop_meeting_recording '{}' --json
Shortcut
kosmo integrations:rootly rootly_stop_meeting_recording '{}' --json

rootly.rootly_leave_meeting_recording

Leave a meeting call Official Rootly endpoint: POST /v1/meeting_recordings/{id}/leave Remove the recording bot from the meeting entirely. Unlike stop, this immediately disconnects the bot. The session will transition to analyzing and then c

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_leave_meeting_recording '{}' --json
Shortcut
kosmo integrations:rootly rootly_leave_meeting_recording '{}' --json

rootly.rootly_list_on_call_pay_reports

List On-Call Pay Reports Official Rootly endpoint: GET /v1/on_call_pay_reports List on-call pay reports

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

rootly.rootly_create_on_call_pay_report

Creates an On-Call Pay Report Official Rootly endpoint: POST /v1/on_call_pay_reports Generates a new on-call pay report for the given date range. The report is generated asynchronously.

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_on_call_pay_report '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_on_call_pay_report '{}' --json

rootly.rootly_get_on_call_pay_report

Retrieves an On-Call Pay Report Official Rootly endpoint: GET /v1/on_call_pay_reports/{id} Retrieves a specific on-call pay report by id

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

rootly.rootly_update_on_call_pay_report

Update an On-Call Pay Report Official Rootly endpoint: PUT /v1/on_call_pay_reports/{id} Update a specific on-call pay report by id. Triggers report regeneration.

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_on_call_pay_report '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_on_call_pay_report '{}' --json

rootly.rootly_regenerate_on_call_pay_report

Regenerate an On-Call Pay Report Official Rootly endpoint: POST /v1/on_call_pay_reports/{id}/regenerate Triggers regeneration of an existing on-call pay report.

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_regenerate_on_call_pay_report '{}' --json
Shortcut
kosmo integrations:rootly rootly_regenerate_on_call_pay_report '{}' --json

rootly.rootly_list_on_call_roles

List On-Call Roles Official Rootly endpoint: GET /v1/on_call_roles List On-Call Roles

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

rootly.rootly_create_on_call_role

Creates an On-Call Role Official Rootly endpoint: POST /v1/on_call_roles Creates a new On-Call Role from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_on_call_role '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_on_call_role '{}' --json

rootly.rootly_get_on_call_role

Retrieves an On-Call Role Official Rootly endpoint: GET /v1/on_call_roles/{id} Retrieves a specific On-Call Role by id

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

rootly.rootly_update_on_call_role

Update an On-Call Role Official Rootly endpoint: PUT /v1/on_call_roles/{id} Update a specific On-Call Role by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_on_call_role '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_on_call_role '{}' --json

rootly.rootly_delete_on_call_role

Delete an On-Call Role Official Rootly endpoint: DELETE /v1/on_call_roles/{id} Delete a specific On-Call Role by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_on_call_role '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_on_call_role '{}' --json

rootly.rootly_list_on_call_shadows

List On Call Shadows for Shift Official Rootly endpoint: GET /v1/schedules/{schedule_id}/on_call_shadows List shadow shifts for schedule

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

rootly.rootly_create_on_call_shadow

creates an shadow configuration Official Rootly endpoint: POST /v1/schedules/{schedule_id}/on_call_shadows Creates a new on call shadow configuration from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_on_call_shadow '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_on_call_shadow '{}' --json

rootly.rootly_get_on_call_shadow

Retrieves an On Call Shadow configuration by ID Official Rootly endpoint: GET /v1/on_call_shadows/{id} Retrieves a specific On Call Shadow configuration by ID

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

rootly.rootly_update_on_call_shadow

Update an On Call Shadow configuration Official Rootly endpoint: PUT /v1/on_call_shadows/{id} Update a specific on call shadow configuration by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_on_call_shadow '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_on_call_shadow '{}' --json

rootly.rootly_delete_on_call_shadow

Delete an on call shadow configuration Official Rootly endpoint: DELETE /v1/on_call_shadows/{id} Delete a specific on call shadow configuration by id. Future shadows are hard-deleted. Active shadows (started in the past) have their end time

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_on_call_shadow '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_on_call_shadow '{}' --json

rootly.rootly_list_oncalls

List on-calls Official Rootly endpoint: GET /v1/oncalls List who is currently on-call, with support for filtering by escalation policy, schedule, and user. Returns on-call entries grouped by escalation policy level.

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

rootly.rootly_list_override_shifts

List override shifts Official Rootly endpoint: GET /v1/schedules/{schedule_id}/override_shifts List override shifts

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

rootly.rootly_create_override_shift

creates an override shift Official Rootly endpoint: POST /v1/schedules/{schedule_id}/override_shifts Creates a new override shift from provided data. If any existing override shifts overlap with the specified time range, they will be automa

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_override_shift '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_override_shift '{}' --json

rootly.rootly_get_override_shift

Retrieves an override shift Official Rootly endpoint: GET /v1/override_shifts/{id} Retrieves a specific override shift by id

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

rootly.rootly_update_override_shift

Update an override shift Official Rootly endpoint: PUT /v1/override_shifts/{id} Update a specific override shift by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_override_shift '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_override_shift '{}' --json

rootly.rootly_delete_override_shift

Delete an override shift Official Rootly endpoint: DELETE /v1/override_shifts/{id} Delete a specific override shift by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_override_shift '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_override_shift '{}' --json

rootly.rootly_list_playbook_tasks

List playbook tasks Official Rootly endpoint: GET /v1/playbooks/{playbook_id}/playbook_tasks List playbook tasks

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

rootly.rootly_create_playbook_task

Creates a playbook task Official Rootly endpoint: POST /v1/playbooks/{playbook_id}/playbook_tasks Creates a new task from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_playbook_task '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_playbook_task '{}' --json

rootly.rootly_get_playbook_task

Retrieves a playbook task Official Rootly endpoint: GET /v1/playbook_tasks/{id} Retrieves a specific playbook_task by id

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

rootly.rootly_update_playbook_task

Update a playbook task Official Rootly endpoint: PUT /v1/playbook_tasks/{id} Update a specific playbook task by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_playbook_task '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_playbook_task '{}' --json

rootly.rootly_delete_playbook_task

Delete a playbook task Official Rootly endpoint: DELETE /v1/playbook_tasks/{id} Delete a specific playbook task by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_playbook_task '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_playbook_task '{}' --json

rootly.rootly_list_playbooks

List playbooks Official Rootly endpoint: GET /v1/playbooks List playbooks

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

rootly.rootly_create_playbook

Creates a playbook Official Rootly endpoint: POST /v1/playbooks Creates a new playbook from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_playbook '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_playbook '{}' --json

rootly.rootly_get_playbook

Retrieves a playbook Official Rootly endpoint: GET /v1/playbooks/{id} Retrieves a specific playbook by id

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

rootly.rootly_update_playbook

Update a playbook Official Rootly endpoint: PUT /v1/playbooks/{id} Update a specific playbook by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_playbook '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_playbook '{}' --json

rootly.rootly_delete_playbook

Delete a playbook Official Rootly endpoint: DELETE /v1/playbooks/{id} Delete a specific playbook by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_playbook '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_playbook '{}' --json

rootly.rootly_list_postmortem_templates

List Retrospective Templates Official Rootly endpoint: GET /v1/post_mortem_templates List Retrospective Templates

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

rootly.rootly_create_postmortem_template

Creates a retrospective template Official Rootly endpoint: POST /v1/post_mortem_templates Creates a new Retrospective Template from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_postmortem_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_postmortem_template '{}' --json

rootly.rootly_get_postmortem_template

Retrieves a Retrospective Template Official Rootly endpoint: GET /v1/post_mortem_templates/{id} Retrieves a specific Retrospective Template by id

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

rootly.rootly_update_postmortem_template

Update a Retrospective Template Official Rootly endpoint: PUT /v1/post_mortem_templates/{id} Update a specific Retrospective Template by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_postmortem_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_postmortem_template '{}' --json

rootly.rootly_delete_postmortem_template

Delete a Retrospective Template Official Rootly endpoint: DELETE /v1/post_mortem_templates/{id} Delete a specific Retrospective Template by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_postmortem_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_postmortem_template '{}' --json

rootly.rootly_list_pulses

List pulses Official Rootly endpoint: GET /v1/pulses List pulses

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

rootly.rootly_create_pulse

Creates a pulse Official Rootly endpoint: POST /v1/pulses Creates a new pulse from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_pulse '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_pulse '{}' --json

rootly.rootly_get_pulse

Retrieves a pulse Official Rootly endpoint: GET /v1/pulses/{id} Retrieves a specific pulse by id

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

rootly.rootly_update_pulse

Update a pulse Official Rootly endpoint: PUT /v1/pulses/{id} Update a specific pulse by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_pulse '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_pulse '{}' --json

rootly.rootly_list_retrospective_configurations

List retrospective configurations Official Rootly endpoint: GET /v1/retrospective_configurations List retrospective configurations

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

rootly.rootly_get_retrospective_configuration

Retrieves a Retrospective Configuration Official Rootly endpoint: GET /v1/retrospective_configurations/{id} Retrieves a specific retrospective_configuration by id

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

rootly.rootly_update_retrospective_configuration

Update a retrospective configuration Official Rootly endpoint: PUT /v1/retrospective_configurations/{id} Update a specific retrospective configuration by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_retrospective_configuration '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_retrospective_configuration '{}' --json

rootly.rootly_list_retrospective_process_group_steps

List RetrospectiveProcessGroup Steps Official Rootly endpoint: GET /v1/retrospective_process_groups/{retrospective_process_group_id}/steps List RetrospectiveProcessGroup Steps

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

rootly.rootly_create_retrospective_process_group_step

Creates a retrospective process group step Official Rootly endpoint: POST /v1/retrospective_process_groups/{retrospective_process_group_id}/steps Creates a new retrospective process group step from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_retrospective_process_group_step '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_retrospective_process_group_step '{}' --json

rootly.rootly_get_retrospective_process_group_step

Retrieves a RetrospectiveProcessGroup Step Official Rootly endpoint: GET /v1/retrospective_process_group_steps/{id} Retrieves a specific RetrospectiveProcessGroup Step by id

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

rootly.rootly_update_retrospective_process_group_step

Update RetrospectiveProcessGroup Step Official Rootly endpoint: PUT /v1/retrospective_process_group_steps/{id} Update a specific RetrospectiveProcessGroup Step by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_retrospective_process_group_step '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_retrospective_process_group_step '{}' --json

rootly.rootly_delete_retrospective_process_group_step

Delete a RetrospectiveProcessGroup Step Official Rootly endpoint: DELETE /v1/retrospective_process_group_steps/{id} Delete a specific RetrospectiveProcessGroup Step by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_retrospective_process_group_step '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_retrospective_process_group_step '{}' --json

rootly.rootly_list_retrospective_process_groups

List Retrospective Process Groups Official Rootly endpoint: GET /v1/retrospective_processes/{retrospective_process_id}/groups List Retrospective Process Groups

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

rootly.rootly_create_retrospective_process_group

Creates a retrospective process group Official Rootly endpoint: POST /v1/retrospective_processes/{retrospective_process_id}/groups Creates a new retrospective process group from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_retrospective_process_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_retrospective_process_group '{}' --json

rootly.rootly_get_retrospective_process_group

Retrieves a Retrospective Process Group Official Rootly endpoint: GET /v1/retrospective_process_groups/{id} Retrieves a specific Retrospective Process Group by id

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

rootly.rootly_update_retrospective_process_group

Update a Retrospective Process Group Official Rootly endpoint: PUT /v1/retrospective_process_groups/{id} Update a specific Retrospective Process Group by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_retrospective_process_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_retrospective_process_group '{}' --json

rootly.rootly_delete_retrospective_process_group

Delete a Retrospective Process Group Official Rootly endpoint: DELETE /v1/retrospective_process_groups/{id} Delete a specific Retrospective Process Group by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_retrospective_process_group '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_retrospective_process_group '{}' --json

rootly.rootly_list_retrospective_processes

List retrospective processes Official Rootly endpoint: GET /v1/retrospective_processes List retrospective processes

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

rootly.rootly_create_retrospective_process

Creates a retrospective process Official Rootly endpoint: POST /v1/retrospective_processes Creates a new retrospective process from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_retrospective_process '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_retrospective_process '{}' --json

rootly.rootly_get_retrospective_process

Retrieves a retrospective process Official Rootly endpoint: GET /v1/retrospective_processes/{id} Retrieves a specific retrospective process by id

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

rootly.rootly_update_retrospective_process

Update a retrospective process Official Rootly endpoint: PUT /v1/retrospective_processes/{id} Updates a specific retrospective process by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_retrospective_process '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_retrospective_process '{}' --json

rootly.rootly_delete_retrospective_process

Delete a retrospective process Official Rootly endpoint: DELETE /v1/retrospective_processes/{id} Delete a specific retrospective process by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_retrospective_process '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_retrospective_process '{}' --json

rootly.rootly_list_retrospective_steps

List retrospective steps Official Rootly endpoint: GET /v1/retrospective_processes/{retrospective_process_id}/retrospective_steps List retrospective steps

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

rootly.rootly_create_retrospective_step

Creates a retrospective step Official Rootly endpoint: POST /v1/retrospective_processes/{retrospective_process_id}/retrospective_steps Creates a new retrospective step from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_retrospective_step '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_retrospective_step '{}' --json

rootly.rootly_get_retrospective_step

Retrieves a retrospective step Official Rootly endpoint: GET /v1/retrospective_steps/{id} Retrieves a specific retrospective step by id

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

rootly.rootly_update_retrospective_step

Update a retrospective step Official Rootly endpoint: PUT /v1/retrospective_steps/{id} Update a specific retrospective step by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_retrospective_step '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_retrospective_step '{}' --json

rootly.rootly_delete_retrospective_step

Delete a retrospective step Official Rootly endpoint: DELETE /v1/retrospective_steps/{id} Delete a specific retrospective step by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_retrospective_step '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_retrospective_step '{}' --json

rootly.rootly_list_roles

List roles Official Rootly endpoint: GET /v1/roles List roles

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

rootly.rootly_create_role

Creates a role Official Rootly endpoint: POST /v1/roles Creates a new role from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_role '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_role '{}' --json

rootly.rootly_get_role

Retrieves a role Official Rootly endpoint: GET /v1/roles/{id} Retrieves a specific role by id

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

rootly.rootly_update_role

Update a role Official Rootly endpoint: PUT /v1/roles/{id} Update a specific role by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_role '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_role '{}' --json

rootly.rootly_delete_role

Delete a role Official Rootly endpoint: DELETE /v1/roles/{id} Delete a specific role by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_role '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_role '{}' --json

rootly.rootly_list_schedule_rotation_active_days

List schedule rotation active days Official Rootly endpoint: GET /v1/schedule_rotations/{schedule_rotation_id}/schedule_rotation_active_days List schedule rotation active days

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

rootly.rootly_create_schedule_rotation_active_day

Creates a schedule rotation active day Official Rootly endpoint: POST /v1/schedule_rotations/{schedule_rotation_id}/schedule_rotation_active_days Creates a new schedule rotation active day from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_schedule_rotation_active_day '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_schedule_rotation_active_day '{}' --json

rootly.rootly_get_schedule_rotation_active_day

Retrieves a schedule rotation active day Official Rootly endpoint: GET /v1/schedule_rotation_active_days/{id} Retrieves a specific schedule rotation active day by id

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

rootly.rootly_update_schedule_rotation_active_day

Update a schedule rotation active day Official Rootly endpoint: PUT /v1/schedule_rotation_active_days/{id} Update a specific schedule rotation active day by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_schedule_rotation_active_day '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_schedule_rotation_active_day '{}' --json

rootly.rootly_delete_schedule_rotation_active_day

Delete a schedule rotation active day Official Rootly endpoint: DELETE /v1/schedule_rotation_active_days/{id} Delete a specific schedule rotation active day

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_schedule_rotation_active_day '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_schedule_rotation_active_day '{}' --json

rootly.rootly_list_schedule_rotation_users

List schedule rotation users Official Rootly endpoint: GET /v1/schedule_rotations/{schedule_rotation_id}/schedule_rotation_users

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

rootly.rootly_create_schedule_rotation_user

Creates a schedule rotation user Official Rootly endpoint: POST /v1/schedule_rotations/{schedule_rotation_id}/schedule_rotation_users Creates a new schedule rotation user from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_schedule_rotation_user '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_schedule_rotation_user '{}' --json

rootly.rootly_get_schedule_rotation_user

Retrieves a schedule rotation user Official Rootly endpoint: GET /v1/schedule_rotation_users/{id} Retrieves a specific schedule rotation user by id

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

rootly.rootly_update_schedule_rotation_user

Update schedule rotation user Official Rootly endpoint: PUT /v1/schedule_rotation_users/{id} Update a specific schedule rotation user by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_schedule_rotation_user '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_schedule_rotation_user '{}' --json

rootly.rootly_delete_schedule_rotation_user

Delete a schedule rotation user Official Rootly endpoint: DELETE /v1/schedule_rotation_users/{id} Delete a specific schedule rotation user by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_schedule_rotation_user '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_schedule_rotation_user '{}' --json

rootly.rootly_list_schedule_rotations

List schedule rotations Official Rootly endpoint: GET /v1/schedules/{schedule_id}/schedule_rotations List schedule rotations

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

rootly.rootly_create_schedule_rotation

Creates a schedule rotation Official Rootly endpoint: POST /v1/schedules/{schedule_id}/schedule_rotations Creates a new schedule rotation from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_schedule_rotation '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_schedule_rotation '{}' --json

rootly.rootly_get_schedule_rotation

Retrieves a schedule rotation Official Rootly endpoint: GET /v1/schedule_rotations/{id} Retrieves a specific schedule rotation by id

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

rootly.rootly_update_schedule_rotation

Update a schedule rotation Official Rootly endpoint: PUT /v1/schedule_rotations/{id} Update a specific schedule rotation by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_schedule_rotation '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_schedule_rotation '{}' --json

rootly.rootly_delete_schedule_rotation

Delete a schedule rotation Official Rootly endpoint: DELETE /v1/schedule_rotations/{id} Delete a specific schedule rotation by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_schedule_rotation '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_schedule_rotation '{}' --json

rootly.rootly_list_schedules

List schedules Official Rootly endpoint: GET /v1/schedules List schedules

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

rootly.rootly_create_schedule

Creates a schedule Official Rootly endpoint: POST /v1/schedules Creates a new schedule from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_schedule '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_schedule '{}' --json

rootly.rootly_get_schedule

Retrieves a schedule Official Rootly endpoint: GET /v1/schedules/{id} Retrieves a specific schedule by id

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

rootly.rootly_update_schedule

Update a schedule Official Rootly endpoint: PUT /v1/schedules/{id} Updates a specific schedule by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_schedule '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_schedule '{}' --json

rootly.rootly_delete_schedule

Delete a schedule Official Rootly endpoint: DELETE /v1/schedules/{id} Delete a specific schedule by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_schedule '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_schedule '{}' --json

rootly.rootly_get_schedule_shifts

Retrieves a schedule shifts Official Rootly endpoint: GET /v1/schedules/{id}/shifts Retrieves schedule shifts

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

rootly.rootly_list_secrets

List secrets Official Rootly endpoint: GET /v1/secrets List secrets

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

rootly.rootly_create_secret

Creates a secret Official Rootly endpoint: POST /v1/secrets Creates a new secret from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_secret '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_secret '{}' --json

rootly.rootly_get_secret

Retrieves a secret Official Rootly endpoint: GET /v1/secrets/{id} Retrieve a specific secret by id

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

rootly.rootly_update_secret

Update a secret Official Rootly endpoint: PUT /v1/secrets/{id} Update a specific secret by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_secret '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_secret '{}' --json

rootly.rootly_delete_secret

Delete a secret Official Rootly endpoint: DELETE /v1/secrets/{id} Delete a specific secret by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_secret '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_secret '{}' --json

rootly.rootly_list_services

List services Official Rootly endpoint: GET /v1/services List services

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

rootly.rootly_create_service

Creates a service Official Rootly endpoint: POST /v1/services Creates a new service from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_service '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_service '{}' --json

rootly.rootly_get_service

Retrieves a service Official Rootly endpoint: GET /v1/services/{id} Retrieves a specific service by id

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

rootly.rootly_update_service

Update a service Official Rootly endpoint: PUT /v1/services/{id} Update a specific service by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_service '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_service '{}' --json

rootly.rootly_delete_service

Delete a service Official Rootly endpoint: DELETE /v1/services/{id} Delete a specific service by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_service '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_service '{}' --json

rootly.rootly_get_service_incidents_chart

Get service incidents chart Official Rootly endpoint: GET /v1/services/{id}/incidents_chart Get service incidents chart

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

rootly.rootly_get_service_uptime_chart

Get service uptime chart Official Rootly endpoint: GET /v1/services/{id}/uptime_chart Get service uptime chart

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

rootly.rootly_list_service_catalog_properties

List Catalog Properties Official Rootly endpoint: GET /v1/services/properties List Service Catalog Properties

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

rootly.rootly_create_service_catalog_property

Creates a Catalog Property Official Rootly endpoint: POST /v1/services/properties Creates a new Catalog Property from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_service_catalog_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_service_catalog_property '{}' --json

rootly.rootly_list_severities

List severities Official Rootly endpoint: GET /v1/severities List severities

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

rootly.rootly_create_severity

Creates a severity Official Rootly endpoint: POST /v1/severities Creates a new severity from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_severity '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_severity '{}' --json

rootly.rootly_get_severity

Retrieves a severity Official Rootly endpoint: GET /v1/severities/{id} Retrieves a specific severity by id

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

rootly.rootly_update_severity

Update a severity Official Rootly endpoint: PUT /v1/severities/{id} Update a specific severity by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_severity '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_severity '{}' --json

rootly.rootly_delete_severity

Delete a severity Official Rootly endpoint: DELETE /v1/severities/{id} Delete a specific severity by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_severity '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_severity '{}' --json

rootly.rootly_list_shifts

List shifts Official Rootly endpoint: GET /v1/shifts List shifts

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

rootly.rootly_list_slas

List SLAs Official Rootly endpoint: GET /v1/slas List SLAs

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

rootly.rootly_create_sla

Creates an SLA Official Rootly endpoint: POST /v1/slas Creates a new SLA from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_sla '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_sla '{}' --json

rootly.rootly_get_sla

Retrieves an SLA Official Rootly endpoint: GET /v1/slas/{id} Retrieves a specific SLA by id

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

rootly.rootly_update_sla

Update an SLA Official Rootly endpoint: PUT /v1/slas/{id} Update a specific SLA by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_sla '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_sla '{}' --json

rootly.rootly_delete_sla

Delete an SLA Official Rootly endpoint: DELETE /v1/slas/{id} Delete a specific SLA by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_sla '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_sla '{}' --json

rootly.rootly_list_status_page_templates

List status page templates Official Rootly endpoint: GET /v1/status-pages/{status_page_id}/templates List status page templates

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

rootly.rootly_create_status_page_template

Creates a status page template Official Rootly endpoint: POST /v1/status-pages/{status_page_id}/templates Creates a new template from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_status_page_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_status_page_template '{}' --json

rootly.rootly_get_status_page_template

Retrieves a status page template Official Rootly endpoint: GET /v1/templates/{id} Retrieves a specific status_page_template by id

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

rootly.rootly_update_status_page_template

Update status page template Official Rootly endpoint: PUT /v1/templates/{id} Update a specific template event by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_status_page_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_status_page_template '{}' --json

rootly.rootly_delete_status_page_template

Delete a incident event Official Rootly endpoint: DELETE /v1/templates/{id} Delete a specific template event by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_status_page_template '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_status_page_template '{}' --json

rootly.rootly_list_status_pages

List status pages Official Rootly endpoint: GET /v1/status-pages List status pages

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

rootly.rootly_create_status_page

Creates a status page Official Rootly endpoint: POST /v1/status-pages Creates a new status page from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_status_page '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_status_page '{}' --json

rootly.rootly_get_status_page

Retrieves a status page Official Rootly endpoint: GET /v1/status-pages/{id} Retrieves a specific status page by id

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

rootly.rootly_update_status_page

Update a status page Official Rootly endpoint: PUT /v1/status-pages/{id} Update a specific status page by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_status_page '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_status_page '{}' --json

rootly.rootly_delete_status_page

Delete a status page Official Rootly endpoint: DELETE /v1/status-pages/{id} Delete a specific status page by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_status_page '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_status_page '{}' --json

rootly.rootly_list_statuses

List Statuses Official Rootly endpoint: GET /v1/statuses List Statuses

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

rootly.rootly_get_status

Retrieves a Status Official Rootly endpoint: GET /v1/statuses/{id} Retrieves a specific Status by id

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

rootly.rootly_list_sub_statuses

List Sub-Statuses Official Rootly endpoint: GET /v1/sub_statuses List Sub-Statuses

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

rootly.rootly_create_sub_status

Creates a Sub-Status Official Rootly endpoint: POST /v1/sub_statuses Creates a new Sub-Status from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_sub_status '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_sub_status '{}' --json

rootly.rootly_get_sub_status

Retrieves a Sub-Status Official Rootly endpoint: GET /v1/sub_statuses/{id} Retrieves a specific Sub-Status by id

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

rootly.rootly_update_sub_status

Update a Sub-Status Official Rootly endpoint: PUT /v1/sub_statuses/{id} Update a specific Sub-Status by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_sub_status '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_sub_status '{}' --json

rootly.rootly_delete_sub_status

Delete a Sub-Status Official Rootly endpoint: DELETE /v1/sub_statuses/{id} Delete a specific Sub-Status by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_sub_status '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_sub_status '{}' --json

rootly.rootly_list_teams

List teams Official Rootly endpoint: GET /v1/teams List teams

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

rootly.rootly_create_team

Creates a team Official Rootly endpoint: POST /v1/teams Creates a new team from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_team '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_team '{}' --json

rootly.rootly_get_team

Retrieves a team Official Rootly endpoint: GET /v1/teams/{id} Retrieves a specific team by id

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

rootly.rootly_update_team

Update a team Official Rootly endpoint: PUT /v1/teams/{id} Update a specific team by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_team '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_team '{}' --json

rootly.rootly_delete_team

Delete a team Official Rootly endpoint: DELETE /v1/teams/{id} Delete a specific team by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_team '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_team '{}' --json

rootly.rootly_get_team_incidents_chart

Get team incidents chart Official Rootly endpoint: GET /v1/teams/{id}/incidents_chart Get team incidents chart

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

rootly.rootly_list_group_catalog_properties

List Catalog Properties Official Rootly endpoint: GET /v1/teams/properties List Group Catalog Properties

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

rootly.rootly_create_group_catalog_property

Creates a Catalog Property Official Rootly endpoint: POST /v1/teams/properties Creates a new Catalog Property from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_group_catalog_property '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_group_catalog_property '{}' --json

rootly.rootly_get_user_email_addresses

Retrieves user email addresses Official Rootly endpoint: GET /v1/users/{user_id}/email_addresses Retrieves all email addresses for the specified user

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

rootly.rootly_create_user_email_address

Creates a user email address Official Rootly endpoint: POST /v1/users/{user_id}/email_addresses Creates a new user email address from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_user_email_address '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_user_email_address '{}' --json

rootly.rootly_show_user_email_address

Show user email address Official Rootly endpoint: GET /v1/email_addresses/{id} Retrieves a specific user email address

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

rootly.rootly_update_user_email_address

Update user email address Official Rootly endpoint: PUT /v1/email_addresses/{id} Updates a user email address

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_user_email_address '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_user_email_address '{}' --json

rootly.rootly_delete_user_email_address

Delete user email address Official Rootly endpoint: DELETE /v1/email_addresses/{id} Deletes a user email address

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_user_email_address '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_user_email_address '{}' --json

rootly.rootly_verify_user_email_address

Verifies an email address with token Official Rootly endpoint: POST /v1/email_addresses/{id}/verify Verifies an email address using a verification token

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_verify_user_email_address '{}' --json
Shortcut
kosmo integrations:rootly rootly_verify_user_email_address '{}' --json

rootly.rootly_resend_user_email_address_verification

Resends verification email Official Rootly endpoint: POST /v1/email_addresses/{id}/resend_verification Resends verification email for an email address

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_resend_user_email_address_verification '{}' --json
Shortcut
kosmo integrations:rootly rootly_resend_user_email_address_verification '{}' --json

rootly.rootly_list_user_notification_rules

List user notification rules Official Rootly endpoint: GET /v1/users/{user_id}/notification_rules List user notification rules

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

rootly.rootly_create_user_notification_rule

Creates an user notification rule Official Rootly endpoint: POST /v1/users/{user_id}/notification_rules Creates a new user notification rule from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_user_notification_rule '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_user_notification_rule '{}' --json

rootly.rootly_get_user_notification_rule

Retrieves an user notification rule Official Rootly endpoint: GET /v1/notification_rules/{id} Retrieves a specific user notification rule by id

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

rootly.rootly_update_user_notification_rule

Update an user notification rule Official Rootly endpoint: PUT /v1/notification_rules/{id} Update a specific user notification rule by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_user_notification_rule '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_user_notification_rule '{}' --json

rootly.rootly_delete_user_notification_rule

Delete an user notification rule Official Rootly endpoint: DELETE /v1/notification_rules/{id} Delete a specific user notification rule by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_user_notification_rule '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_user_notification_rule '{}' --json

rootly.rootly_get_user_phone_numbers

Retrieves user phone numbers Official Rootly endpoint: GET /v1/users/{user_id}/phone_numbers Retrieves all phone numbers for the specified user

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

rootly.rootly_create_user_phone_number

Creates a user phone number Official Rootly endpoint: POST /v1/users/{user_id}/phone_numbers Creates a new user phone number from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_user_phone_number '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_user_phone_number '{}' --json

rootly.rootly_show_user_phone_number

Show user phone number Official Rootly endpoint: GET /v1/phone_numbers/{id} Retrieves a specific user phone number

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

rootly.rootly_update_user_phone_number

Update user phone number Official Rootly endpoint: PUT /v1/phone_numbers/{id} Updates a user phone number

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_user_phone_number '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_user_phone_number '{}' --json

rootly.rootly_delete_user_phone_number

Delete user phone number Official Rootly endpoint: DELETE /v1/phone_numbers/{id} Deletes a user phone number

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_user_phone_number '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_user_phone_number '{}' --json

rootly.rootly_list_users

List users Official Rootly endpoint: GET /v1/users List users

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

rootly.rootly_get_current_user

Get current user Official Rootly endpoint: GET /v1/users/me Get current user

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

rootly.rootly_get_user

Retrieves an user Official Rootly endpoint: GET /v1/users/{id} Retrieves a specific user by id

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

rootly.rootly_update_user

Update a user Official Rootly endpoint: PUT /v1/users/{id} Update a specific user by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_user '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_user '{}' --json

rootly.rootly_delete_user

Delete an user Official Rootly endpoint: DELETE /v1/users/{id} Delete a specific user by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_user '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_user '{}' --json

rootly.rootly_list_webhooks_deliveries

List webhook deliveries Official Rootly endpoint: GET /v1/webhooks/endpoints/{endpoint_id}/deliveries List webhook deliveries for given endpoint

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

rootly.rootly_deliver_webhooks_delivery

Retries a webhook delivery Official Rootly endpoint: POST /v1/webhooks/deliveries/{id}/deliver Retries a webhook delivery

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_deliver_webhooks_delivery '{}' --json
Shortcut
kosmo integrations:rootly rootly_deliver_webhooks_delivery '{}' --json

rootly.rootly_get_webhooks_delivery

Retrieves a webhook delivery Official Rootly endpoint: GET /v1/webhooks/deliveries/{id} Retrieves a specific webhook delivery by id

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

rootly.rootly_list_webhooks_endpoints

List webhook endpoints Official Rootly endpoint: GET /v1/webhooks/endpoints List webhook endpoints

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

rootly.rootly_create_webhooks_endpoint

Creates a webhook endpoint Official Rootly endpoint: POST /v1/webhooks/endpoints Creates a new webhook endpoint from provided data

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_create_webhooks_endpoint '{}' --json
Shortcut
kosmo integrations:rootly rootly_create_webhooks_endpoint '{}' --json

rootly.rootly_get_webhooks_endpoint

Retrieves a webhook endpoint Official Rootly endpoint: GET /v1/webhooks/endpoints/{id} Retrieves a specific webhook endpoint by id

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

rootly.rootly_update_webhooks_endpoint

Update a webhook endpoint Official Rootly endpoint: PUT /v1/webhooks/endpoints/{id} Update a specific webhook endpoint by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_update_webhooks_endpoint '{}' --json
Shortcut
kosmo integrations:rootly rootly_update_webhooks_endpoint '{}' --json

rootly.rootly_delete_webhooks_endpoint

Delete a webhook endpoint Official Rootly endpoint: DELETE /v1/webhooks/endpoints/{id} Delete a specific webhook endpoint by id

Write write
Parameters
none
Generic call
kosmo integrations:call rootly.rootly_delete_webhooks_endpoint '{}' --json
Shortcut
kosmo integrations:rootly rootly_delete_webhooks_endpoint '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

rootly.rootly_list_alert_events 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_alert_events --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_alert_event 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_alert_event --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_alert_event 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_alert_event --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_alert_event 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_alert_event --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_alert_event 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_alert_event --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_alert_fields 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_alert_fields --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_alert_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_alert_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_alert_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_alert_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_alert_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_alert_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_alert_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_alert_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_alert_groups 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_alert_groups --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_alert_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_alert_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_alert_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_alert_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_alert_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_alert_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_alert_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_alert_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_alert_routes 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_alert_routes --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_alert_route 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_alert_route --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_alert_route 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_alert_route --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_alert_route 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_alert_route --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_patch_alert_route 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_patch_alert_route --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_alert_route 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_alert_route --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_alert_routing_rules 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_alert_routing_rules --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_alert_routing_rule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_alert_routing_rule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_alert_routing_rule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_alert_routing_rule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_alert_routing_rule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_alert_routing_rule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_alert_routing_rule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_alert_routing_rule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_alert_urgencies 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_alert_urgencies --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_alert_urgency 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_alert_urgency --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_alert_urgency 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_alert_urgency --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_alert_urgency 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_alert_urgency --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_alert_urgency 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_alert_urgency --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_alerts_sources 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_alerts_sources --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_alerts_source 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_alerts_source --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_alerts_source 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_alerts_source --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_alerts_source 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_alerts_source --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_alerts_source 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_alerts_source --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_alerts 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_alerts --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_attach_alert 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_attach_alert --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_alerts 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_alerts --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_alert 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_alert --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_alert 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_alert --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_alert 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_alert --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_acknowledge_alert 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_acknowledge_alert --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_resolve_alert 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_resolve_alert --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_snooze_alert 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_snooze_alert --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_escalate_alert 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_escalate_alert --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_api_keys 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_api_keys --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_api_key 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_api_key --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_api_key 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_api_key --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_api_key 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_api_key --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_api_key 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_api_key --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_rotate_api_key 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_rotate_api_key --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_audits 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_audits --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_authorizations 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_authorizations --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_authorization 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_authorization --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_authorization 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_authorization --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_authorization 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_authorization --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_authorization 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_authorization --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_catalog_checklist_templates 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_catalog_checklist_templates --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_catalog_checklist_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_catalog_checklist_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_trigger_catalog_checklist_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_trigger_catalog_checklist_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_catalog_checklist_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_catalog_checklist_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_catalog_checklist_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_catalog_checklist_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_catalog_checklist_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_catalog_checklist_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_catalog_entities 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_catalog_entities --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_catalog_entity 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_catalog_entity --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_catalog_entity 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_catalog_entity --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_catalog_entity 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_catalog_entity --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_catalog_entity 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_catalog_entity --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_catalog_entity_checklists 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_catalog_entity_checklists --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_catalog_entity_checklist 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_catalog_entity_checklist --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_catalog_entity_properties 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_catalog_entity_properties --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_catalog_entity_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_catalog_entity_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_catalog_entity_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_catalog_entity_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_catalog_entity_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_catalog_entity_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_catalog_entity_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_catalog_entity_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_catalog_properties 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_catalog_properties --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_catalog_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_catalog_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_catalog_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_catalog_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_catalog_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_catalog_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_catalog_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_catalog_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_catalogs 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_catalogs --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_catalog 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_catalog --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_catalog 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_catalog --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_catalog 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_catalog --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_catalog 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_catalog --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_causes 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_causes --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_cause 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_cause --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_cause 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_cause --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_cause 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_cause --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_cause 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_cause --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_cause_catalog_properties 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_cause_catalog_properties --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_cause_catalog_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_cause_catalog_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_communications_groups 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_communications_groups --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_communications_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_communications_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_communications_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_communications_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_communications_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_communications_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_communications_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_communications_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_communications_stages 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_communications_stages --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_communications_stage 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_communications_stage --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_communications_stage 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_communications_stage --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_communications_stage 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_communications_stage --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_communications_stage 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_communications_stage --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_communications_templates 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_communications_templates --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_communications_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_communications_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_communications_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_communications_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_communications_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_communications_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_communications_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_communications_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_communications_types 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_communications_types --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_communications_type 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_communications_type --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_communications_type 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_communications_type --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_communications_type 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_communications_type --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_communications_type 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_communications_type --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_custom_field_options 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_custom_field_options --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_custom_field_option 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_custom_field_option --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_custom_field_option 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_custom_field_option --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_custom_field_option 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_custom_field_option --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_custom_field_option 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_custom_field_option --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_custom_fields 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_custom_fields --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_custom_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_custom_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_custom_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_custom_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_custom_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_custom_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_custom_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_custom_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_custom_forms 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_custom_forms --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_custom_form 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_custom_form --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_custom_form 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_custom_form --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_custom_form 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_custom_form --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_custom_form 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_custom_form --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_dashboard_panels 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_dashboard_panels --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_dashboard_panel 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_dashboard_panel --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_duplicate_dashboard_panel 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_duplicate_dashboard_panel --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_dashboard_panel 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_dashboard_panel --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_dashboard_panel 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_dashboard_panel --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_dashboard_panel 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_dashboard_panel --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_dashboards 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_dashboards --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_dashboard 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_dashboard --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_duplicate_dashboard 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_duplicate_dashboard --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_set_default_dashboard 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_set_default_dashboard --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_dashboard 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_dashboard --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_dashboard 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_dashboard --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_dashboard 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_dashboard --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_edge_connector_actions 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_edge_connector_actions --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_edge_connector_action 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_edge_connector_action --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_edge_connector_action 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_edge_connector_action --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_edge_connector_action 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_edge_connector_action --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_edge_connector_action 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_edge_connector_action --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_edge_connectors 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_edge_connectors --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_edge_connector 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_edge_connector --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_edge_connector 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_edge_connector --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_edge_connector 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_edge_connector --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_edge_connector 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_edge_connector --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_environments 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_environments --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_environment 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_environment --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_environment 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_environment --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_environment 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_environment --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_environment 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_environment --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_environment_catalog_properties 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_environment_catalog_properties --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_environment_catalog_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_environment_catalog_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_escalation_policies 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_escalation_policies --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_escalation_policy 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_escalation_policy --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_escalation_policy 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_escalation_policy --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_escalation_policy 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_escalation_policy --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_escalation_policy 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_escalation_policy --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_escalation_levels 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_escalation_levels --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_escalation_level 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_escalation_level --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_escalation_levels_paths 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_escalation_levels_paths --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_escalation_level_paths 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_escalation_level_paths --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_escalation_level 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_escalation_level --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_escalation_level 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_escalation_level --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_escalation_level 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_escalation_level --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_escalation_paths 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_escalation_paths --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_escalation_path 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_escalation_path --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_escalation_path 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_escalation_path --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_escalation_path 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_escalation_path --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_escalation_path 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_escalation_path --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_form_field_options 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_form_field_options --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_form_field_option 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_form_field_option --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_form_field_option 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_form_field_option --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_form_field_option 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_form_field_option --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_form_field_option 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_form_field_option --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_form_field_placement_conditions 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_form_field_placement_conditions --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_form_field_placement_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_form_field_placement_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_form_field_placement_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_form_field_placement_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_form_field_placement_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_form_field_placement_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_form_field_placement_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_form_field_placement_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_form_field_placements 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_form_field_placements --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_form_field_placement 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_form_field_placement --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_form_field_placement 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_form_field_placement --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_form_field_placement 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_form_field_placement --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_form_field_placement 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_form_field_placement --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_form_field_positions 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_form_field_positions --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_form_field_position 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_form_field_position --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_form_field_position 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_form_field_position --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_form_field_position 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_form_field_position --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_form_field_position 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_form_field_position --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_form_fields 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_form_fields --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_form_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_form_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_form_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_form_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_form_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_form_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_form_field 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_form_field --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_form_set_conditions 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_form_set_conditions --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_form_set_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_form_set_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_form_set_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_form_set_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_form_set_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_form_set_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_form_set_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_form_set_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_form_sets 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_form_sets --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_form_set 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_form_set --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_form_set 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_form_set --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_form_set 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_form_set --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_form_set 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_form_set --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_functionalities 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_functionalities --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_functionality 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_functionality --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_functionality 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_functionality --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_functionality 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_functionality --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_functionality 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_functionality --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_functionality_incidents_chart 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_functionality_incidents_chart --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_functionality_uptime_chart 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_functionality_uptime_chart --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_functionality_catalog_properties 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_functionality_catalog_properties --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_functionality_catalog_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_functionality_catalog_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_workflow_tasks 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_workflow_tasks --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_workflow_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_workflow_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_workflow_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_workflow_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_workflow_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_workflow_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_workflow_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_workflow_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_workflow_custom_field_selections 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_workflow_custom_field_selections --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_workflow_custom_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_workflow_custom_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_workflow_custom_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_workflow_custom_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_workflow_custom_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_workflow_custom_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_workflow_custom_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_workflow_custom_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_workflow_form_field_conditions 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_workflow_form_field_conditions --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_workflow_form_field_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_workflow_form_field_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_workflow_form_field_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_workflow_form_field_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_workflow_form_field_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_workflow_form_field_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_workflow_form_field_condition 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_workflow_form_field_condition --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_workflow_groups 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_workflow_groups --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_workflow_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_workflow_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_workflow_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_workflow_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_workflow_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_workflow_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_workflow_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_workflow_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_workflow_runs 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_workflow_runs --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_workflow_run 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_workflow_run --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_workflows 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_workflows --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_workflow 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_workflow --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_workflow 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_workflow --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_workflow 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_workflow --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_workflow 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_workflow --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_ping_heartbeat 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_ping_heartbeat --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_heartbeats 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_heartbeats --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_heartbeat 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_heartbeat --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_heartbeat 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_heartbeat --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_heartbeat 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_heartbeat --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_heartbeat 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_heartbeat --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_action_items 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_action_items --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_action_item 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_action_item --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_action_items 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_action_items --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_action_item 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_action_item --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_action_item 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_action_item --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_all_incident_action_items 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_all_incident_action_items --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_custom_field_selections 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_custom_field_selections --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_custom_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_custom_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_custom_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_custom_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_custom_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_custom_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_custom_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_custom_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_event_functionalities 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_event_functionalities --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_event_functionality 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_event_functionality --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_event_functionalities 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_event_functionalities --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_event_functionality 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_event_functionality --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_event_functionality 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_event_functionality --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_event_services 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_event_services --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_event_service 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_event_service --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_event_services 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_event_services --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_event_service 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_event_service --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_event_service 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_event_service --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_events 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_events --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_event 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_event --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_events 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_events --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_event 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_event --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_event 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_event --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_feedbacks 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_feedbacks --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_feedback 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_feedback --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_feedbacks 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_feedbacks --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_feedback 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_feedback --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_form_field_selections 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_form_field_selections --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_form_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_form_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_form_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_form_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_form_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_form_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_form_field_selection 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_form_field_selection --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_permission_set_booleans 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_permission_set_booleans --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_permission_set_boolean 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_permission_set_boolean --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_permission_set_boolean 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_permission_set_boolean --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_permission_set_boolean 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_permission_set_boolean --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_permission_set_boolean 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_permission_set_boolean --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_permission_set_resources 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_permission_set_resources --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_permission_set_resource 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_permission_set_resource --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_permission_set_resource 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_permission_set_resource --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_permission_set_resource 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_permission_set_resource --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_permission_set_resource 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_permission_set_resource --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_permission_sets 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_permission_sets --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_permission_set 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_permission_set --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_permission_set 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_permission_set --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_permission_set 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_permission_set --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_permission_set 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_permission_set --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_post_mortems 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_post_mortems --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_postmortem 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_postmortem --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_postmortem 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_postmortem --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_retrospective_step 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_retrospective_step --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_retrospective_step 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_retrospective_step --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_role_tasks 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_role_tasks --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_role_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_role_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_role_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_role_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_role_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_role_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_role_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_role_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_roles 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_roles --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_status_pages 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_status_pages --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_status_page 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_status_page --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_status_pages 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_status_pages --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_status_page 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_status_page --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_status_page 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_status_page --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_sub_statuses 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_sub_statuses --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_sub_status 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_sub_status --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_sub_status 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_sub_status --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_sub_status 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_sub_status --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_sub_status 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_sub_status --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_types 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_types --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_type 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_type --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident_type 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident_type --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident_type 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident_type --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident_type 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident_type --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incident_type_catalog_properties 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incident_type_catalog_properties --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident_type_catalog_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident_type_catalog_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_incidents 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_incidents --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_mitigate_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_mitigate_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_resolve_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_resolve_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_cancel_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_cancel_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_triage_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_triage_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_restart_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_restart_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_mark_as_duplicate_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_mark_as_duplicate_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_detach_from_parent_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_detach_from_parent_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_unmark_as_duplicate_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_unmark_as_duplicate_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_add_subscribers_to_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_add_subscribers_to_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_remove_subscribers_to_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_remove_subscribers_to_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_assign_user_to_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_assign_user_to_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_remove_assigned_user_from_incident 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_remove_assigned_user_from_incident --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_ip_ranges 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_ip_ranges --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_live_call_routers 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_live_call_routers --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_live_call_router 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_live_call_router --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_generate_phone_number_live_call_router 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_generate_phone_number_live_call_router --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_live_call_router 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_live_call_router --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_live_call_router 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_live_call_router --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_live_call_router 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_live_call_router --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_meeting_recordings 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_meeting_recordings --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_meeting_recording 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_meeting_recording --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_meeting_recording 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_meeting_recording --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_meeting_recording 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_meeting_recording --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_meeting_recording_video 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_meeting_recording_video --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_pause_meeting_recording 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_pause_meeting_recording --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_resume_meeting_recording 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_resume_meeting_recording --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_stop_meeting_recording 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_stop_meeting_recording --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_leave_meeting_recording 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_leave_meeting_recording --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_on_call_pay_reports 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_on_call_pay_reports --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_on_call_pay_report 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_on_call_pay_report --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_on_call_pay_report 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_on_call_pay_report --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_on_call_pay_report 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_on_call_pay_report --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_regenerate_on_call_pay_report 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_regenerate_on_call_pay_report --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_on_call_roles 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_on_call_roles --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_on_call_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_on_call_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_on_call_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_on_call_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_on_call_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_on_call_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_on_call_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_on_call_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_on_call_shadows 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_on_call_shadows --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_on_call_shadow 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_on_call_shadow --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_on_call_shadow 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_on_call_shadow --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_on_call_shadow 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_on_call_shadow --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_on_call_shadow 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_on_call_shadow --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_oncalls 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_oncalls --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_override_shifts 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_override_shifts --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_override_shift 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_override_shift --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_override_shift 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_override_shift --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_override_shift 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_override_shift --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_override_shift 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_override_shift --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_playbook_tasks 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_playbook_tasks --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_playbook_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_playbook_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_playbook_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_playbook_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_playbook_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_playbook_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_playbook_task 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_playbook_task --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_playbooks 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_playbooks --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_playbook 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_playbook --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_playbook 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_playbook --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_playbook 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_playbook --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_playbook 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_playbook --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_postmortem_templates 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_postmortem_templates --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_postmortem_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_postmortem_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_postmortem_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_postmortem_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_postmortem_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_postmortem_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_postmortem_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_postmortem_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_pulses 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_pulses --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_pulse 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_pulse --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_pulse 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_pulse --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_pulse 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_pulse --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_retrospective_configurations 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_retrospective_configurations --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_retrospective_configuration 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_retrospective_configuration --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_retrospective_configuration 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_retrospective_configuration --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_retrospective_process_group_steps 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_retrospective_process_group_steps --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_retrospective_process_group_step 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_retrospective_process_group_step --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_retrospective_process_group_step 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_retrospective_process_group_step --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_retrospective_process_group_step 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_retrospective_process_group_step --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_retrospective_process_group_step 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_retrospective_process_group_step --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_retrospective_process_groups 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_retrospective_process_groups --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_retrospective_process_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_retrospective_process_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_retrospective_process_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_retrospective_process_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_retrospective_process_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_retrospective_process_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_retrospective_process_group 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_retrospective_process_group --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_retrospective_processes 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_retrospective_processes --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_retrospective_process 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_retrospective_process --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_retrospective_process 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_retrospective_process --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_retrospective_process 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_retrospective_process --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_retrospective_process 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_retrospective_process --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_retrospective_steps 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_retrospective_steps --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_retrospective_step 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_retrospective_step --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_retrospective_step 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_retrospective_step --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_retrospective_step 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_retrospective_step --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_retrospective_step 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_retrospective_step --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_roles 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_roles --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_role 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_role --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_schedule_rotation_active_days 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_schedule_rotation_active_days --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_schedule_rotation_active_day 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_schedule_rotation_active_day --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_schedule_rotation_active_day 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_schedule_rotation_active_day --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_schedule_rotation_active_day 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_schedule_rotation_active_day --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_schedule_rotation_active_day 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_schedule_rotation_active_day --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_schedule_rotation_users 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_schedule_rotation_users --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_schedule_rotation_user 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_schedule_rotation_user --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_schedule_rotation_user 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_schedule_rotation_user --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_schedule_rotation_user 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_schedule_rotation_user --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_schedule_rotation_user 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_schedule_rotation_user --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_schedule_rotations 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_schedule_rotations --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_schedule_rotation 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_schedule_rotation --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_schedule_rotation 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_schedule_rotation --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_schedule_rotation 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_schedule_rotation --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_schedule_rotation 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_schedule_rotation --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_schedules 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_schedules --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_schedule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_schedule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_schedule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_schedule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_schedule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_schedule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_schedule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_schedule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_schedule_shifts 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_schedule_shifts --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_secrets 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_secrets --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_secret 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_secret --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_secret 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_secret --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_secret 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_secret --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_secret 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_secret --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_services 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_services --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_service 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_service --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_service 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_service --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_service 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_service --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_service 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_service --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_service_incidents_chart 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_service_incidents_chart --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_service_uptime_chart 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_service_uptime_chart --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_service_catalog_properties 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_service_catalog_properties --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_service_catalog_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_service_catalog_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_severities 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_severities --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_severity 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_severity --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_severity 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_severity --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_severity 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_severity --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_severity 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_severity --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_shifts 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_shifts --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_slas 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_slas --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_sla 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_sla --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_sla 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_sla --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_sla 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_sla --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_sla 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_sla --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_status_page_templates 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_status_page_templates --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_status_page_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_status_page_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_status_page_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_status_page_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_status_page_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_status_page_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_status_page_template 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_status_page_template --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_status_pages 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_status_pages --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_status_page 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_status_page --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_status_page 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_status_page --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_status_page 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_status_page --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_status_page 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_status_page --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_statuses 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_statuses --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_status 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_status --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_sub_statuses 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_sub_statuses --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_sub_status 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_sub_status --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_sub_status 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_sub_status --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_sub_status 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_sub_status --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_sub_status 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_sub_status --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_teams 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_teams --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_team 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_team --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_team 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_team --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_team 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_team --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_team 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_team --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_team_incidents_chart 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_team_incidents_chart --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_group_catalog_properties 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_group_catalog_properties --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_group_catalog_property 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_group_catalog_property --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_user_email_addresses 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_user_email_addresses --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_user_email_address 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_user_email_address --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_show_user_email_address 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_show_user_email_address --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_user_email_address 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_user_email_address --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_user_email_address 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_user_email_address --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_verify_user_email_address 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_verify_user_email_address --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_resend_user_email_address_verification 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_resend_user_email_address_verification --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_user_notification_rules 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_user_notification_rules --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_user_notification_rule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_user_notification_rule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_user_notification_rule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_user_notification_rule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_user_notification_rule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_user_notification_rule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_user_notification_rule 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_user_notification_rule --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_user_phone_numbers 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_user_phone_numbers --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_user_phone_number 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_user_phone_number --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_show_user_phone_number 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_show_user_phone_number --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_user_phone_number 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_user_phone_number --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_user_phone_number 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_user_phone_number --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_users 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_users --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_current_user 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_current_user --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_user 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_user --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_user 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_user --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_user 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_user --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_webhooks_deliveries 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_webhooks_deliveries --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_deliver_webhooks_delivery 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_deliver_webhooks_delivery --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_webhooks_delivery 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_webhooks_delivery --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_list_webhooks_endpoints 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_list_webhooks_endpoints --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_create_webhooks_endpoint 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_create_webhooks_endpoint --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_get_webhooks_endpoint 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_get_webhooks_endpoint --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_update_webhooks_endpoint 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_update_webhooks_endpoint --json
ParameterTypeRequiredDescription
No parameters.
rootly.rootly_delete_webhooks_endpoint 0 parameters
Schema command
kosmo integrations:schema rootly.rootly_delete_webhooks_endpoint --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.