productivity
Rootly Lua API for KosmoKrator Agents
Agent-facing Lua documentation and function reference for the Rootly KosmoKrator integration.Lua Namespace
Agents call this integration through app.integrations.rootly.*.
Use lua_read_doc("integrations.rootly") inside KosmoKrator to discover the same reference at runtime.
Call Lua from the Headless CLI
Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic
Rootly workflow without starting an interactive agent session.
kosmo integrations:lua --eval 'dump(app.integrations.rootly.list_alert_events({}))' --json kosmo integrations:lua --eval 'print(docs.read("rootly"))' --json
kosmo integrations:lua --eval 'print(docs.read("rootly.list_alert_events"))' --json Workflow file
Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.
local rootly = app.integrations.rootly
local result = rootly.list_alert_events({})
dump(result) kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json integrations:lua exposes app.integrations.rootly, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.rootly.default.* or app.integrations.rootly.work.* when you configured named credential accounts.
MCP-only Lua
If the script only needs configured MCP servers and does not need Rootly, use the narrower mcp:lua command.
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json Agent-Facing Lua Docs
This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.
Rootly Lua API
Generated from Rootly’s official OpenAPI document at https://rootly-heroku.s3.amazonaws.com/swagger/v1/swagger.json. The namespace is app.integrations.rootly.
This package exposes 536 endpoint-specific tools: 219 read tools and 317 write tools. Use a Rootly API token with permissions for the endpoints you call.
Usage
local incidents = app.integrations.rootly.list_incidents({
page_number = 1,
page_size = 10
})
local incident = app.integrations.rootly.get_incident({ id = "00000000-0000-0000-0000-000000000000" })
Request Bodies
Tools that create, update, patch, or delete resources may accept a body table. Rootly follows JSON:API; body tables should match the upstream schema and are sent with application/vnd.api+json. Path and query arguments use snake_case names and are mapped back to the official parameter names, including JSON:API pagination keys like page[number].
Example Tools
| rootly_list_alert_events | read | GET /v1/alerts/{alert_id}/events |
| rootly_create_alert_event | write | POST /v1/alerts/{alert_id}/events |
| rootly_get_alert_event | read | GET /v1/alert_events/{id} |
| rootly_update_alert_event | write | PATCH /v1/alert_events/{id} |
| rootly_delete_alert_event | write | DELETE /v1/alert_events/{id} |
| rootly_list_alert_fields | read | GET /v1/alert_fields |
| rootly_create_alert_field | write | POST /v1/alert_fields |
| rootly_get_alert_field | read | GET /v1/alert_fields/{id} |
| rootly_update_alert_field | write | PUT /v1/alert_fields/{id} |
| rootly_delete_alert_field | write | DELETE /v1/alert_fields/{id} |
| rootly_list_alert_groups | read | GET /v1/alert_groups |
| rootly_create_alert_group | write | POST /v1/alert_groups |
| rootly_get_alert_group | read | GET /v1/alert_groups/{id} |
| rootly_update_alert_group | write | PATCH /v1/alert_groups/{id} |
| rootly_delete_alert_group | write | DELETE /v1/alert_groups/{id} |
| rootly_list_alert_routes | read | GET /v1/alert_routes |
| rootly_create_alert_route | write | POST /v1/alert_routes |
| rootly_get_alert_route | read | GET /v1/alert_routes/{id} |
| rootly_update_alert_route | write | PUT /v1/alert_routes/{id} |
| rootly_patch_alert_route | write | PATCH /v1/alert_routes/{id} |
| rootly_delete_alert_route | write | DELETE /v1/alert_routes/{id} |
| rootly_list_alert_routing_rules | read | GET /v1/alert_routing_rules |
| rootly_create_alert_routing_rule | write | POST /v1/alert_routing_rules |
| rootly_get_alert_routing_rule | read | GET /v1/alert_routing_rules/{id} |
| rootly_update_alert_routing_rule | write | PUT /v1/alert_routing_rules/{id} |
| rootly_delete_alert_routing_rule | write | DELETE /v1/alert_routing_rules/{id} |
| rootly_list_alert_urgencies | read | GET /v1/alert_urgencies |
| rootly_create_alert_urgency | write | POST /v1/alert_urgencies |
| rootly_get_alert_urgency | read | GET /v1/alert_urgencies/{id} |
| rootly_update_alert_urgency | write | PUT /v1/alert_urgencies/{id} |
| rootly_delete_alert_urgency | write | DELETE /v1/alert_urgencies/{id} |
| rootly_list_alerts_sources | read | GET /v1/alert_sources |
Notes
- The base URL defaults to
https://api.rootly.com. - Authentication uses
Authorization: Bearer <api_token>. - Returned data is the parsed JSON response from Rootly, preserving JSON:API
data,links, andmetashapes.
Raw agent markdown
# Rootly Lua API
Generated from Rootly's official OpenAPI document at `https://rootly-heroku.s3.amazonaws.com/swagger/v1/swagger.json`. The namespace is `app.integrations.rootly`.
This package exposes 536 endpoint-specific tools: 219 read tools and 317 write tools. Use a Rootly API token with permissions for the endpoints you call.
## Usage
```lua
local incidents = app.integrations.rootly.list_incidents({
page_number = 1,
page_size = 10
})
local incident = app.integrations.rootly.get_incident({ id = "00000000-0000-0000-0000-000000000000" })
```
## Request Bodies
Tools that create, update, patch, or delete resources may accept a `body` table. Rootly follows JSON:API; body tables should match the upstream schema and are sent with `application/vnd.api+json`. Path and query arguments use snake_case names and are mapped back to the official parameter names, including JSON:API pagination keys like `page[number]`.
## Example Tools
| `rootly_list_alert_events` | read | GET `/v1/alerts/{alert_id}/events` |
| `rootly_create_alert_event` | write | POST `/v1/alerts/{alert_id}/events` |
| `rootly_get_alert_event` | read | GET `/v1/alert_events/{id}` |
| `rootly_update_alert_event` | write | PATCH `/v1/alert_events/{id}` |
| `rootly_delete_alert_event` | write | DELETE `/v1/alert_events/{id}` |
| `rootly_list_alert_fields` | read | GET `/v1/alert_fields` |
| `rootly_create_alert_field` | write | POST `/v1/alert_fields` |
| `rootly_get_alert_field` | read | GET `/v1/alert_fields/{id}` |
| `rootly_update_alert_field` | write | PUT `/v1/alert_fields/{id}` |
| `rootly_delete_alert_field` | write | DELETE `/v1/alert_fields/{id}` |
| `rootly_list_alert_groups` | read | GET `/v1/alert_groups` |
| `rootly_create_alert_group` | write | POST `/v1/alert_groups` |
| `rootly_get_alert_group` | read | GET `/v1/alert_groups/{id}` |
| `rootly_update_alert_group` | write | PATCH `/v1/alert_groups/{id}` |
| `rootly_delete_alert_group` | write | DELETE `/v1/alert_groups/{id}` |
| `rootly_list_alert_routes` | read | GET `/v1/alert_routes` |
| `rootly_create_alert_route` | write | POST `/v1/alert_routes` |
| `rootly_get_alert_route` | read | GET `/v1/alert_routes/{id}` |
| `rootly_update_alert_route` | write | PUT `/v1/alert_routes/{id}` |
| `rootly_patch_alert_route` | write | PATCH `/v1/alert_routes/{id}` |
| `rootly_delete_alert_route` | write | DELETE `/v1/alert_routes/{id}` |
| `rootly_list_alert_routing_rules` | read | GET `/v1/alert_routing_rules` |
| `rootly_create_alert_routing_rule` | write | POST `/v1/alert_routing_rules` |
| `rootly_get_alert_routing_rule` | read | GET `/v1/alert_routing_rules/{id}` |
| `rootly_update_alert_routing_rule` | write | PUT `/v1/alert_routing_rules/{id}` |
| `rootly_delete_alert_routing_rule` | write | DELETE `/v1/alert_routing_rules/{id}` |
| `rootly_list_alert_urgencies` | read | GET `/v1/alert_urgencies` |
| `rootly_create_alert_urgency` | write | POST `/v1/alert_urgencies` |
| `rootly_get_alert_urgency` | read | GET `/v1/alert_urgencies/{id}` |
| `rootly_update_alert_urgency` | write | PUT `/v1/alert_urgencies/{id}` |
| `rootly_delete_alert_urgency` | write | DELETE `/v1/alert_urgencies/{id}` |
| `rootly_list_alerts_sources` | read | GET `/v1/alert_sources` |
## Notes
- The base URL defaults to `https://api.rootly.com`.
- Authentication uses `Authorization: Bearer <api_token>`.
- Returned data is the parsed JSON response from Rootly, preserving JSON:API `data`, `links`, and `meta` shapes. local result = app.integrations.rootly.list_alert_events({})
print(result) Functions
list_alert_events Read
List alert events Official Rootly endpoint: GET /v1/alerts/{alert_id}/events List alert_events
- Lua path
app.integrations.rootly.list_alert_events- Full name
rootly.rootly_list_alert_events
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_alert_event Write
Create alert event Official Rootly endpoint: POST /v1/alerts/{alert_id}/events Creates a new alert event
- Lua path
app.integrations.rootly.create_alert_event- Full name
rootly.rootly_create_alert_event
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_alert_event Read
Retrieve alert event Official Rootly endpoint: GET /v1/alert_events/{id} Retrieves a specific alert_event by id
- Lua path
app.integrations.rootly.retrieve_alert_event- Full name
rootly.rootly_get_alert_event
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_alert_event Write
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
- Lua path
app.integrations.rootly.update_alert_event- Full name
rootly.rootly_update_alert_event
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_alert_event Write
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
- Lua path
app.integrations.rootly.delete_alert_event- Full name
rootly.rootly_delete_alert_event
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_alert_fields Read
List alert fields Official Rootly endpoint: GET /v1/alert_fields List alert fields
- Lua path
app.integrations.rootly.list_alert_fields- Full name
rootly.rootly_list_alert_fields
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_alert_field Write
Creates an alert field Official Rootly endpoint: POST /v1/alert_fields Creates a new alert field from provided data
- Lua path
app.integrations.rootly.creates_alert_field- Full name
rootly.rootly_create_alert_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_alert_field Read
Retrieves an alert field Official Rootly endpoint: GET /v1/alert_fields/{id} Retrieves a specific alert field by id
- Lua path
app.integrations.rootly.retrieves_alert_field- Full name
rootly.rootly_get_alert_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_alert_field Write
Update an alert field Official Rootly endpoint: PUT /v1/alert_fields/{id} Update a specific alert field by id
- Lua path
app.integrations.rootly.update_alert_field- Full name
rootly.rootly_update_alert_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_alert_field Write
Delete an alert field Official Rootly endpoint: DELETE /v1/alert_fields/{id} Delete a specific alert field by id
- Lua path
app.integrations.rootly.delete_alert_field- Full name
rootly.rootly_delete_alert_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_alert_groups Read
List alert groups Official Rootly endpoint: GET /v1/alert_groups List alert groups
- Lua path
app.integrations.rootly.list_alert_groups- Full name
rootly.rootly_list_alert_groups
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_alert_group Write
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
- Lua path
app.integrations.rootly.creates_alert_group- Full name
rootly.rootly_create_alert_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_alert_group Read
Retrieves an alert group Official Rootly endpoint: GET /v1/alert_groups/{id} Retrieves a specific alert group by id
- Lua path
app.integrations.rootly.retrieves_alert_group- Full name
rootly.rootly_get_alert_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_alert_group Write
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
- Lua path
app.integrations.rootly.update_alert_group- Full name
rootly.rootly_update_alert_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_alert_group Write
Delete an alert group Official Rootly endpoint: DELETE /v1/alert_groups/{id} Delete a specific alert group by id
- Lua path
app.integrations.rootly.delete_alert_group- Full name
rootly.rootly_delete_alert_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_alert_routes Read
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
- Lua path
app.integrations.rootly.list_alert_routes- Full name
rootly.rootly_list_alert_routes
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_alert_route Write
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,
- Lua path
app.integrations.rootly.creates_alert_route- Full name
rootly.rootly_create_alert_route
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_alert_route Read
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
- Lua path
app.integrations.rootly.get_alert_route- Full name
rootly.rootly_get_alert_route
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_alert_route Write
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
- Lua path
app.integrations.rootly.update_alert_route- Full name
rootly.rootly_update_alert_route
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_alert_route Write
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
- Lua path
app.integrations.rootly.update_alert_route- Full name
rootly.rootly_patch_alert_route
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_alert_route Write
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
- Lua path
app.integrations.rootly.delete_alert_route- Full name
rootly.rootly_delete_alert_route
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_alert_routing_rules Read
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
- Lua path
app.integrations.rootly.list_alert_routing_rules- Full name
rootly.rootly_list_alert_routing_rules
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_alert_routing_rule Write
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
- Lua path
app.integrations.rootly.creates_alert_routing_rule- Full name
rootly.rootly_create_alert_routing_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_alert_routing_rule Read
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
- Lua path
app.integrations.rootly.retrieves_alert_routing_rule- Full name
rootly.rootly_get_alert_routing_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_alert_routing_rule Write
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
- Lua path
app.integrations.rootly.update_alert_routing_rule- Full name
rootly.rootly_update_alert_routing_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_alert_routing_rule Write
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
- Lua path
app.integrations.rootly.delete_alert_routing_rule- Full name
rootly.rootly_delete_alert_routing_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_alert_urgencies Read
List alert urgencies Official Rootly endpoint: GET /v1/alert_urgencies List alert urgencies
- Lua path
app.integrations.rootly.list_alert_urgencies- Full name
rootly.rootly_list_alert_urgencies
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_alert_urgency Write
Creates an alert urgency Official Rootly endpoint: POST /v1/alert_urgencies Creates a new alert urgency from provided data
- Lua path
app.integrations.rootly.creates_alert_urgency- Full name
rootly.rootly_create_alert_urgency
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_alert_urgency Read
Retrieves an alert urgency Official Rootly endpoint: GET /v1/alert_urgencies/{id} Retrieves a specific alert urgency by id
- Lua path
app.integrations.rootly.retrieves_alert_urgency- Full name
rootly.rootly_get_alert_urgency
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_alert_urgency Write
Update an alert urgency Official Rootly endpoint: PUT /v1/alert_urgencies/{id} Update a specific alert urgency by id
- Lua path
app.integrations.rootly.update_alert_urgency- Full name
rootly.rootly_update_alert_urgency
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_alert_urgency Write
Delete an alert urgency Official Rootly endpoint: DELETE /v1/alert_urgencies/{id} Delete a specific alert urgency by id
- Lua path
app.integrations.rootly.delete_alert_urgency- Full name
rootly.rootly_delete_alert_urgency
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_alert_sources Read
List alert sources Official Rootly endpoint: GET /v1/alert_sources List alert sources
- Lua path
app.integrations.rootly.list_alert_sources- Full name
rootly.rootly_list_alerts_sources
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_alert_source Write
Creates an alert source Official Rootly endpoint: POST /v1/alert_sources Creates a new alert source from provided data
- Lua path
app.integrations.rootly.creates_alert_source- Full name
rootly.rootly_create_alerts_source
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_alert_source Read
Retrieves an alert source Official Rootly endpoint: GET /v1/alert_sources/{id} Retrieves a specific alert source by id
- Lua path
app.integrations.rootly.retrieves_alert_source- Full name
rootly.rootly_get_alerts_source
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_alert_source Write
Update an alert source Official Rootly endpoint: PUT /v1/alert_sources/{id} Update a specific alert source by id
- Lua path
app.integrations.rootly.update_alert_source- Full name
rootly.rootly_update_alerts_source
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_alert_source Write
Delete an alert source Official Rootly endpoint: DELETE /v1/alert_sources/{id} Delete a specific alert source by id
- Lua path
app.integrations.rootly.delete_alert_source- Full name
rootly.rootly_delete_alerts_source
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_alerts Read
List Incident alerts Official Rootly endpoint: GET /v1/incidents/{incident_id}/alerts List incident alerts
- Lua path
app.integrations.rootly.list_incident_alerts- Full name
rootly.rootly_list_incident_alerts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
attach_alerts_incident Write
Attach alerts to an incident Official Rootly endpoint: POST /v1/incidents/{incident_id}/alerts Attach alerts to an incident from provided data
- Lua path
app.integrations.rootly.attach_alerts_incident- Full name
rootly.rootly_attach_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_alerts Read
List alerts Official Rootly endpoint: GET /v1/alerts List alerts
- Lua path
app.integrations.rootly.list_alerts- Full name
rootly.rootly_list_alerts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_alert Write
Creates an alert Official Rootly endpoint: POST /v1/alerts Creates a new alert from provided data
- Lua path
app.integrations.rootly.creates_alert- Full name
rootly.rootly_create_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_alert Read
Retrieves an alert Official Rootly endpoint: GET /v1/alerts/{id} Retrieves a specific alert by id
- Lua path
app.integrations.rootly.retrieves_alert- Full name
rootly.rootly_get_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_alert Write
Update alert Official Rootly endpoint: PATCH /v1/alerts/{id} Updates an alert
- Lua path
app.integrations.rootly.update_alert- Full name
rootly.rootly_update_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
acknowledges_alert Write
Acknowledges an alert Official Rootly endpoint: POST /v1/alerts/{id}/acknowledge Acknowledges a specific alert by id
- Lua path
app.integrations.rootly.acknowledges_alert- Full name
rootly.rootly_acknowledge_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
resolves_alert Write
Resolves an alert Official Rootly endpoint: POST /v1/alerts/{id}/resolve Resolves a specific alert by id
- Lua path
app.integrations.rootly.resolves_alert- Full name
rootly.rootly_resolve_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
snoozes_alert Write
Snoozes an alert Official Rootly endpoint: POST /v1/alerts/{id}/snooze Snoozes a specific alert by id, extending the acknowledgment timeout
- Lua path
app.integrations.rootly.snoozes_alert- Full name
rootly.rootly_snooze_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
escalates_alert Write
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
- Lua path
app.integrations.rootly.escalates_alert- Full name
rootly.rootly_escalate_alert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_api_keys Read
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
- Lua path
app.integrations.rootly.list_api_keys- Full name
rootly.rootly_list_api_keys
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_api_key Write
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
- Lua path
app.integrations.rootly.creates_api_key- Full name
rootly.rootly_create_api_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_api_key Read
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
- Lua path
app.integrations.rootly.retrieves_api_key- Full name
rootly.rootly_get_api_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_api_key Write
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
- Lua path
app.integrations.rootly.update_api_key- Full name
rootly.rootly_update_api_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
revoke_api_key Write
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
- Lua path
app.integrations.rootly.revoke_api_key- Full name
rootly.rootly_delete_api_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
rotate_api_key Write
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
- Lua path
app.integrations.rootly.rotate_api_key- Full name
rootly.rootly_rotate_api_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_audits Read
List audits Official Rootly endpoint: GET /v1/audits List audits
- Lua path
app.integrations.rootly.list_audits- Full name
rootly.rootly_list_audits
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_authorizations Read
List authorizations Official Rootly endpoint: GET /v1/authorizations List authorizations
- Lua path
app.integrations.rootly.list_authorizations- Full name
rootly.rootly_list_authorizations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_authorization Write
Creates an authorization Official Rootly endpoint: POST /v1/authorizations Creates a new authorization from provided data
- Lua path
app.integrations.rootly.creates_authorization- Full name
rootly.rootly_create_authorization
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_authorization Read
Retrieves an authorization Official Rootly endpoint: GET /v1/authorizations/{id} Retrieves a specific authorization by id
- Lua path
app.integrations.rootly.retrieves_authorization- Full name
rootly.rootly_get_authorization
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_authorization Write
Update an authorization Official Rootly endpoint: PUT /v1/authorizations/{id} Update a specific authorization by id
- Lua path
app.integrations.rootly.update_authorization- Full name
rootly.rootly_update_authorization
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_authorization Write
Delete an authorization Official Rootly endpoint: DELETE /v1/authorizations/{id} Delete a specific authorization by id
- Lua path
app.integrations.rootly.delete_authorization- Full name
rootly.rootly_delete_authorization
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_checklist_templates Read
List catalog checklist templates Official Rootly endpoint: GET /v1/catalog_checklist_templates List catalog checklist templates
- Lua path
app.integrations.rootly.list_catalog_checklist_templates- Full name
rootly.rootly_list_catalog_checklist_templates
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog_checklist_template Write
Creates a catalog checklist template Official Rootly endpoint: POST /v1/catalog_checklist_templates Creates a new catalog checklist template
- Lua path
app.integrations.rootly.creates_catalog_checklist_template- Full name
rootly.rootly_create_catalog_checklist_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
trigger_audit_catalog_checklist_template Write
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
- Lua path
app.integrations.rootly.trigger_audit_catalog_checklist_template- Full name
rootly.rootly_trigger_catalog_checklist_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_catalog_checklist_template Read
Retrieves a catalog checklist template Official Rootly endpoint: GET /v1/catalog_checklist_templates/{id} Retrieves a specific catalog checklist template by id
- Lua path
app.integrations.rootly.retrieves_catalog_checklist_template- Full name
rootly.rootly_get_catalog_checklist_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_catalog_checklist_template Write
Update a catalog checklist template Official Rootly endpoint: PUT /v1/catalog_checklist_templates/{id} Update a specific catalog checklist template by id
- Lua path
app.integrations.rootly.update_catalog_checklist_template- Full name
rootly.rootly_update_catalog_checklist_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_catalog_checklist_template Write
Delete a catalog checklist template Official Rootly endpoint: DELETE /v1/catalog_checklist_templates/{id} Delete a specific catalog checklist template by id
- Lua path
app.integrations.rootly.delete_catalog_checklist_template- Full name
rootly.rootly_delete_catalog_checklist_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_entities Read
List Catalog Entities Official Rootly endpoint: GET /v1/catalogs/{catalog_id}/entities List Catalog Entities
- Lua path
app.integrations.rootly.list_catalog_entities- Full name
rootly.rootly_list_catalog_entities
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog_entity Write
Creates a Catalog Entity Official Rootly endpoint: POST /v1/catalogs/{catalog_id}/entities Creates a new Catalog Entity from provided data
- Lua path
app.integrations.rootly.creates_catalog_entity- Full name
rootly.rootly_create_catalog_entity
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_catalog_entity Read
Retrieves a Catalog Entity Official Rootly endpoint: GET /v1/catalog_entities/{id} Retrieves a specific Catalog Entity by id
- Lua path
app.integrations.rootly.retrieves_catalog_entity- Full name
rootly.rootly_get_catalog_entity
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_catalog_entity Write
Update a Catalog Entity Official Rootly endpoint: PUT /v1/catalog_entities/{id} Update a specific Catalog Entity by id
- Lua path
app.integrations.rootly.update_catalog_entity- Full name
rootly.rootly_update_catalog_entity
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_catalog_entity Write
Delete a Catalog Entity Official Rootly endpoint: DELETE /v1/catalog_entities/{id} Delete a specific Catalog Entity by id
- Lua path
app.integrations.rootly.delete_catalog_entity- Full name
rootly.rootly_delete_catalog_entity
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_entity_checklists Read
List catalog entity checklists Official Rootly endpoint: GET /v1/catalog_entity_checklists List catalog entity checklists
- Lua path
app.integrations.rootly.list_catalog_entity_checklists- Full name
rootly.rootly_list_catalog_entity_checklists
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_catalog_entity_checklist Read
Retrieves a catalog entity checklist Official Rootly endpoint: GET /v1/catalog_entity_checklists/{id} Retrieves a specific catalog entity checklist by id
- Lua path
app.integrations.rootly.retrieves_catalog_entity_checklist- Full name
rootly.rootly_get_catalog_entity_checklist
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_properties Read
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
- Lua path
app.integrations.rootly.list_catalog_properties- Full name
rootly.rootly_list_catalog_entity_properties
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog_entity_property Write
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
- Lua path
app.integrations.rootly.creates_catalog_entity_property- Full name
rootly.rootly_create_catalog_entity_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_catalog_entity_property Read
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,
- Lua path
app.integrations.rootly.retrieves_catalog_entity_property- Full name
rootly.rootly_get_catalog_entity_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_catalog_entity_property Write
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
- Lua path
app.integrations.rootly.update_catalog_entity_property- Full name
rootly.rootly_update_catalog_entity_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_catalog_entity_property Write
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
- Lua path
app.integrations.rootly.delete_catalog_entity_property- Full name
rootly.rootly_delete_catalog_entity_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_properties_alias_fields Read
List Catalog Properties (alias for fields) Official Rootly endpoint: GET /v1/catalogs/{catalog_id}/properties List Catalog Properties - returns catalog_properties type
- Lua path
app.integrations.rootly.list_catalog_properties_alias_fields- Full name
rootly.rootly_list_catalog_properties
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog_property_alias_field Write
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
- Lua path
app.integrations.rootly.creates_catalog_property_alias_field- Full name
rootly.rootly_create_catalog_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_catalog_property_alias_field Read
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
- Lua path
app.integrations.rootly.retrieves_catalog_property_alias_field- Full name
rootly.rootly_get_catalog_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_catalog_property_alias_field Write
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
- Lua path
app.integrations.rootly.update_catalog_property_alias_field- Full name
rootly.rootly_update_catalog_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_catalog_property Write
Delete a catalog_property Official Rootly endpoint: DELETE /v1/catalog_properties/{id} Delete a specific catalog_property by id - returns catalog_properties type
- Lua path
app.integrations.rootly.delete_catalog_property- Full name
rootly.rootly_delete_catalog_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalogs Read
List catalogs Official Rootly endpoint: GET /v1/catalogs List catalogs
- Lua path
app.integrations.rootly.list_catalogs- Full name
rootly.rootly_list_catalogs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog Write
Creates a catalog Official Rootly endpoint: POST /v1/catalogs Creates a new catalog from provided data
- Lua path
app.integrations.rootly.creates_catalog- Full name
rootly.rootly_create_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_catalog Read
Retrieves a catalog Official Rootly endpoint: GET /v1/catalogs/{id} Retrieves a specific catalog by id
- Lua path
app.integrations.rootly.retrieves_catalog- Full name
rootly.rootly_get_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_catalog Write
Update a catalog Official Rootly endpoint: PUT /v1/catalogs/{id} Update a specific catalog by id
- Lua path
app.integrations.rootly.update_catalog- Full name
rootly.rootly_update_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_catalog Write
Delete a catalog Official Rootly endpoint: DELETE /v1/catalogs/{id} Delete a specific catalog by id
- Lua path
app.integrations.rootly.delete_catalog- Full name
rootly.rootly_delete_catalog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_causes Read
List causes Official Rootly endpoint: GET /v1/causes List causes
- Lua path
app.integrations.rootly.list_causes- Full name
rootly.rootly_list_causes
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_cause Write
Creates a cause Official Rootly endpoint: POST /v1/causes Creates a new cause from provided data
- Lua path
app.integrations.rootly.creates_cause- Full name
rootly.rootly_create_cause
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_cause Read
Retrieves a cause Official Rootly endpoint: GET /v1/causes/{id} Retrieves a specific cause by id
- Lua path
app.integrations.rootly.retrieves_cause- Full name
rootly.rootly_get_cause
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_cause Write
Update a cause Official Rootly endpoint: PUT /v1/causes/{id} Update a specific cause by id
- Lua path
app.integrations.rootly.update_cause- Full name
rootly.rootly_update_cause
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_cause Write
Delete a cause Official Rootly endpoint: DELETE /v1/causes/{id} Delete a specific cause by id
- Lua path
app.integrations.rootly.delete_cause- Full name
rootly.rootly_delete_cause
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_properties Read
List Catalog Properties Official Rootly endpoint: GET /v1/causes/properties List Cause Catalog Properties
- Lua path
app.integrations.rootly.list_catalog_properties- Full name
rootly.rootly_list_cause_catalog_properties
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog_property Write
Creates a Catalog Property Official Rootly endpoint: POST /v1/causes/properties Creates a new Catalog Property from provided data
- Lua path
app.integrations.rootly.creates_catalog_property- Full name
rootly.rootly_create_cause_catalog_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
lists_communications_groups Read
Lists communications groups Official Rootly endpoint: GET /v1/communications/groups Lists communications groups
- Lua path
app.integrations.rootly.lists_communications_groups- Full name
rootly.rootly_list_communications_groups
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_communications_group Write
Creates a communications group Official Rootly endpoint: POST /v1/communications/groups Creates a new communications group from provided data
- Lua path
app.integrations.rootly.creates_communications_group- Full name
rootly.rootly_create_communications_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
shows_communications_group Read
Shows a communications group Official Rootly endpoint: GET /v1/communications/groups/{id} Shows details of a communications group
- Lua path
app.integrations.rootly.shows_communications_group- Full name
rootly.rootly_get_communications_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
updates_communications_group Write
Updates a communications group Official Rootly endpoint: PATCH /v1/communications/groups/{id} Updates a communications group
- Lua path
app.integrations.rootly.updates_communications_group- Full name
rootly.rootly_update_communications_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deletes_communications_group Write
Deletes a communications group Official Rootly endpoint: DELETE /v1/communications/groups/{id} Deletes a communications group
- Lua path
app.integrations.rootly.deletes_communications_group- Full name
rootly.rootly_delete_communications_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
lists_communications_stages Read
Lists communications stages Official Rootly endpoint: GET /v1/communications/stages Lists communications stages
- Lua path
app.integrations.rootly.lists_communications_stages- Full name
rootly.rootly_list_communications_stages
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_communications_stage Write
Creates a communications stage Official Rootly endpoint: POST /v1/communications/stages Creates a new communications stage from provided data
- Lua path
app.integrations.rootly.creates_communications_stage- Full name
rootly.rootly_create_communications_stage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
shows_communications_stage Read
Shows a communications stage Official Rootly endpoint: GET /v1/communications/stages/{id} Shows details of a communications stage
- Lua path
app.integrations.rootly.shows_communications_stage- Full name
rootly.rootly_get_communications_stage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
updates_communications_stage Write
Updates a communications stage Official Rootly endpoint: PATCH /v1/communications/stages/{id} Updates a communications stage
- Lua path
app.integrations.rootly.updates_communications_stage- Full name
rootly.rootly_update_communications_stage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deletes_communications_stage Write
Deletes a communications stage Official Rootly endpoint: DELETE /v1/communications/stages/{id} Deletes a communications stage
- Lua path
app.integrations.rootly.deletes_communications_stage- Full name
rootly.rootly_delete_communications_stage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
lists_communications_templates Read
Lists communications templates Official Rootly endpoint: GET /v1/communications/templates Lists communications templates
- Lua path
app.integrations.rootly.lists_communications_templates- Full name
rootly.rootly_list_communications_templates
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_communications_template Write
Creates a communications template Official Rootly endpoint: POST /v1/communications/templates Creates a new communications template from provided data
- Lua path
app.integrations.rootly.creates_communications_template- Full name
rootly.rootly_create_communications_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
shows_communications_template Read
Shows a communications template Official Rootly endpoint: GET /v1/communications/templates/{id} Shows details of a communications template
- Lua path
app.integrations.rootly.shows_communications_template- Full name
rootly.rootly_get_communications_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
updates_communications_template Write
Updates a communications template Official Rootly endpoint: PATCH /v1/communications/templates/{id} Updates a communications template
- Lua path
app.integrations.rootly.updates_communications_template- Full name
rootly.rootly_update_communications_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deletes_communications_template Write
Deletes a communications template Official Rootly endpoint: DELETE /v1/communications/templates/{id} Deletes a communications template
- Lua path
app.integrations.rootly.deletes_communications_template- Full name
rootly.rootly_delete_communications_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
lists_communications_types Read
Lists communications types Official Rootly endpoint: GET /v1/communications/types Lists communications types
- Lua path
app.integrations.rootly.lists_communications_types- Full name
rootly.rootly_list_communications_types
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_communications_type Write
Creates a communications type Official Rootly endpoint: POST /v1/communications/types Creates a new communications type from provided data
- Lua path
app.integrations.rootly.creates_communications_type- Full name
rootly.rootly_create_communications_type
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
shows_communications_type Read
Shows a communications type Official Rootly endpoint: GET /v1/communications/types/{id} Shows details of a communications type
- Lua path
app.integrations.rootly.shows_communications_type- Full name
rootly.rootly_get_communications_type
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
updates_communications_type Write
Updates a communications type Official Rootly endpoint: PATCH /v1/communications/types/{id} Updates a communications type
- Lua path
app.integrations.rootly.updates_communications_type- Full name
rootly.rootly_update_communications_type
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deletes_communications_type Write
Deletes a communications type Official Rootly endpoint: DELETE /v1/communications/types/{id} Deletes a communications type
- Lua path
app.integrations.rootly.deletes_communications_type- Full name
rootly.rootly_delete_communications_type
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_list_custom_field_options Read
[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
- Lua path
app.integrations.rootly.deprecated_list_custom_field_options- Full name
rootly.rootly_list_custom_field_options
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_creates_custom_field_option Write
[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
- Lua path
app.integrations.rootly.deprecated_creates_custom_field_option- Full name
rootly.rootly_create_custom_field_option
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_retrieves_custom_field_option Read
[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
- Lua path
app.integrations.rootly.deprecated_retrieves_custom_field_option- Full name
rootly.rootly_get_custom_field_option
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_update_custom_field_option Write
[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
- Lua path
app.integrations.rootly.deprecated_update_custom_field_option- Full name
rootly.rootly_update_custom_field_option
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_delete_custom_field_option Write
[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
- Lua path
app.integrations.rootly.deprecated_delete_custom_field_option- Full name
rootly.rootly_delete_custom_field_option
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_list_custom_fields Read
[DEPRECATED] List Custom Fields Official Rootly endpoint: GET /v1/custom_fields [DEPRECATED] Use form field endpoints instead. List Custom fields
- Lua path
app.integrations.rootly.deprecated_list_custom_fields- Full name
rootly.rootly_list_custom_fields
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_creates_custom_field Write
[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
- Lua path
app.integrations.rootly.deprecated_creates_custom_field- Full name
rootly.rootly_create_custom_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_retrieves_custom_field Read
[DEPRECATED] Retrieves a Custom Field Official Rootly endpoint: GET /v1/custom_fields/{id} Retrieves a specific custom_field by id
- Lua path
app.integrations.rootly.deprecated_retrieves_custom_field- Full name
rootly.rootly_get_custom_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_update_custom_field Write
[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
- Lua path
app.integrations.rootly.deprecated_update_custom_field- Full name
rootly.rootly_update_custom_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_delete_custom_field Write
[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
- Lua path
app.integrations.rootly.deprecated_delete_custom_field- Full name
rootly.rootly_delete_custom_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_custom_forms Read
List custom forms Official Rootly endpoint: GET /v1/custom_forms List custom forms
- Lua path
app.integrations.rootly.list_custom_forms- Full name
rootly.rootly_list_custom_forms
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_custom_form Write
Creates a custom form Official Rootly endpoint: POST /v1/custom_forms Creates a new custom form from provided data
- Lua path
app.integrations.rootly.creates_custom_form- Full name
rootly.rootly_create_custom_form
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_custom_form Read
Retrieves a custom form Official Rootly endpoint: GET /v1/custom_forms/{id} Retrieves a specific custom form by id
- Lua path
app.integrations.rootly.retrieves_custom_form- Full name
rootly.rootly_get_custom_form
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_custom_form Write
Update a custom form Official Rootly endpoint: PUT /v1/custom_forms/{id} Update a specific custom form by id
- Lua path
app.integrations.rootly.update_custom_form- Full name
rootly.rootly_update_custom_form
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_custom_form Write
Delete a custom form Official Rootly endpoint: DELETE /v1/custom_forms/{id} Delete a specific custom form by id
- Lua path
app.integrations.rootly.delete_custom_form- Full name
rootly.rootly_delete_custom_form
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_dashboard_panels Read
List dashboard panels Official Rootly endpoint: GET /v1/dashboards/{dashboard_id}/panels List dashboard panels
- Lua path
app.integrations.rootly.list_dashboard_panels- Full name
rootly.rootly_list_dashboard_panels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_dashboard_panel Write
Creates a dashboard panel Official Rootly endpoint: POST /v1/dashboards/{dashboard_id}/panels Creates a new dashboard panel from provided data
- Lua path
app.integrations.rootly.creates_dashboard_panel- Full name
rootly.rootly_create_dashboard_panel
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
duplicates_dashboard_panel Write
Duplicates a dashboard panel Official Rootly endpoint: POST /v1/dashboard_panels/{id}/duplicate Duplicates a dashboard panel
- Lua path
app.integrations.rootly.duplicates_dashboard_panel- Full name
rootly.rootly_duplicate_dashboard_panel
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_dashboard_panel Read
Retrieves a dashboard panel Official Rootly endpoint: GET /v1/dashboard_panels/{id} Retrieves a specific dashboard panel by id
- Lua path
app.integrations.rootly.retrieves_dashboard_panel- Full name
rootly.rootly_get_dashboard_panel
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_dashboard_panel Write
Update a dashboard panel Official Rootly endpoint: PUT /v1/dashboard_panels/{id} Update a specific dashboard panel by id
- Lua path
app.integrations.rootly.update_dashboard_panel- Full name
rootly.rootly_update_dashboard_panel
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_dashboard_panel Write
Delete a dashboard panel Official Rootly endpoint: DELETE /v1/dashboard_panels/{id} Delete a specific dashboard panel by id
- Lua path
app.integrations.rootly.delete_dashboard_panel- Full name
rootly.rootly_delete_dashboard_panel
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_dashboards Read
List dashboards Official Rootly endpoint: GET /v1/dashboards List dashboards
- Lua path
app.integrations.rootly.list_dashboards- Full name
rootly.rootly_list_dashboards
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_dashboard Write
Creates a dashboard Official Rootly endpoint: POST /v1/dashboards Creates a new dashboard from provided data
- Lua path
app.integrations.rootly.creates_dashboard- Full name
rootly.rootly_create_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
duplicates_dashboard Write
Duplicates a dashboard Official Rootly endpoint: POST /v1/dashboards/{id}/duplicate Duplicates a dashboard
- Lua path
app.integrations.rootly.duplicates_dashboard- Full name
rootly.rootly_duplicate_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
sets_dashboard_user_default Write
Sets dashboard to user default Official Rootly endpoint: POST /v1/dashboards/{id}/set_default Sets dashboard to user default
- Lua path
app.integrations.rootly.sets_dashboard_user_default- Full name
rootly.rootly_set_default_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_dashboard Read
Retrieves a dashboard Official Rootly endpoint: GET /v1/dashboards/{id} Retrieves a specific dashboard by id
- Lua path
app.integrations.rootly.retrieves_dashboard- Full name
rootly.rootly_get_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_dashboard Write
Update a dashboard Official Rootly endpoint: PUT /v1/dashboards/{id} Update a specific dashboard by id
- Lua path
app.integrations.rootly.update_dashboard- Full name
rootly.rootly_update_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_dashboard Write
Delete a dashboard Official Rootly endpoint: DELETE /v1/dashboards/{id} Delete a specific dashboard by id
- Lua path
app.integrations.rootly.delete_dashboard- Full name
rootly.rootly_delete_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_edge_connector_actions Read
List edge connector actions Official Rootly endpoint: GET /v1/edge_connectors/{edge_connector_id}/actions
- Lua path
app.integrations.rootly.list_edge_connector_actions- Full name
rootly.rootly_list_edge_connector_actions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_edge_connector_action Write
Create edge connector action Official Rootly endpoint: POST /v1/edge_connectors/{edge_connector_id}/actions
- Lua path
app.integrations.rootly.create_edge_connector_action- Full name
rootly.rootly_create_edge_connector_action
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
show_edge_connector_action Read
Show edge connector action Official Rootly endpoint: GET /v1/edge_connectors/{edge_connector_id}/actions/{id}
- Lua path
app.integrations.rootly.show_edge_connector_action- Full name
rootly.rootly_get_edge_connector_action
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_edge_connector_action Write
Update edge connector action Official Rootly endpoint: PATCH /v1/edge_connectors/{edge_connector_id}/actions/{id}
- Lua path
app.integrations.rootly.update_edge_connector_action- Full name
rootly.rootly_update_edge_connector_action
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_edge_connector_action Write
Delete edge connector action Official Rootly endpoint: DELETE /v1/edge_connectors/{edge_connector_id}/actions/{id}
- Lua path
app.integrations.rootly.delete_edge_connector_action- Full name
rootly.rootly_delete_edge_connector_action
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_edge_connectors Read
List edge connectors Official Rootly endpoint: GET /v1/edge_connectors
- Lua path
app.integrations.rootly.list_edge_connectors- Full name
rootly.rootly_list_edge_connectors
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_edge_connector Write
Create edge connector Official Rootly endpoint: POST /v1/edge_connectors
- Lua path
app.integrations.rootly.create_edge_connector- Full name
rootly.rootly_create_edge_connector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
show_edge_connector Read
Show edge connector Official Rootly endpoint: GET /v1/edge_connectors/{id}
- Lua path
app.integrations.rootly.show_edge_connector- Full name
rootly.rootly_get_edge_connector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_edge_connector Write
Update edge connector Official Rootly endpoint: PATCH /v1/edge_connectors/{id}
- Lua path
app.integrations.rootly.update_edge_connector- Full name
rootly.rootly_update_edge_connector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_edge_connector Write
Delete edge connector Official Rootly endpoint: DELETE /v1/edge_connectors/{id}
- Lua path
app.integrations.rootly.delete_edge_connector- Full name
rootly.rootly_delete_edge_connector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_environments Read
List environments Official Rootly endpoint: GET /v1/environments List environments
- Lua path
app.integrations.rootly.list_environments- Full name
rootly.rootly_list_environments
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_environment Write
Creates an environment Official Rootly endpoint: POST /v1/environments Creates a new environment from provided data
- Lua path
app.integrations.rootly.creates_environment- Full name
rootly.rootly_create_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_environment Read
Retrieves an environment Official Rootly endpoint: GET /v1/environments/{id} Retrieves a specific environment by id
- Lua path
app.integrations.rootly.retrieves_environment- Full name
rootly.rootly_get_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_environment Write
Update an environment Official Rootly endpoint: PUT /v1/environments/{id} Update a specific environment by id
- Lua path
app.integrations.rootly.update_environment- Full name
rootly.rootly_update_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_environment Write
Delete an environment Official Rootly endpoint: DELETE /v1/environments/{id} Delete a specific environment by id
- Lua path
app.integrations.rootly.delete_environment- Full name
rootly.rootly_delete_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_properties Read
List Catalog Properties Official Rootly endpoint: GET /v1/environments/properties List Environment Catalog Properties
- Lua path
app.integrations.rootly.list_catalog_properties- Full name
rootly.rootly_list_environment_catalog_properties
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog_property Write
Creates a Catalog Property Official Rootly endpoint: POST /v1/environments/properties Creates a new Catalog Property from provided data
- Lua path
app.integrations.rootly.creates_catalog_property- Full name
rootly.rootly_create_environment_catalog_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_escalation_policies Read
List escalation policies Official Rootly endpoint: GET /v1/escalation_policies List escalation policies
- Lua path
app.integrations.rootly.list_escalation_policies- Full name
rootly.rootly_list_escalation_policies
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_escalation_policy Write
Creates an escalation policy Official Rootly endpoint: POST /v1/escalation_policies Creates a new escalation policy from provided data
- Lua path
app.integrations.rootly.creates_escalation_policy- Full name
rootly.rootly_create_escalation_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_escalation_policy Read
Retrieves an escalation policy Official Rootly endpoint: GET /v1/escalation_policies/{id} Retrieves a specific escalation policy by id
- Lua path
app.integrations.rootly.retrieves_escalation_policy- Full name
rootly.rootly_get_escalation_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_escalation_policy Write
Update an escalation policy Official Rootly endpoint: PUT /v1/escalation_policies/{id} Update a specific escalation policy by id
- Lua path
app.integrations.rootly.update_escalation_policy- Full name
rootly.rootly_update_escalation_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_escalation_policy Write
Delete an escalation policy Official Rootly endpoint: DELETE /v1/escalation_policies/{id} Delete a specific escalation policy by id
- Lua path
app.integrations.rootly.delete_escalation_policy- Full name
rootly.rootly_delete_escalation_policy
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_escalation_levels_escalation_policy Read
List escalation levels for an Escalation Policy Official Rootly endpoint: GET /v1/escalation_policies/{escalation_policy_id}/escalation_levels List escalation levels
- Lua path
app.integrations.rootly.list_escalation_levels_escalation_policy- Full name
rootly.rootly_list_escalation_levels
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_escalation_level_escalation_policy Write
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
- Lua path
app.integrations.rootly.creates_escalation_level_escalation_policy- Full name
rootly.rootly_create_escalation_level
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_escalation_levels_escalation_path Read
List escalation levels for an Escalation Path Official Rootly endpoint: GET /v1/escalation_paths/{escalation_policy_path_id}/escalation_levels List escalation levels
- Lua path
app.integrations.rootly.list_escalation_levels_escalation_path- Full name
rootly.rootly_list_escalation_levels_paths
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_escalation_level_escalation_path Write
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
- Lua path
app.integrations.rootly.creates_escalation_level_escalation_path- Full name
rootly.rootly_create_escalation_level_paths
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_escalation_level Read
Retrieves an escalation level Official Rootly endpoint: GET /v1/escalation_levels/{id} Retrieves a specific escalation level by id
- Lua path
app.integrations.rootly.retrieves_escalation_level- Full name
rootly.rootly_get_escalation_level
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_escalation_level Write
Update an escalation level Official Rootly endpoint: PUT /v1/escalation_levels/{id} Update a specific escalation level by id
- Lua path
app.integrations.rootly.update_escalation_level- Full name
rootly.rootly_update_escalation_level
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_escalation_level Write
Delete an escalation level Official Rootly endpoint: DELETE /v1/escalation_levels/{id} Delete a specific escalation level by id
- Lua path
app.integrations.rootly.delete_escalation_level- Full name
rootly.rootly_delete_escalation_level
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_escalation_paths Read
List escalation paths Official Rootly endpoint: GET /v1/escalation_policies/{escalation_policy_id}/escalation_paths List escalation paths
- Lua path
app.integrations.rootly.list_escalation_paths- Full name
rootly.rootly_list_escalation_paths
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_escalation_path Write
Creates an escalation path Official Rootly endpoint: POST /v1/escalation_policies/{escalation_policy_id}/escalation_paths Creates a new escalation path from provided data
- Lua path
app.integrations.rootly.creates_escalation_path- Full name
rootly.rootly_create_escalation_path
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_escalation_path Read
Retrieves an escalation path Official Rootly endpoint: GET /v1/escalation_paths/{id} Retrieves a specific escalation path by id
- Lua path
app.integrations.rootly.retrieves_escalation_path- Full name
rootly.rootly_get_escalation_path
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_escalation_path Write
Update an escalation path Official Rootly endpoint: PUT /v1/escalation_paths/{id} Update a specific escalation path by id
- Lua path
app.integrations.rootly.update_escalation_path- Full name
rootly.rootly_update_escalation_path
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_escalation_path Write
Delete an escalation path Official Rootly endpoint: DELETE /v1/escalation_paths/{id} Delete a specific escalation path by id
- Lua path
app.integrations.rootly.delete_escalation_path- Full name
rootly.rootly_delete_escalation_path
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_formfield_options Read
List FormField Options Official Rootly endpoint: GET /v1/form_fields/{form_field_id}/options List form_field_options
- Lua path
app.integrations.rootly.list_formfield_options- Full name
rootly.rootly_list_form_field_options
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_formfield_options Write
Creates FormField Options Official Rootly endpoint: POST /v1/form_fields/{form_field_id}/options Creates a new form_field_option from provided data
- Lua path
app.integrations.rootly.creates_formfield_options- Full name
rootly.rootly_create_form_field_option
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_formfield_options Read
Retrieves FormField Options Official Rootly endpoint: GET /v1/form_field_options/{id} Retrieves a specific form_field_option by id
- Lua path
app.integrations.rootly.retrieves_formfield_options- Full name
rootly.rootly_get_form_field_option
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_formfield_options Write
Update FormField Options Official Rootly endpoint: PUT /v1/form_field_options/{id} Update a specific form_field_option by id
- Lua path
app.integrations.rootly.update_formfield_options- Full name
rootly.rootly_update_form_field_option
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_formfield_options Write
Delete FormField Options Official Rootly endpoint: DELETE /v1/form_field_options/{id} Delete a specific form_field_option by id
- Lua path
app.integrations.rootly.delete_formfield_options- Full name
rootly.rootly_delete_form_field_option
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_form_set_conditions Read
List Form Set Conditions Official Rootly endpoint: GET /v1/form_field_placements/{form_field_placement_id}/conditions List form_field_placement_conditions
- Lua path
app.integrations.rootly.list_form_set_conditions- Full name
rootly.rootly_list_form_field_placement_conditions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_form_set_condition Write
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
- Lua path
app.integrations.rootly.creates_form_set_condition- Full name
rootly.rootly_create_form_field_placement_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_form_set_condition Read
Retrieves a Form Set Condition Official Rootly endpoint: GET /v1/form_field_placement_conditions/{id} Retrieves a specific form_field_placement_condition by id
- Lua path
app.integrations.rootly.retrieves_form_set_condition- Full name
rootly.rootly_get_form_field_placement_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_form_set_condition Write
Update a Form Set Condition Official Rootly endpoint: PUT /v1/form_field_placement_conditions/{id} Update a specific form_field_placement_condition by id
- Lua path
app.integrations.rootly.update_form_set_condition- Full name
rootly.rootly_update_form_field_placement_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_form_set_condition Write
Delete a Form Set Condition Official Rootly endpoint: DELETE /v1/form_field_placement_conditions/{id} Delete a specific form_field_placement_condition by id
- Lua path
app.integrations.rootly.delete_form_set_condition- Full name
rootly.rootly_delete_form_field_placement_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_form_field_placements Read
List Form Field Placements Official Rootly endpoint: GET /v1/form_fields/{form_field_id}/placements List form_field_placements
- Lua path
app.integrations.rootly.list_form_field_placements- Full name
rootly.rootly_list_form_field_placements
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_form_field_placement Write
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
- Lua path
app.integrations.rootly.creates_form_field_placement- Full name
rootly.rootly_create_form_field_placement
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_form_field_placement Read
Retrieves a Form Field Placement Official Rootly endpoint: GET /v1/form_field_placements/{id} Retrieves a specific form_field_placement by id
- Lua path
app.integrations.rootly.retrieves_form_field_placement- Full name
rootly.rootly_get_form_field_placement
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_form_field_placement Write
Update a Form Field Placement Official Rootly endpoint: PUT /v1/form_field_placements/{id} Update a specific form_field_placement by id
- Lua path
app.integrations.rootly.update_form_field_placement- Full name
rootly.rootly_update_form_field_placement
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_form_field_placement Write
Delete a Form Field Placement Official Rootly endpoint: DELETE /v1/form_field_placements/{id} Delete a specific form_field_placement by id
- Lua path
app.integrations.rootly.delete_form_field_placement- Full name
rootly.rootly_delete_form_field_placement
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_formfield_position Read
List FormField Position Official Rootly endpoint: GET /v1/form_fields/{form_field_id}/positions List form field positions
- Lua path
app.integrations.rootly.list_formfield_position- Full name
rootly.rootly_list_form_field_positions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_formfield_positions Write
Creates FormField Positions Official Rootly endpoint: POST /v1/form_fields/{form_field_id}/positions Creates a new form field_position from provided data
- Lua path
app.integrations.rootly.creates_formfield_positions- Full name
rootly.rootly_create_form_field_position
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_formfieldposition Read
Retrieves a FormFieldPosition Official Rootly endpoint: GET /v1/form_field_positions/{id} Retrieves a specific form field_position by id
- Lua path
app.integrations.rootly.retrieves_formfieldposition- Full name
rootly.rootly_get_form_field_position
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_formfieldposition Write
Update a FormFieldPosition Official Rootly endpoint: PUT /v1/form_field_positions/{id} Update a specific form_field position by id
- Lua path
app.integrations.rootly.update_formfieldposition- Full name
rootly.rootly_update_form_field_position
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_formfieldposition Write
Delete a FormFieldPosition Official Rootly endpoint: DELETE /v1/form_field_positions/{id} Delete a specific form_field position by id
- Lua path
app.integrations.rootly.delete_formfieldposition- Full name
rootly.rootly_delete_form_field_position
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_form_fields Read
List Form Fields Official Rootly endpoint: GET /v1/form_fields List form_fields
- Lua path
app.integrations.rootly.list_form_fields- Full name
rootly.rootly_list_form_fields
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_form_field Write
Creates a Form Field Official Rootly endpoint: POST /v1/form_fields Creates a new form_field from provided data
- Lua path
app.integrations.rootly.creates_form_field- Full name
rootly.rootly_create_form_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_form_field Read
Retrieves a Form Field Official Rootly endpoint: GET /v1/form_fields/{id} Retrieves a specific form_field by id
- Lua path
app.integrations.rootly.retrieves_form_field- Full name
rootly.rootly_get_form_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_form_field Write
Update a Form Field Official Rootly endpoint: PUT /v1/form_fields/{id} Update a specific form_field by id
- Lua path
app.integrations.rootly.update_form_field- Full name
rootly.rootly_update_form_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_form_field Write
Delete a Form Field Official Rootly endpoint: DELETE /v1/form_fields/{id} Delete a specific form_field by id
- Lua path
app.integrations.rootly.delete_form_field- Full name
rootly.rootly_delete_form_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_form_set_conditions Read
List Form Set Conditions Official Rootly endpoint: GET /v1/form_sets/{form_set_id}/conditions List form_set_conditions
- Lua path
app.integrations.rootly.list_form_set_conditions- Full name
rootly.rootly_list_form_set_conditions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_form_set_condition Write
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
- Lua path
app.integrations.rootly.creates_form_set_condition- Full name
rootly.rootly_create_form_set_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_form_set_condition Read
Retrieves a Form Set Condition Official Rootly endpoint: GET /v1/form_set_conditions/{id} Retrieves a specific form_set_condition by id
- Lua path
app.integrations.rootly.retrieves_form_set_condition- Full name
rootly.rootly_get_form_set_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_form_set_condition Write
Update a Form Set Condition Official Rootly endpoint: PUT /v1/form_set_conditions/{id} Update a specific form_set_condition by id
- Lua path
app.integrations.rootly.update_form_set_condition- Full name
rootly.rootly_update_form_set_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_form_set_condition Write
Delete a Form Set Condition Official Rootly endpoint: DELETE /v1/form_set_conditions/{id} Delete a specific form_set_condition by id
- Lua path
app.integrations.rootly.delete_form_set_condition- Full name
rootly.rootly_delete_form_set_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_form_sets Read
List Form Sets Official Rootly endpoint: GET /v1/form_sets List form_sets
- Lua path
app.integrations.rootly.list_form_sets- Full name
rootly.rootly_list_form_sets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_form_set Write
Creates a Form Set Official Rootly endpoint: POST /v1/form_sets Creates a new form_set from provided data
- Lua path
app.integrations.rootly.creates_form_set- Full name
rootly.rootly_create_form_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_form_set Read
Retrieves a Form Set Official Rootly endpoint: GET /v1/form_sets/{id} Retrieves a specific form_set by id
- Lua path
app.integrations.rootly.retrieves_form_set- Full name
rootly.rootly_get_form_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_form_set Write
Update a Form Set Official Rootly endpoint: PUT /v1/form_sets/{id} Update a specific form_set by id
- Lua path
app.integrations.rootly.update_form_set- Full name
rootly.rootly_update_form_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_form_set Write
Delete a Form Set Official Rootly endpoint: DELETE /v1/form_sets/{id} Delete a specific form_set by id
- Lua path
app.integrations.rootly.delete_form_set- Full name
rootly.rootly_delete_form_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_functionalities Read
List functionalities Official Rootly endpoint: GET /v1/functionalities List functionalities
- Lua path
app.integrations.rootly.list_functionalities- Full name
rootly.rootly_list_functionalities
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_functionality Write
Creates a functionality Official Rootly endpoint: POST /v1/functionalities Creates a new functionality from provided data
- Lua path
app.integrations.rootly.creates_functionality- Full name
rootly.rootly_create_functionality
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_functionality Read
Retrieves a functionality Official Rootly endpoint: GET /v1/functionalities/{id} Retrieves a specific functionality by id
- Lua path
app.integrations.rootly.retrieves_functionality- Full name
rootly.rootly_get_functionality
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_functionality Write
Update a functionality Official Rootly endpoint: PUT /v1/functionalities/{id} Update a specific functionality by id
- Lua path
app.integrations.rootly.update_functionality- Full name
rootly.rootly_update_functionality
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_functionality Write
Delete a functionality Official Rootly endpoint: DELETE /v1/functionalities/{id} Delete a specific functionality by id
- Lua path
app.integrations.rootly.delete_functionality- Full name
rootly.rootly_delete_functionality
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_functionality_incidents_chart Read
Get functionality incidents chart Official Rootly endpoint: GET /v1/functionalities/{id}/incidents_chart Get functionality incidents chart
- Lua path
app.integrations.rootly.get_functionality_incidents_chart- Full name
rootly.rootly_get_functionality_incidents_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_functionality_uptime_chart Read
Get functionality uptime chart Official Rootly endpoint: GET /v1/functionalities/{id}/uptime_chart Get functionality uptime chart
- Lua path
app.integrations.rootly.get_functionality_uptime_chart- Full name
rootly.rootly_get_functionality_uptime_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_properties Read
List Catalog Properties Official Rootly endpoint: GET /v1/functionalities/properties List Functionality Catalog Properties
- Lua path
app.integrations.rootly.list_catalog_properties- Full name
rootly.rootly_list_functionality_catalog_properties
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog_property Write
Creates a Catalog Property Official Rootly endpoint: POST /v1/functionalities/properties Creates a new Catalog Property from provided data
- Lua path
app.integrations.rootly.creates_catalog_property- Full name
rootly.rootly_create_functionality_catalog_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_workflow_tasks Read
List workflow tasks Official Rootly endpoint: GET /v1/workflows/{workflow_id}/workflow_tasks List workflow tasks
- Lua path
app.integrations.rootly.list_workflow_tasks- Full name
rootly.rootly_list_workflow_tasks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_workflow_task Write
Creates a workflow task Official Rootly endpoint: POST /v1/workflows/{workflow_id}/workflow_tasks Creates a new workflow task from provided data
- Lua path
app.integrations.rootly.creates_workflow_task- Full name
rootly.rootly_create_workflow_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_workflow_task Read
Retrieves a workflow task Official Rootly endpoint: GET /v1/workflow_tasks/{id} Retrieves a specific workflow_task by id
- Lua path
app.integrations.rootly.retrieves_workflow_task- Full name
rootly.rootly_get_workflow_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_workflow_task Write
Update a workflow task Official Rootly endpoint: PUT /v1/workflow_tasks/{id} Update a specific workflow task by id
- Lua path
app.integrations.rootly.update_workflow_task- Full name
rootly.rootly_update_workflow_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_workflow_task Write
Delete a workflow task Official Rootly endpoint: DELETE /v1/workflow_tasks/{id} Delete a specific workflow task by id
- Lua path
app.integrations.rootly.delete_workflow_task- Full name
rootly.rootly_delete_workflow_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_list_workflow_custom_field_selections Read
[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
- Lua path
app.integrations.rootly.deprecated_list_workflow_custom_field_selections- Full name
rootly.rootly_list_workflow_custom_field_selections
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_creates_workflow_custom_field_selection Write
[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
- Lua path
app.integrations.rootly.deprecated_creates_workflow_custom_field_selection- Full name
rootly.rootly_create_workflow_custom_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_retrieves_workflow_custom_field_selection Read
[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
- Lua path
app.integrations.rootly.deprecated_retrieves_workflow_custom_field_selection- Full name
rootly.rootly_get_workflow_custom_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_update_workflow_custom_field_selection Write
[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
- Lua path
app.integrations.rootly.deprecated_update_workflow_custom_field_selection- Full name
rootly.rootly_update_workflow_custom_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_delete_workflow_custom_field_selection Write
[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
- Lua path
app.integrations.rootly.deprecated_delete_workflow_custom_field_selection- Full name
rootly.rootly_delete_workflow_custom_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_workflow_form_field_conditions Read
List workflow form field conditions Official Rootly endpoint: GET /v1/workflows/{workflow_id}/form_field_conditions List workflow form field conditions
- Lua path
app.integrations.rootly.list_workflow_form_field_conditions- Full name
rootly.rootly_list_workflow_form_field_conditions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_workflow_form_field_condition Write
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
- Lua path
app.integrations.rootly.creates_workflow_form_field_condition- Full name
rootly.rootly_create_workflow_form_field_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_workflow_form_field_condition Read
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
- Lua path
app.integrations.rootly.retrieves_workflow_form_field_condition- Full name
rootly.rootly_get_workflow_form_field_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_workflow_form_field_condition Write
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
- Lua path
app.integrations.rootly.update_workflow_form_field_condition- Full name
rootly.rootly_update_workflow_form_field_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_workflow_form_field_condition Write
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
- Lua path
app.integrations.rootly.delete_workflow_form_field_condition- Full name
rootly.rootly_delete_workflow_form_field_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_workflow_groups Read
List workflow groups Official Rootly endpoint: GET /v1/workflow_groups List workflow groups
- Lua path
app.integrations.rootly.list_workflow_groups- Full name
rootly.rootly_list_workflow_groups
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_workflow_group Write
Creates a workflow group Official Rootly endpoint: POST /v1/workflow_groups Creates a new workflow group from provided data
- Lua path
app.integrations.rootly.creates_workflow_group- Full name
rootly.rootly_create_workflow_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_workflow_group Read
Retrieves a workflow group Official Rootly endpoint: GET /v1/workflow_groups/{id} Retrieves a specific workflow group by id
- Lua path
app.integrations.rootly.retrieves_workflow_group- Full name
rootly.rootly_get_workflow_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_workflow_group Write
Update a workflow group Official Rootly endpoint: PUT /v1/workflow_groups/{id} Update a specific workflow group by id
- Lua path
app.integrations.rootly.update_workflow_group- Full name
rootly.rootly_update_workflow_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_workflow_group Write
Delete a workflow_group Official Rootly endpoint: DELETE /v1/workflow_groups/{id} Delete a specific workflow group by id
- Lua path
app.integrations.rootly.delete_workflow_group- Full name
rootly.rootly_delete_workflow_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_workflow_runs Read
List workflow runs Official Rootly endpoint: GET /v1/workflows/{workflow_id}/workflow_runs List workflow runs
- Lua path
app.integrations.rootly.list_workflow_runs- Full name
rootly.rootly_list_workflow_runs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_workflow_run Write
Creates a workflow run Official Rootly endpoint: POST /v1/workflows/{workflow_id}/workflow_runs Creates a new workflow run from provided data
- Lua path
app.integrations.rootly.creates_workflow_run- Full name
rootly.rootly_create_workflow_run
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_workflows Read
List workflows Official Rootly endpoint: GET /v1/workflows List workflows
- Lua path
app.integrations.rootly.list_workflows- Full name
rootly.rootly_list_workflows
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_workflow Write
Creates a workflow Official Rootly endpoint: POST /v1/workflows Creates a new workflow from provided data
- Lua path
app.integrations.rootly.creates_workflow- Full name
rootly.rootly_create_workflow
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_workflow Read
Retrieves a workflow Official Rootly endpoint: GET /v1/workflows/{id} Retrieves a specific workflow by id
- Lua path
app.integrations.rootly.retrieves_workflow- Full name
rootly.rootly_get_workflow
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_workflow Write
Update a workflow Official Rootly endpoint: PUT /v1/workflows/{id} Update a specific workflow by id
- Lua path
app.integrations.rootly.update_workflow- Full name
rootly.rootly_update_workflow
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_workflow Write
Delete a workflow Official Rootly endpoint: DELETE /v1/workflows/{id} Delete a specific workflow by id
- Lua path
app.integrations.rootly.delete_workflow- Full name
rootly.rootly_delete_workflow
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
ping_heartbeat Write
Ping a heartbeat Official Rootly endpoint: POST /v1/heartbeats/{heartbeat_id}/ping Ping a specific heartbeat by id
- Lua path
app.integrations.rootly.ping_heartbeat- Full name
rootly.rootly_ping_heartbeat
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_heartbeats Read
List heartbeats Official Rootly endpoint: GET /v1/heartbeats List heartbeats
- Lua path
app.integrations.rootly.list_heartbeats- Full name
rootly.rootly_list_heartbeats
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_heartbeat Write
Creates a heartbeat Official Rootly endpoint: POST /v1/heartbeats Creates a new heartbeat from provided data
- Lua path
app.integrations.rootly.creates_heartbeat- Full name
rootly.rootly_create_heartbeat
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_heartbeat Read
Retrieves a heartbeat Official Rootly endpoint: GET /v1/heartbeats/{id} Retrieves a specific heartbeat by id
- Lua path
app.integrations.rootly.retrieves_heartbeat- Full name
rootly.rootly_get_heartbeat
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_heartbeat Write
Update a heartbeat Official Rootly endpoint: PUT /v1/heartbeats/{id} Update a specific heartbeat by id
- Lua path
app.integrations.rootly.update_heartbeat- Full name
rootly.rootly_update_heartbeat
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_heartbeat Write
Delete a heartbeat Official Rootly endpoint: DELETE /v1/heartbeats/{id} Delete a specific heartbeat by id
- Lua path
app.integrations.rootly.delete_heartbeat- Full name
rootly.rootly_delete_heartbeat
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_action_items Read
List incident action items Official Rootly endpoint: GET /v1/incidents/{incident_id}/action_items List incident action items
- Lua path
app.integrations.rootly.list_incident_action_items- Full name
rootly.rootly_list_incident_action_items
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_action_item Write
Creates an incident action item Official Rootly endpoint: POST /v1/incidents/{incident_id}/action_items Creates a new action item from provided data
- Lua path
app.integrations.rootly.creates_incident_action_item- Full name
rootly.rootly_create_incident_action_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_action_item Read
Retrieves an incident action item Official Rootly endpoint: GET /v1/action_items/{id} Retrieves a specific incident_action_item by id
- Lua path
app.integrations.rootly.retrieves_incident_action_item- Full name
rootly.rootly_get_incident_action_items
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_action_item Write
Update an incident action item Official Rootly endpoint: PUT /v1/action_items/{id} Update a specific incident action item by id
- Lua path
app.integrations.rootly.update_incident_action_item- Full name
rootly.rootly_update_incident_action_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_action_item Write
Delete an incident action item Official Rootly endpoint: DELETE /v1/action_items/{id} Delete a specific incident action item by id
- Lua path
app.integrations.rootly.delete_incident_action_item- Full name
rootly.rootly_delete_incident_action_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_all_action_items_organization Read
List all action items for an organization Official Rootly endpoint: GET /v1/action_items List all action items for an organization
- Lua path
app.integrations.rootly.list_all_action_items_organization- Full name
rootly.rootly_list_all_incident_action_items
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_list_incident_custom_field_selections Read
[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
- Lua path
app.integrations.rootly.deprecated_list_incident_custom_field_selections- Full name
rootly.rootly_list_incident_custom_field_selections
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_creates_incident_custom_field_selection Write
[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
- Lua path
app.integrations.rootly.deprecated_creates_incident_custom_field_selection- Full name
rootly.rootly_create_incident_custom_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_retrieves_incident_custom_field_selection Read
[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
- Lua path
app.integrations.rootly.deprecated_retrieves_incident_custom_field_selection- Full name
rootly.rootly_get_incident_custom_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_update_incident_custom_field_selection Write
[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
- Lua path
app.integrations.rootly.deprecated_update_incident_custom_field_selection- Full name
rootly.rootly_update_incident_custom_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deprecated_delete_incident_custom_field_selection Write
[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
- Lua path
app.integrations.rootly.deprecated_delete_incident_custom_field_selection- Full name
rootly.rootly_delete_incident_custom_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_event_functionalities Read
List incident event functionalities Official Rootly endpoint: GET /v1/events/{incident_event_id}/functionalities List incident event functionalities
- Lua path
app.integrations.rootly.list_incident_event_functionalities- Full name
rootly.rootly_list_incident_event_functionalities
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_event_functionality Write
Creates an incident event functionality Official Rootly endpoint: POST /v1/events/{incident_event_id}/functionalities Creates a new event functionality from provided data
- Lua path
app.integrations.rootly.creates_incident_event_functionality- Full name
rootly.rootly_create_incident_event_functionality
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_event_functionality Read
Retrieves an incident event functionality Official Rootly endpoint: GET /v1/incident_event_functionalities/{id} Retrieves a specific incident_event_functionality by id
- Lua path
app.integrations.rootly.retrieves_incident_event_functionality- Full name
rootly.rootly_get_incident_event_functionalities
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_event Write
Update an incident event Official Rootly endpoint: PUT /v1/incident_event_functionalities/{id} Update a specific incident event functionality by id
- Lua path
app.integrations.rootly.update_incident_event- Full name
rootly.rootly_update_incident_event_functionality
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_event_functionality Write
Delete an incident event functionality Official Rootly endpoint: DELETE /v1/incident_event_functionalities/{id} Delete a specific incident event functionality by id
- Lua path
app.integrations.rootly.delete_incident_event_functionality- Full name
rootly.rootly_delete_incident_event_functionality
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_event_services Read
List incident event services Official Rootly endpoint: GET /v1/events/{incident_event_id}/services List incident event services
- Lua path
app.integrations.rootly.list_incident_event_services- Full name
rootly.rootly_list_incident_event_services
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_event_service Write
Creates an incident event service Official Rootly endpoint: POST /v1/events/{incident_event_id}/services Creates a new event service from provided data
- Lua path
app.integrations.rootly.creates_incident_event_service- Full name
rootly.rootly_create_incident_event_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_event_service Read
Retrieves an incident event service Official Rootly endpoint: GET /v1/incident_event_services/{id} Retrieves a specific incident_event_service by id
- Lua path
app.integrations.rootly.retrieves_incident_event_service- Full name
rootly.rootly_get_incident_event_services
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_event Write
Update an incident event Official Rootly endpoint: PUT /v1/incident_event_services/{id} Update a specific incident event service by id
- Lua path
app.integrations.rootly.update_incident_event- Full name
rootly.rootly_update_incident_event_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_event_functionalitu Write
Delete an incident event functionalitu Official Rootly endpoint: DELETE /v1/incident_event_services/{id} Delete a specific incident event service by id
- Lua path
app.integrations.rootly.delete_incident_event_functionalitu- Full name
rootly.rootly_delete_incident_event_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_events Read
List incident events Official Rootly endpoint: GET /v1/incidents/{incident_id}/events List incident events
- Lua path
app.integrations.rootly.list_incident_events- Full name
rootly.rootly_list_incident_events
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_event Write
Creates an incident event Official Rootly endpoint: POST /v1/incidents/{incident_id}/events Creates a new event from provided data
- Lua path
app.integrations.rootly.creates_incident_event- Full name
rootly.rootly_create_incident_event
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_event Read
Retrieves an incident event Official Rootly endpoint: GET /v1/events/{id} Retrieves a specific incident_event by id
- Lua path
app.integrations.rootly.retrieves_incident_event- Full name
rootly.rootly_get_incident_events
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_event Write
Update an incident event Official Rootly endpoint: PUT /v1/events/{id} Update a specific incident event by id
- Lua path
app.integrations.rootly.update_incident_event- Full name
rootly.rootly_update_incident_event
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_event Write
Delete an incident event Official Rootly endpoint: DELETE /v1/events/{id} Delete a specific incident event by id
- Lua path
app.integrations.rootly.delete_incident_event- Full name
rootly.rootly_delete_incident_event
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_feedbacks Read
List incident feedbacks Official Rootly endpoint: GET /v1/incidents/{incident_id}/feedbacks List incident feedbacks
- Lua path
app.integrations.rootly.list_incident_feedbacks- Full name
rootly.rootly_list_incident_feedbacks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_feedback Write
Creates an incident feedback Official Rootly endpoint: POST /v1/incidents/{incident_id}/feedbacks Creates a new feedback from provided data
- Lua path
app.integrations.rootly.creates_incident_feedback- Full name
rootly.rootly_create_incident_feedback
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_feedback Read
Retrieves an incident feedback Official Rootly endpoint: GET /v1/feedbacks/{id} Retrieves a specific incident_feedback by id
- Lua path
app.integrations.rootly.retrieves_incident_feedback- Full name
rootly.rootly_get_incident_feedbacks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_feedback Write
Update an incident feedback Official Rootly endpoint: PUT /v1/feedbacks/{id} Update a specific incident feedback by id
- Lua path
app.integrations.rootly.update_incident_feedback- Full name
rootly.rootly_update_incident_feedback
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_form_field_selections Read
List incident form field selections Official Rootly endpoint: GET /v1/incidents/{incident_id}/form_field_selections List incident form field selections
- Lua path
app.integrations.rootly.list_incident_form_field_selections- Full name
rootly.rootly_list_incident_form_field_selections
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_form_field_selection Write
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
- Lua path
app.integrations.rootly.creates_incident_form_field_selection- Full name
rootly.rootly_create_incident_form_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_form_field_selection Read
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
- Lua path
app.integrations.rootly.retrieves_incident_form_field_selection- Full name
rootly.rootly_get_incident_form_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_form_field_selection Write
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
- Lua path
app.integrations.rootly.update_incident_form_field_selection- Full name
rootly.rootly_update_incident_form_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_form_field_selection Write
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
- Lua path
app.integrations.rootly.delete_incident_form_field_selection- Full name
rootly.rootly_delete_incident_form_field_selection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_permission_set_booleans Read
List incident_permission_set_booleans Official Rootly endpoint: GET /v1/incident_permission_sets/{incident_permission_set_id}/booleans List incident_permission_set_booleans
- Lua path
app.integrations.rootly.list_incident_permission_set_booleans- Full name
rootly.rootly_list_incident_permission_set_booleans
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_permission_set_boolean Write
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
- Lua path
app.integrations.rootly.creates_incident_permission_set_boolean- Full name
rootly.rootly_create_incident_permission_set_boolean
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_permission_set_boolean Read
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
- Lua path
app.integrations.rootly.retrieves_incident_permission_set_boolean- Full name
rootly.rootly_get_incident_permission_set_boolean
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_permission_set_boolean Write
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
- Lua path
app.integrations.rootly.update_incident_permission_set_boolean- Full name
rootly.rootly_update_incident_permission_set_boolean
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_permission_set_boolean Write
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
- Lua path
app.integrations.rootly.delete_incident_permission_set_boolean- Full name
rootly.rootly_delete_incident_permission_set_boolean
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_permission_set_resources Read
List incident_permission_set_resources Official Rootly endpoint: GET /v1/incident_permission_sets/{incident_permission_set_id}/resources List incident_permission_set_resources
- Lua path
app.integrations.rootly.list_incident_permission_set_resources- Full name
rootly.rootly_list_incident_permission_set_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_permission_set_resource Write
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
- Lua path
app.integrations.rootly.creates_incident_permission_set_resource- Full name
rootly.rootly_create_incident_permission_set_resource
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_permission_set_resource Read
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
- Lua path
app.integrations.rootly.retrieves_incident_permission_set_resource- Full name
rootly.rootly_get_incident_permission_set_resource
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_permission_set_resource Write
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
- Lua path
app.integrations.rootly.update_incident_permission_set_resource- Full name
rootly.rootly_update_incident_permission_set_resource
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_permission_set_resource Write
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
- Lua path
app.integrations.rootly.delete_incident_permission_set_resource- Full name
rootly.rootly_delete_incident_permission_set_resource
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_permission_sets Read
List incident_permission_sets Official Rootly endpoint: GET /v1/incident_permission_sets List incident_permission_sets
- Lua path
app.integrations.rootly.list_incident_permission_sets- Full name
rootly.rootly_list_incident_permission_sets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_permission_set Write
Creates an incident_permission_set Official Rootly endpoint: POST /v1/incident_permission_sets Creates a new incident_permission_set from provided data
- Lua path
app.integrations.rootly.creates_incident_permission_set- Full name
rootly.rootly_create_incident_permission_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_permission_set Read
Retrieves an incident_permission_set Official Rootly endpoint: GET /v1/incident_permission_sets/{id} Retrieves a specific incident_permission_set by id
- Lua path
app.integrations.rootly.retrieves_incident_permission_set- Full name
rootly.rootly_get_incident_permission_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_permission_set Write
Update an incident_permission_set Official Rootly endpoint: PUT /v1/incident_permission_sets/{id} Update a specific incident_permission_set by id
- Lua path
app.integrations.rootly.update_incident_permission_set- Full name
rootly.rootly_update_incident_permission_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_permission_set Write
Delete an incident_permission_set Official Rootly endpoint: DELETE /v1/incident_permission_sets/{id} Delete a specific incident_permission_set by id
- Lua path
app.integrations.rootly.delete_incident_permission_set- Full name
rootly.rootly_delete_incident_permission_set
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_retrospectives Read
List incident retrospectives Official Rootly endpoint: GET /v1/post_mortems List incident retrospectives
- Lua path
app.integrations.rootly.list_incident_retrospectives- Full name
rootly.rootly_list_incident_post_mortems
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_retrospective Read
Retrieves an incident retrospective Official Rootly endpoint: GET /v1/post_mortems/{id} List incidents retrospectives
- Lua path
app.integrations.rootly.retrieves_incident_retrospective- Full name
rootly.rootly_list_incident_postmortem
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_retrospective Write
Update an incident retrospective Official Rootly endpoint: PUT /v1/post_mortems/{id} Update a specific incident retrospective by id
- Lua path
app.integrations.rootly.update_incident_retrospective- Full name
rootly.rootly_update_incident_postmortem
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_retrospective_step Read
Retrieves an incident retrospective step Official Rootly endpoint: GET /v1/incident_retrospective_steps/{id} Retrieves a specific incident retrospective step by id
- Lua path
app.integrations.rootly.retrieves_incident_retrospective_step- Full name
rootly.rootly_get_incident_retrospective_step
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_retrospective_step Write
Update an incident retrospective step Official Rootly endpoint: PUT /v1/incident_retrospective_steps/{id} Update a specific incident retrospective step by id
- Lua path
app.integrations.rootly.update_incident_retrospective_step- Full name
rootly.rootly_update_incident_retrospective_step
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_role_tasks Read
List incident role tasks Official Rootly endpoint: GET /v1/incident_roles/{incident_role_id}/incident_role_tasks List incident_role tasks
- Lua path
app.integrations.rootly.list_incident_role_tasks- Full name
rootly.rootly_list_incident_role_tasks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_role_task Write
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
- Lua path
app.integrations.rootly.creates_incident_role_task- Full name
rootly.rootly_create_incident_role_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_role_task Read
Retrieves an incident role task Official Rootly endpoint: GET /v1/incident_role_tasks/{id} Retrieves a specific incident_role_task by id
- Lua path
app.integrations.rootly.retrieves_incident_role_task- Full name
rootly.rootly_get_incident_role_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_role_task Write
Update an incident role task Official Rootly endpoint: PUT /v1/incident_role_tasks/{id} Update a specific incident_role task by id
- Lua path
app.integrations.rootly.update_incident_role_task- Full name
rootly.rootly_update_incident_role_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_role_task Write
Delete an incident role task Official Rootly endpoint: DELETE /v1/incident_role_tasks/{id} Delete a specific incident_role task by id
- Lua path
app.integrations.rootly.delete_incident_role_task- Full name
rootly.rootly_delete_incident_role_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_roles Read
List incident roles Official Rootly endpoint: GET /v1/incident_roles List incident roles
- Lua path
app.integrations.rootly.list_incident_roles- Full name
rootly.rootly_list_incident_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_role Write
Creates an incident role Official Rootly endpoint: POST /v1/incident_roles Creates a new incident role from provided data
- Lua path
app.integrations.rootly.creates_incident_role- Full name
rootly.rootly_create_incident_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_role Read
Retrieves an incident role Official Rootly endpoint: GET /v1/incident_roles/{id} Retrieves a specific incident_role by id
- Lua path
app.integrations.rootly.retrieves_incident_role- Full name
rootly.rootly_get_incident_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_role Write
Update an incident role Official Rootly endpoint: PUT /v1/incident_roles/{id} Update a specific incident_role by id
- Lua path
app.integrations.rootly.update_incident_role- Full name
rootly.rootly_update_incident_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_role Write
Delete an incident role Official Rootly endpoint: DELETE /v1/incident_roles/{id} Delete a specific incident_role by id
- Lua path
app.integrations.rootly.delete_incident_role- Full name
rootly.rootly_delete_incident_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_status_page_events Read
List incident status page events Official Rootly endpoint: GET /v1/incidents/{incident_id}/status-page-events List incident status page events
- Lua path
app.integrations.rootly.list_incident_status_page_events- Full name
rootly.rootly_list_incident_status_pages
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_status_page_event Write
Creates an incident status page event Official Rootly endpoint: POST /v1/incidents/{incident_id}/status-page-events Creates a new event from provided data
- Lua path
app.integrations.rootly.creates_incident_status_page_event- Full name
rootly.rootly_create_incident_status_page
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_status_page_event Read
Retrieves an incident status page event Official Rootly endpoint: GET /v1/status-page-events/{id} Retrieves a specific incident_status_page_event by id
- Lua path
app.integrations.rootly.retrieves_incident_status_page_event- Full name
rootly.rootly_get_incident_status_pages
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_status_page_event Write
Update an incident status page event Official Rootly endpoint: PUT /v1/status-page-events/{id} Update a specific incident status page event by id
- Lua path
app.integrations.rootly.update_incident_status_page_event- Full name
rootly.rootly_update_incident_status_page
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_status_page_event Write
Delete an incident status page event Official Rootly endpoint: DELETE /v1/status-page-events/{id} Delete a specific incident status page event by id
- Lua path
app.integrations.rootly.delete_incident_status_page_event- Full name
rootly.rootly_delete_incident_status_page
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_sub_statuses Read
List incident_sub_statuses Official Rootly endpoint: GET /v1/incidents/{incident_id}/sub_statuses List incident_sub_statuses
- Lua path
app.integrations.rootly.list_incident_sub_statuses- Full name
rootly.rootly_list_incident_sub_statuses
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_sub_status_assignment Write
Creates a sub-status assignment Official Rootly endpoint: POST /v1/incidents/{incident_id}/sub_statuses Creates a new sub-status assignment from provided data
- Lua path
app.integrations.rootly.creates_sub_status_assignment- Full name
rootly.rootly_create_incident_sub_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_sub_status Read
Retrieves incident_sub_status Official Rootly endpoint: GET /v1/incident_sub_statuses/{id} Retrieves a specific incident_sub_status by id
- Lua path
app.integrations.rootly.retrieves_incident_sub_status- Full name
rootly.rootly_get_incident_sub_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_sub_status Write
Update incident_sub_status Official Rootly endpoint: PUT /v1/incident_sub_statuses/{id} Update a specific incident_sub_status by id
- Lua path
app.integrations.rootly.update_incident_sub_status- Full name
rootly.rootly_update_incident_sub_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_sub_status Write
Delete an incident_sub_status Official Rootly endpoint: DELETE /v1/incident_sub_statuses/{id} Delete a specific incident_sub_status by id
- Lua path
app.integrations.rootly.delete_incident_sub_status- Full name
rootly.rootly_delete_incident_sub_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incident_types Read
List incident types Official Rootly endpoint: GET /v1/incident_types List incident types
- Lua path
app.integrations.rootly.list_incident_types- Full name
rootly.rootly_list_incident_types
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident_type Write
Creates an incident type Official Rootly endpoint: POST /v1/incident_types Creates a new incident_type from provided data
- Lua path
app.integrations.rootly.creates_incident_type- Full name
rootly.rootly_create_incident_type
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident_type Read
Retrieves an incident type Official Rootly endpoint: GET /v1/incident_types/{id} Retrieves a specific incident_type by id
- Lua path
app.integrations.rootly.retrieves_incident_type- Full name
rootly.rootly_get_incident_type
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident_type Write
Update an incident type Official Rootly endpoint: PUT /v1/incident_types/{id} Update a specific incident_type by id
- Lua path
app.integrations.rootly.update_incident_type- Full name
rootly.rootly_update_incident_type
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_type Write
Delete an incident type Official Rootly endpoint: DELETE /v1/incident_types/{id} Delete a specific incident_type by id
- Lua path
app.integrations.rootly.delete_incident_type- Full name
rootly.rootly_delete_incident_type
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_properties Read
List Catalog Properties Official Rootly endpoint: GET /v1/incident_types/properties List IncidentType Catalog Properties
- Lua path
app.integrations.rootly.list_catalog_properties- Full name
rootly.rootly_list_incident_type_catalog_properties
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog_property Write
Creates a Catalog Property Official Rootly endpoint: POST /v1/incident_types/properties Creates a new Catalog Property from provided data
- Lua path
app.integrations.rootly.creates_catalog_property- Full name
rootly.rootly_create_incident_type_catalog_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_incidents Read
List incidents Official Rootly endpoint: GET /v1/incidents List incidents
- Lua path
app.integrations.rootly.list_incidents- Full name
rootly.rootly_list_incidents
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_incident Write
Creates an incident Official Rootly endpoint: POST /v1/incidents Creates a new incident from provided data
- Lua path
app.integrations.rootly.creates_incident- Full name
rootly.rootly_create_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_incident Read
Retrieves an incident Official Rootly endpoint: GET /v1/incidents/{id} Retrieves a specific incident by id
- Lua path
app.integrations.rootly.retrieves_incident- Full name
rootly.rootly_get_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_incident Write
Update an incident Official Rootly endpoint: PUT /v1/incidents/{id} Update a specific incident by id
- Lua path
app.integrations.rootly.update_incident- Full name
rootly.rootly_update_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident Write
Delete an incident Official Rootly endpoint: DELETE /v1/incidents/{id} Delete a specific incident by id
- Lua path
app.integrations.rootly.delete_incident- Full name
rootly.rootly_delete_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mitigate_incident Write
Mitigate an incident Official Rootly endpoint: PUT /v1/incidents/{id}/mitigate Mitigate a specific incident by id
- Lua path
app.integrations.rootly.mitigate_incident- Full name
rootly.rootly_mitigate_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
resolve_incident Write
Resolve an incident Official Rootly endpoint: PUT /v1/incidents/{id}/resolve Resolve a specific incident by id
- Lua path
app.integrations.rootly.resolve_incident- Full name
rootly.rootly_resolve_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
cancel_incident Write
Cancel an incident Official Rootly endpoint: PUT /v1/incidents/{id}/cancel Cancel a specific incident by id
- Lua path
app.integrations.rootly.cancel_incident- Full name
rootly.rootly_cancel_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
triage_incident Write
Triage an incident Official Rootly endpoint: PUT /v1/incidents/{id}/in_triage Set a specific incident by ID to triage state
- Lua path
app.integrations.rootly.triage_incident- Full name
rootly.rootly_triage_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
restart_incident Write
Restart an incident Official Rootly endpoint: PUT /v1/incidents/{id}/restart Restart a specific incident by id
- Lua path
app.integrations.rootly.restart_incident- Full name
rootly.rootly_restart_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
mark_incident_as_duplicate Write
Mark an incident as a duplicate Official Rootly endpoint: PUT /v1/incidents/{id}/duplicate Mark an incident as a duplicate
- Lua path
app.integrations.rootly.mark_incident_as_duplicate- Full name
rootly.rootly_mark_as_duplicate_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
detach_incident_from_its_parent Write
Detach an incident from its parent Official Rootly endpoint: PUT /v1/incidents/{id}/detach_from_parent Detach a sub-incident from its parent incident
- Lua path
app.integrations.rootly.detach_incident_from_its_parent- Full name
rootly.rootly_detach_from_parent_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_duplicate_marking_from_incident Write
Remove duplicate marking from an incident Official Rootly endpoint: PUT /v1/incidents/{id}/unmark_as_duplicate Remove the duplicate marking from an incident
- Lua path
app.integrations.rootly.remove_duplicate_marking_from_incident- Full name
rootly.rootly_unmark_as_duplicate_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_subscribers_incident Write
Add subscribers to incident Official Rootly endpoint: POST /v1/incidents/{id}/add_subscribers Add subscribers to incident
- Lua path
app.integrations.rootly.add_subscribers_incident- Full name
rootly.rootly_add_subscribers_to_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_subscribers_from_incident Write
Remove subscribers from incident Official Rootly endpoint: DELETE /v1/incidents/{id}/remove_subscribers Remove subscribers to incident
- Lua path
app.integrations.rootly.remove_subscribers_from_incident- Full name
rootly.rootly_remove_subscribers_to_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
assign_user_incident Write
Assign user to incident Official Rootly endpoint: POST /v1/incidents/{id}/assign_role_to_user Assign user to incident
- Lua path
app.integrations.rootly.assign_user_incident- Full name
rootly.rootly_assign_user_to_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_assigned_user_from_incident Write
Remove assigned user from incident Official Rootly endpoint: DELETE /v1/incidents/{id}/unassign_role_from_user Remove assigned user from incident
- Lua path
app.integrations.rootly.remove_assigned_user_from_incident- Full name
rootly.rootly_remove_assigned_user_from_incident
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_ip_ranges Read
Retrieves IP ranges Official Rootly endpoint: GET /v1/ip_ranges Retrieves the IP ranges for rootly.com services
- Lua path
app.integrations.rootly.retrieves_ip_ranges- Full name
rootly.rootly_get_ip_ranges
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_live_call_routers Read
List Live Call Routers Official Rootly endpoint: GET /v1/live_call_routers List Live Call Routers
- Lua path
app.integrations.rootly.list_live_call_routers- Full name
rootly.rootly_list_live_call_routers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_live_call_router Write
Creates a Live Call Router Official Rootly endpoint: POST /v1/live_call_routers Creates a new Live Call Router from provided data
- Lua path
app.integrations.rootly.creates_live_call_router- Full name
rootly.rootly_create_live_call_router
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
generates_phone_number_live_call_router Read
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
- Lua path
app.integrations.rootly.generates_phone_number_live_call_router- Full name
rootly.rootly_generate_phone_number_live_call_router
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_live_call_router Read
Retrieves a Live Call Router Official Rootly endpoint: GET /v1/live_call_routers/{id} Retrieves a specific Live Call Router by id
- Lua path
app.integrations.rootly.retrieves_live_call_router- Full name
rootly.rootly_get_live_call_router
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_live_call_router Write
Update a Live Call Router Official Rootly endpoint: PUT /v1/live_call_routers/{id} Update a specific Live Call Router by id
- Lua path
app.integrations.rootly.update_live_call_router- Full name
rootly.rootly_update_live_call_router
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_live_call_router Write
Delete a Live Call Router Official Rootly endpoint: DELETE /v1/live_call_routers/{id} Delete a specific Live Call Router by id
- Lua path
app.integrations.rootly.delete_live_call_router- Full name
rootly.rootly_delete_live_call_router
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_meeting_recordings Read
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
- Lua path
app.integrations.rootly.list_meeting_recordings- Full name
rootly.rootly_list_meeting_recordings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_meeting_recording Write
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
- Lua path
app.integrations.rootly.create_meeting_recording- Full name
rootly.rootly_create_meeting_recording
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_meeting_recording Read
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.
- Lua path
app.integrations.rootly.get_meeting_recording- Full name
rootly.rootly_get_meeting_recording
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_meeting_recording Write
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.
- Lua path
app.integrations.rootly.delete_meeting_recording- Full name
rootly.rootly_delete_meeting_recording
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_video_from_meeting_recording Write
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
- Lua path
app.integrations.rootly.delete_video_from_meeting_recording- Full name
rootly.rootly_delete_meeting_recording_video
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
pause_meeting_recording Write
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.
- Lua path
app.integrations.rootly.pause_meeting_recording- Full name
rootly.rootly_pause_meeting_recording
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
resume_meeting_recording Write
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.
- Lua path
app.integrations.rootly.resume_meeting_recording- Full name
rootly.rootly_resume_meeting_recording
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
stop_meeting_recording Write
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
- Lua path
app.integrations.rootly.stop_meeting_recording- Full name
rootly.rootly_stop_meeting_recording
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
leave_meeting_call Write
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
- Lua path
app.integrations.rootly.leave_meeting_call- Full name
rootly.rootly_leave_meeting_recording
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_call_pay_reports Read
List On-Call Pay Reports Official Rootly endpoint: GET /v1/on_call_pay_reports List on-call pay reports
- Lua path
app.integrations.rootly.list_call_pay_reports- Full name
rootly.rootly_list_on_call_pay_reports
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_call_pay_report Write
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.
- Lua path
app.integrations.rootly.creates_call_pay_report- Full name
rootly.rootly_create_on_call_pay_report
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_call_pay_report Read
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
- Lua path
app.integrations.rootly.retrieves_call_pay_report- Full name
rootly.rootly_get_on_call_pay_report
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_call_pay_report Write
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.
- Lua path
app.integrations.rootly.update_call_pay_report- Full name
rootly.rootly_update_on_call_pay_report
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
regenerate_call_pay_report Write
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.
- Lua path
app.integrations.rootly.regenerate_call_pay_report- Full name
rootly.rootly_regenerate_on_call_pay_report
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_call_roles Read
List On-Call Roles Official Rootly endpoint: GET /v1/on_call_roles List On-Call Roles
- Lua path
app.integrations.rootly.list_call_roles- Full name
rootly.rootly_list_on_call_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_call_role Write
Creates an On-Call Role Official Rootly endpoint: POST /v1/on_call_roles Creates a new On-Call Role from provided data
- Lua path
app.integrations.rootly.creates_call_role- Full name
rootly.rootly_create_on_call_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_call_role Read
Retrieves an On-Call Role Official Rootly endpoint: GET /v1/on_call_roles/{id} Retrieves a specific On-Call Role by id
- Lua path
app.integrations.rootly.retrieves_call_role- Full name
rootly.rootly_get_on_call_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_call_role Write
Update an On-Call Role Official Rootly endpoint: PUT /v1/on_call_roles/{id} Update a specific On-Call Role by id
- Lua path
app.integrations.rootly.update_call_role- Full name
rootly.rootly_update_on_call_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_call_role Write
Delete an On-Call Role Official Rootly endpoint: DELETE /v1/on_call_roles/{id} Delete a specific On-Call Role by id
- Lua path
app.integrations.rootly.delete_call_role- Full name
rootly.rootly_delete_on_call_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_call_shadows_shift Read
List On Call Shadows for Shift Official Rootly endpoint: GET /v1/schedules/{schedule_id}/on_call_shadows List shadow shifts for schedule
- Lua path
app.integrations.rootly.list_call_shadows_shift- Full name
rootly.rootly_list_on_call_shadows
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_shadow_configuration Write
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
- Lua path
app.integrations.rootly.creates_shadow_configuration- Full name
rootly.rootly_create_on_call_shadow
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_call_shadow_configuration_by_id Read
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
- Lua path
app.integrations.rootly.retrieves_call_shadow_configuration_by_id- Full name
rootly.rootly_get_on_call_shadow
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_call_shadow_configuration Write
Update an On Call Shadow configuration Official Rootly endpoint: PUT /v1/on_call_shadows/{id} Update a specific on call shadow configuration by id
- Lua path
app.integrations.rootly.update_call_shadow_configuration- Full name
rootly.rootly_update_on_call_shadow
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_call_shadow_configuration Write
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
- Lua path
app.integrations.rootly.delete_call_shadow_configuration- Full name
rootly.rootly_delete_on_call_shadow
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_calls Read
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.
- Lua path
app.integrations.rootly.list_calls- Full name
rootly.rootly_list_oncalls
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_override_shifts Read
List override shifts Official Rootly endpoint: GET /v1/schedules/{schedule_id}/override_shifts List override shifts
- Lua path
app.integrations.rootly.list_override_shifts- Full name
rootly.rootly_list_override_shifts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_override_shift Write
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
- Lua path
app.integrations.rootly.creates_override_shift- Full name
rootly.rootly_create_override_shift
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_override_shift Read
Retrieves an override shift Official Rootly endpoint: GET /v1/override_shifts/{id} Retrieves a specific override shift by id
- Lua path
app.integrations.rootly.retrieves_override_shift- Full name
rootly.rootly_get_override_shift
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_override_shift Write
Update an override shift Official Rootly endpoint: PUT /v1/override_shifts/{id} Update a specific override shift by id
- Lua path
app.integrations.rootly.update_override_shift- Full name
rootly.rootly_update_override_shift
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_override_shift Write
Delete an override shift Official Rootly endpoint: DELETE /v1/override_shifts/{id} Delete a specific override shift by id
- Lua path
app.integrations.rootly.delete_override_shift- Full name
rootly.rootly_delete_override_shift
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_playbook_tasks Read
List playbook tasks Official Rootly endpoint: GET /v1/playbooks/{playbook_id}/playbook_tasks List playbook tasks
- Lua path
app.integrations.rootly.list_playbook_tasks- Full name
rootly.rootly_list_playbook_tasks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_playbook_task Write
Creates a playbook task Official Rootly endpoint: POST /v1/playbooks/{playbook_id}/playbook_tasks Creates a new task from provided data
- Lua path
app.integrations.rootly.creates_playbook_task- Full name
rootly.rootly_create_playbook_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_playbook_task Read
Retrieves a playbook task Official Rootly endpoint: GET /v1/playbook_tasks/{id} Retrieves a specific playbook_task by id
- Lua path
app.integrations.rootly.retrieves_playbook_task- Full name
rootly.rootly_get_playbook_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_playbook_task Write
Update a playbook task Official Rootly endpoint: PUT /v1/playbook_tasks/{id} Update a specific playbook task by id
- Lua path
app.integrations.rootly.update_playbook_task- Full name
rootly.rootly_update_playbook_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_playbook_task Write
Delete a playbook task Official Rootly endpoint: DELETE /v1/playbook_tasks/{id} Delete a specific playbook task by id
- Lua path
app.integrations.rootly.delete_playbook_task- Full name
rootly.rootly_delete_playbook_task
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_playbooks Read
List playbooks Official Rootly endpoint: GET /v1/playbooks List playbooks
- Lua path
app.integrations.rootly.list_playbooks- Full name
rootly.rootly_list_playbooks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_playbook Write
Creates a playbook Official Rootly endpoint: POST /v1/playbooks Creates a new playbook from provided data
- Lua path
app.integrations.rootly.creates_playbook- Full name
rootly.rootly_create_playbook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_playbook Read
Retrieves a playbook Official Rootly endpoint: GET /v1/playbooks/{id} Retrieves a specific playbook by id
- Lua path
app.integrations.rootly.retrieves_playbook- Full name
rootly.rootly_get_playbook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_playbook Write
Update a playbook Official Rootly endpoint: PUT /v1/playbooks/{id} Update a specific playbook by id
- Lua path
app.integrations.rootly.update_playbook- Full name
rootly.rootly_update_playbook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_playbook Write
Delete a playbook Official Rootly endpoint: DELETE /v1/playbooks/{id} Delete a specific playbook by id
- Lua path
app.integrations.rootly.delete_playbook- Full name
rootly.rootly_delete_playbook
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_retrospective_templates Read
List Retrospective Templates Official Rootly endpoint: GET /v1/post_mortem_templates List Retrospective Templates
- Lua path
app.integrations.rootly.list_retrospective_templates- Full name
rootly.rootly_list_postmortem_templates
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_retrospective_template Write
Creates a retrospective template Official Rootly endpoint: POST /v1/post_mortem_templates Creates a new Retrospective Template from provided data
- Lua path
app.integrations.rootly.creates_retrospective_template- Full name
rootly.rootly_create_postmortem_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_retrospective_template Read
Retrieves a Retrospective Template Official Rootly endpoint: GET /v1/post_mortem_templates/{id} Retrieves a specific Retrospective Template by id
- Lua path
app.integrations.rootly.retrieves_retrospective_template- Full name
rootly.rootly_get_postmortem_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_retrospective_template Write
Update a Retrospective Template Official Rootly endpoint: PUT /v1/post_mortem_templates/{id} Update a specific Retrospective Template by id
- Lua path
app.integrations.rootly.update_retrospective_template- Full name
rootly.rootly_update_postmortem_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_retrospective_template Write
Delete a Retrospective Template Official Rootly endpoint: DELETE /v1/post_mortem_templates/{id} Delete a specific Retrospective Template by id
- Lua path
app.integrations.rootly.delete_retrospective_template- Full name
rootly.rootly_delete_postmortem_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_pulses Read
List pulses Official Rootly endpoint: GET /v1/pulses List pulses
- Lua path
app.integrations.rootly.list_pulses- Full name
rootly.rootly_list_pulses
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_pulse Write
Creates a pulse Official Rootly endpoint: POST /v1/pulses Creates a new pulse from provided data
- Lua path
app.integrations.rootly.creates_pulse- Full name
rootly.rootly_create_pulse
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_pulse Read
Retrieves a pulse Official Rootly endpoint: GET /v1/pulses/{id} Retrieves a specific pulse by id
- Lua path
app.integrations.rootly.retrieves_pulse- Full name
rootly.rootly_get_pulse
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_pulse Write
Update a pulse Official Rootly endpoint: PUT /v1/pulses/{id} Update a specific pulse by id
- Lua path
app.integrations.rootly.update_pulse- Full name
rootly.rootly_update_pulse
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_retrospective_configurations Read
List retrospective configurations Official Rootly endpoint: GET /v1/retrospective_configurations List retrospective configurations
- Lua path
app.integrations.rootly.list_retrospective_configurations- Full name
rootly.rootly_list_retrospective_configurations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_retrospective_configuration Read
Retrieves a Retrospective Configuration Official Rootly endpoint: GET /v1/retrospective_configurations/{id} Retrieves a specific retrospective_configuration by id
- Lua path
app.integrations.rootly.retrieves_retrospective_configuration- Full name
rootly.rootly_get_retrospective_configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_retrospective_configuration Write
Update a retrospective configuration Official Rootly endpoint: PUT /v1/retrospective_configurations/{id} Update a specific retrospective configuration by id
- Lua path
app.integrations.rootly.update_retrospective_configuration- Full name
rootly.rootly_update_retrospective_configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_retrospectiveprocessgroup_steps Read
List RetrospectiveProcessGroup Steps Official Rootly endpoint: GET /v1/retrospective_process_groups/{retrospective_process_group_id}/steps List RetrospectiveProcessGroup Steps
- Lua path
app.integrations.rootly.list_retrospectiveprocessgroup_steps- Full name
rootly.rootly_list_retrospective_process_group_steps
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_retrospective_process_group_step Write
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
- Lua path
app.integrations.rootly.creates_retrospective_process_group_step- Full name
rootly.rootly_create_retrospective_process_group_step
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_retrospectiveprocessgroup_step Read
Retrieves a RetrospectiveProcessGroup Step Official Rootly endpoint: GET /v1/retrospective_process_group_steps/{id} Retrieves a specific RetrospectiveProcessGroup Step by id
- Lua path
app.integrations.rootly.retrieves_retrospectiveprocessgroup_step- Full name
rootly.rootly_get_retrospective_process_group_step
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_retrospectiveprocessgroup_step Write
Update RetrospectiveProcessGroup Step Official Rootly endpoint: PUT /v1/retrospective_process_group_steps/{id} Update a specific RetrospectiveProcessGroup Step by id
- Lua path
app.integrations.rootly.update_retrospectiveprocessgroup_step- Full name
rootly.rootly_update_retrospective_process_group_step
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_retrospectiveprocessgroup_step Write
Delete a RetrospectiveProcessGroup Step Official Rootly endpoint: DELETE /v1/retrospective_process_group_steps/{id} Delete a specific RetrospectiveProcessGroup Step by id
- Lua path
app.integrations.rootly.delete_retrospectiveprocessgroup_step- Full name
rootly.rootly_delete_retrospective_process_group_step
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_retrospective_process_groups Read
List Retrospective Process Groups Official Rootly endpoint: GET /v1/retrospective_processes/{retrospective_process_id}/groups List Retrospective Process Groups
- Lua path
app.integrations.rootly.list_retrospective_process_groups- Full name
rootly.rootly_list_retrospective_process_groups
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_retrospective_process_group Write
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
- Lua path
app.integrations.rootly.creates_retrospective_process_group- Full name
rootly.rootly_create_retrospective_process_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_retrospective_process_group Read
Retrieves a Retrospective Process Group Official Rootly endpoint: GET /v1/retrospective_process_groups/{id} Retrieves a specific Retrospective Process Group by id
- Lua path
app.integrations.rootly.retrieves_retrospective_process_group- Full name
rootly.rootly_get_retrospective_process_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_retrospective_process_group Write
Update a Retrospective Process Group Official Rootly endpoint: PUT /v1/retrospective_process_groups/{id} Update a specific Retrospective Process Group by id
- Lua path
app.integrations.rootly.update_retrospective_process_group- Full name
rootly.rootly_update_retrospective_process_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_retrospective_process_group Write
Delete a Retrospective Process Group Official Rootly endpoint: DELETE /v1/retrospective_process_groups/{id} Delete a specific Retrospective Process Group by id
- Lua path
app.integrations.rootly.delete_retrospective_process_group- Full name
rootly.rootly_delete_retrospective_process_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_retrospective_processes Read
List retrospective processes Official Rootly endpoint: GET /v1/retrospective_processes List retrospective processes
- Lua path
app.integrations.rootly.list_retrospective_processes- Full name
rootly.rootly_list_retrospective_processes
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_retrospective_process Write
Creates a retrospective process Official Rootly endpoint: POST /v1/retrospective_processes Creates a new retrospective process from provided data
- Lua path
app.integrations.rootly.creates_retrospective_process- Full name
rootly.rootly_create_retrospective_process
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_retrospective_process Read
Retrieves a retrospective process Official Rootly endpoint: GET /v1/retrospective_processes/{id} Retrieves a specific retrospective process by id
- Lua path
app.integrations.rootly.retrieves_retrospective_process- Full name
rootly.rootly_get_retrospective_process
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_retrospective_process Write
Update a retrospective process Official Rootly endpoint: PUT /v1/retrospective_processes/{id} Updates a specific retrospective process by id
- Lua path
app.integrations.rootly.update_retrospective_process- Full name
rootly.rootly_update_retrospective_process
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_retrospective_process Write
Delete a retrospective process Official Rootly endpoint: DELETE /v1/retrospective_processes/{id} Delete a specific retrospective process by id
- Lua path
app.integrations.rootly.delete_retrospective_process- Full name
rootly.rootly_delete_retrospective_process
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_retrospective_steps Read
List retrospective steps Official Rootly endpoint: GET /v1/retrospective_processes/{retrospective_process_id}/retrospective_steps List retrospective steps
- Lua path
app.integrations.rootly.list_retrospective_steps- Full name
rootly.rootly_list_retrospective_steps
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_retrospective_step Write
Creates a retrospective step Official Rootly endpoint: POST /v1/retrospective_processes/{retrospective_process_id}/retrospective_steps Creates a new retrospective step from provided data
- Lua path
app.integrations.rootly.creates_retrospective_step- Full name
rootly.rootly_create_retrospective_step
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_retrospective_step Read
Retrieves a retrospective step Official Rootly endpoint: GET /v1/retrospective_steps/{id} Retrieves a specific retrospective step by id
- Lua path
app.integrations.rootly.retrieves_retrospective_step- Full name
rootly.rootly_get_retrospective_step
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_retrospective_step Write
Update a retrospective step Official Rootly endpoint: PUT /v1/retrospective_steps/{id} Update a specific retrospective step by id
- Lua path
app.integrations.rootly.update_retrospective_step- Full name
rootly.rootly_update_retrospective_step
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_retrospective_step Write
Delete a retrospective step Official Rootly endpoint: DELETE /v1/retrospective_steps/{id} Delete a specific retrospective step by id
- Lua path
app.integrations.rootly.delete_retrospective_step- Full name
rootly.rootly_delete_retrospective_step
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_roles Read
List roles Official Rootly endpoint: GET /v1/roles List roles
- Lua path
app.integrations.rootly.list_roles- Full name
rootly.rootly_list_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_role Write
Creates a role Official Rootly endpoint: POST /v1/roles Creates a new role from provided data
- Lua path
app.integrations.rootly.creates_role- Full name
rootly.rootly_create_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_role Read
Retrieves a role Official Rootly endpoint: GET /v1/roles/{id} Retrieves a specific role by id
- Lua path
app.integrations.rootly.retrieves_role- Full name
rootly.rootly_get_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_role Write
Update a role Official Rootly endpoint: PUT /v1/roles/{id} Update a specific role by id
- Lua path
app.integrations.rootly.update_role- Full name
rootly.rootly_update_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_role Write
Delete a role Official Rootly endpoint: DELETE /v1/roles/{id} Delete a specific role by id
- Lua path
app.integrations.rootly.delete_role- Full name
rootly.rootly_delete_role
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_schedule_rotation_active_days Read
List schedule rotation active days Official Rootly endpoint: GET /v1/schedule_rotations/{schedule_rotation_id}/schedule_rotation_active_days List schedule rotation active days
- Lua path
app.integrations.rootly.list_schedule_rotation_active_days- Full name
rootly.rootly_list_schedule_rotation_active_days
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_schedule_rotation_active_day Write
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
- Lua path
app.integrations.rootly.creates_schedule_rotation_active_day- Full name
rootly.rootly_create_schedule_rotation_active_day
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_schedule_rotation_active_day Read
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
- Lua path
app.integrations.rootly.retrieves_schedule_rotation_active_day- Full name
rootly.rootly_get_schedule_rotation_active_day
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_schedule_rotation_active_day Write
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
- Lua path
app.integrations.rootly.update_schedule_rotation_active_day- Full name
rootly.rootly_update_schedule_rotation_active_day
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_schedule_rotation_active_day Write
Delete a schedule rotation active day Official Rootly endpoint: DELETE /v1/schedule_rotation_active_days/{id} Delete a specific schedule rotation active day
- Lua path
app.integrations.rootly.delete_schedule_rotation_active_day- Full name
rootly.rootly_delete_schedule_rotation_active_day
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_schedule_rotation_users Read
List schedule rotation users Official Rootly endpoint: GET /v1/schedule_rotations/{schedule_rotation_id}/schedule_rotation_users
- Lua path
app.integrations.rootly.list_schedule_rotation_users- Full name
rootly.rootly_list_schedule_rotation_users
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_schedule_rotation_user Write
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
- Lua path
app.integrations.rootly.creates_schedule_rotation_user- Full name
rootly.rootly_create_schedule_rotation_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_schedule_rotation_user Read
Retrieves a schedule rotation user Official Rootly endpoint: GET /v1/schedule_rotation_users/{id} Retrieves a specific schedule rotation user by id
- Lua path
app.integrations.rootly.retrieves_schedule_rotation_user- Full name
rootly.rootly_get_schedule_rotation_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_schedule_rotation_user Write
Update schedule rotation user Official Rootly endpoint: PUT /v1/schedule_rotation_users/{id} Update a specific schedule rotation user by id
- Lua path
app.integrations.rootly.update_schedule_rotation_user- Full name
rootly.rootly_update_schedule_rotation_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_schedule_rotation_user Write
Delete a schedule rotation user Official Rootly endpoint: DELETE /v1/schedule_rotation_users/{id} Delete a specific schedule rotation user by id
- Lua path
app.integrations.rootly.delete_schedule_rotation_user- Full name
rootly.rootly_delete_schedule_rotation_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_schedule_rotations Read
List schedule rotations Official Rootly endpoint: GET /v1/schedules/{schedule_id}/schedule_rotations List schedule rotations
- Lua path
app.integrations.rootly.list_schedule_rotations- Full name
rootly.rootly_list_schedule_rotations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_schedule_rotation Write
Creates a schedule rotation Official Rootly endpoint: POST /v1/schedules/{schedule_id}/schedule_rotations Creates a new schedule rotation from provided data
- Lua path
app.integrations.rootly.creates_schedule_rotation- Full name
rootly.rootly_create_schedule_rotation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_schedule_rotation Read
Retrieves a schedule rotation Official Rootly endpoint: GET /v1/schedule_rotations/{id} Retrieves a specific schedule rotation by id
- Lua path
app.integrations.rootly.retrieves_schedule_rotation- Full name
rootly.rootly_get_schedule_rotation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_schedule_rotation Write
Update a schedule rotation Official Rootly endpoint: PUT /v1/schedule_rotations/{id} Update a specific schedule rotation by id
- Lua path
app.integrations.rootly.update_schedule_rotation- Full name
rootly.rootly_update_schedule_rotation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_schedule_rotation Write
Delete a schedule rotation Official Rootly endpoint: DELETE /v1/schedule_rotations/{id} Delete a specific schedule rotation by id
- Lua path
app.integrations.rootly.delete_schedule_rotation- Full name
rootly.rootly_delete_schedule_rotation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_schedules Read
List schedules Official Rootly endpoint: GET /v1/schedules List schedules
- Lua path
app.integrations.rootly.list_schedules- Full name
rootly.rootly_list_schedules
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_schedule Write
Creates a schedule Official Rootly endpoint: POST /v1/schedules Creates a new schedule from provided data
- Lua path
app.integrations.rootly.creates_schedule- Full name
rootly.rootly_create_schedule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_schedule Read
Retrieves a schedule Official Rootly endpoint: GET /v1/schedules/{id} Retrieves a specific schedule by id
- Lua path
app.integrations.rootly.retrieves_schedule- Full name
rootly.rootly_get_schedule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_schedule Write
Update a schedule Official Rootly endpoint: PUT /v1/schedules/{id} Updates a specific schedule by id
- Lua path
app.integrations.rootly.update_schedule- Full name
rootly.rootly_update_schedule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_schedule Write
Delete a schedule Official Rootly endpoint: DELETE /v1/schedules/{id} Delete a specific schedule by id
- Lua path
app.integrations.rootly.delete_schedule- Full name
rootly.rootly_delete_schedule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_schedule_shifts Read
Retrieves a schedule shifts Official Rootly endpoint: GET /v1/schedules/{id}/shifts Retrieves schedule shifts
- Lua path
app.integrations.rootly.retrieves_schedule_shifts- Full name
rootly.rootly_get_schedule_shifts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_secrets Read
List secrets Official Rootly endpoint: GET /v1/secrets List secrets
- Lua path
app.integrations.rootly.list_secrets- Full name
rootly.rootly_list_secrets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_secret Write
Creates a secret Official Rootly endpoint: POST /v1/secrets Creates a new secret from provided data
- Lua path
app.integrations.rootly.creates_secret- Full name
rootly.rootly_create_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_secret Read
Retrieves a secret Official Rootly endpoint: GET /v1/secrets/{id} Retrieve a specific secret by id
- Lua path
app.integrations.rootly.retrieves_secret- Full name
rootly.rootly_get_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_secret Write
Update a secret Official Rootly endpoint: PUT /v1/secrets/{id} Update a specific secret by id
- Lua path
app.integrations.rootly.update_secret- Full name
rootly.rootly_update_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_secret Write
Delete a secret Official Rootly endpoint: DELETE /v1/secrets/{id} Delete a specific secret by id
- Lua path
app.integrations.rootly.delete_secret- Full name
rootly.rootly_delete_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_services Read
List services Official Rootly endpoint: GET /v1/services List services
- Lua path
app.integrations.rootly.list_services- Full name
rootly.rootly_list_services
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_service Write
Creates a service Official Rootly endpoint: POST /v1/services Creates a new service from provided data
- Lua path
app.integrations.rootly.creates_service- Full name
rootly.rootly_create_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_service Read
Retrieves a service Official Rootly endpoint: GET /v1/services/{id} Retrieves a specific service by id
- Lua path
app.integrations.rootly.retrieves_service- Full name
rootly.rootly_get_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_service Write
Update a service Official Rootly endpoint: PUT /v1/services/{id} Update a specific service by id
- Lua path
app.integrations.rootly.update_service- Full name
rootly.rootly_update_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_service Write
Delete a service Official Rootly endpoint: DELETE /v1/services/{id} Delete a specific service by id
- Lua path
app.integrations.rootly.delete_service- Full name
rootly.rootly_delete_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_service_incidents_chart Read
Get service incidents chart Official Rootly endpoint: GET /v1/services/{id}/incidents_chart Get service incidents chart
- Lua path
app.integrations.rootly.get_service_incidents_chart- Full name
rootly.rootly_get_service_incidents_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_service_uptime_chart Read
Get service uptime chart Official Rootly endpoint: GET /v1/services/{id}/uptime_chart Get service uptime chart
- Lua path
app.integrations.rootly.get_service_uptime_chart- Full name
rootly.rootly_get_service_uptime_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_properties Read
List Catalog Properties Official Rootly endpoint: GET /v1/services/properties List Service Catalog Properties
- Lua path
app.integrations.rootly.list_catalog_properties- Full name
rootly.rootly_list_service_catalog_properties
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog_property Write
Creates a Catalog Property Official Rootly endpoint: POST /v1/services/properties Creates a new Catalog Property from provided data
- Lua path
app.integrations.rootly.creates_catalog_property- Full name
rootly.rootly_create_service_catalog_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_severities Read
List severities Official Rootly endpoint: GET /v1/severities List severities
- Lua path
app.integrations.rootly.list_severities- Full name
rootly.rootly_list_severities
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_severity Write
Creates a severity Official Rootly endpoint: POST /v1/severities Creates a new severity from provided data
- Lua path
app.integrations.rootly.creates_severity- Full name
rootly.rootly_create_severity
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_severity Read
Retrieves a severity Official Rootly endpoint: GET /v1/severities/{id} Retrieves a specific severity by id
- Lua path
app.integrations.rootly.retrieves_severity- Full name
rootly.rootly_get_severity
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_severity Write
Update a severity Official Rootly endpoint: PUT /v1/severities/{id} Update a specific severity by id
- Lua path
app.integrations.rootly.update_severity- Full name
rootly.rootly_update_severity
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_severity Write
Delete a severity Official Rootly endpoint: DELETE /v1/severities/{id} Delete a specific severity by id
- Lua path
app.integrations.rootly.delete_severity- Full name
rootly.rootly_delete_severity
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_shifts Read
List shifts Official Rootly endpoint: GET /v1/shifts List shifts
- Lua path
app.integrations.rootly.list_shifts- Full name
rootly.rootly_list_shifts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_slas Read
List SLAs Official Rootly endpoint: GET /v1/slas List SLAs
- Lua path
app.integrations.rootly.list_slas- Full name
rootly.rootly_list_slas
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_sla Write
Creates an SLA Official Rootly endpoint: POST /v1/slas Creates a new SLA from provided data
- Lua path
app.integrations.rootly.creates_sla- Full name
rootly.rootly_create_sla
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_sla Read
Retrieves an SLA Official Rootly endpoint: GET /v1/slas/{id} Retrieves a specific SLA by id
- Lua path
app.integrations.rootly.retrieves_sla- Full name
rootly.rootly_get_sla
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_sla Write
Update an SLA Official Rootly endpoint: PUT /v1/slas/{id} Update a specific SLA by id
- Lua path
app.integrations.rootly.update_sla- Full name
rootly.rootly_update_sla
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_sla Write
Delete an SLA Official Rootly endpoint: DELETE /v1/slas/{id} Delete a specific SLA by id
- Lua path
app.integrations.rootly.delete_sla- Full name
rootly.rootly_delete_sla
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_status_page_templates Read
List status page templates Official Rootly endpoint: GET /v1/status-pages/{status_page_id}/templates List status page templates
- Lua path
app.integrations.rootly.list_status_page_templates- Full name
rootly.rootly_list_status_page_templates
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_status_page_template Write
Creates a status page template Official Rootly endpoint: POST /v1/status-pages/{status_page_id}/templates Creates a new template from provided data
- Lua path
app.integrations.rootly.creates_status_page_template- Full name
rootly.rootly_create_status_page_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_status_page_template Read
Retrieves a status page template Official Rootly endpoint: GET /v1/templates/{id} Retrieves a specific status_page_template by id
- Lua path
app.integrations.rootly.retrieves_status_page_template- Full name
rootly.rootly_get_status_page_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_status_page_template Write
Update status page template Official Rootly endpoint: PUT /v1/templates/{id} Update a specific template event by id
- Lua path
app.integrations.rootly.update_status_page_template- Full name
rootly.rootly_update_status_page_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_incident_event Write
Delete a incident event Official Rootly endpoint: DELETE /v1/templates/{id} Delete a specific template event by id
- Lua path
app.integrations.rootly.delete_incident_event- Full name
rootly.rootly_delete_status_page_template
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_status_pages Read
List status pages Official Rootly endpoint: GET /v1/status-pages List status pages
- Lua path
app.integrations.rootly.list_status_pages- Full name
rootly.rootly_list_status_pages
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_status_page Write
Creates a status page Official Rootly endpoint: POST /v1/status-pages Creates a new status page from provided data
- Lua path
app.integrations.rootly.creates_status_page- Full name
rootly.rootly_create_status_page
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_status_page Read
Retrieves a status page Official Rootly endpoint: GET /v1/status-pages/{id} Retrieves a specific status page by id
- Lua path
app.integrations.rootly.retrieves_status_page- Full name
rootly.rootly_get_status_page
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_status_page Write
Update a status page Official Rootly endpoint: PUT /v1/status-pages/{id} Update a specific status page by id
- Lua path
app.integrations.rootly.update_status_page- Full name
rootly.rootly_update_status_page
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_status_page Write
Delete a status page Official Rootly endpoint: DELETE /v1/status-pages/{id} Delete a specific status page by id
- Lua path
app.integrations.rootly.delete_status_page- Full name
rootly.rootly_delete_status_page
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_statuses Read
List Statuses Official Rootly endpoint: GET /v1/statuses List Statuses
- Lua path
app.integrations.rootly.list_statuses- Full name
rootly.rootly_list_statuses
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_status Read
Retrieves a Status Official Rootly endpoint: GET /v1/statuses/{id} Retrieves a specific Status by id
- Lua path
app.integrations.rootly.retrieves_status- Full name
rootly.rootly_get_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_sub_statuses Read
List Sub-Statuses Official Rootly endpoint: GET /v1/sub_statuses List Sub-Statuses
- Lua path
app.integrations.rootly.list_sub_statuses- Full name
rootly.rootly_list_sub_statuses
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_sub_status Write
Creates a Sub-Status Official Rootly endpoint: POST /v1/sub_statuses Creates a new Sub-Status from provided data
- Lua path
app.integrations.rootly.creates_sub_status- Full name
rootly.rootly_create_sub_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_sub_status Read
Retrieves a Sub-Status Official Rootly endpoint: GET /v1/sub_statuses/{id} Retrieves a specific Sub-Status by id
- Lua path
app.integrations.rootly.retrieves_sub_status- Full name
rootly.rootly_get_sub_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_sub_status Write
Update a Sub-Status Official Rootly endpoint: PUT /v1/sub_statuses/{id} Update a specific Sub-Status by id
- Lua path
app.integrations.rootly.update_sub_status- Full name
rootly.rootly_update_sub_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_sub_status Write
Delete a Sub-Status Official Rootly endpoint: DELETE /v1/sub_statuses/{id} Delete a specific Sub-Status by id
- Lua path
app.integrations.rootly.delete_sub_status- Full name
rootly.rootly_delete_sub_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_teams Read
List teams Official Rootly endpoint: GET /v1/teams List teams
- Lua path
app.integrations.rootly.list_teams- Full name
rootly.rootly_list_teams
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_team Write
Creates a team Official Rootly endpoint: POST /v1/teams Creates a new team from provided data
- Lua path
app.integrations.rootly.creates_team- Full name
rootly.rootly_create_team
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_team Read
Retrieves a team Official Rootly endpoint: GET /v1/teams/{id} Retrieves a specific team by id
- Lua path
app.integrations.rootly.retrieves_team- Full name
rootly.rootly_get_team
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_team Write
Update a team Official Rootly endpoint: PUT /v1/teams/{id} Update a specific team by id
- Lua path
app.integrations.rootly.update_team- Full name
rootly.rootly_update_team
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_team Write
Delete a team Official Rootly endpoint: DELETE /v1/teams/{id} Delete a specific team by id
- Lua path
app.integrations.rootly.delete_team- Full name
rootly.rootly_delete_team
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_team_incidents_chart Read
Get team incidents chart Official Rootly endpoint: GET /v1/teams/{id}/incidents_chart Get team incidents chart
- Lua path
app.integrations.rootly.get_team_incidents_chart- Full name
rootly.rootly_get_team_incidents_chart
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_catalog_properties Read
List Catalog Properties Official Rootly endpoint: GET /v1/teams/properties List Group Catalog Properties
- Lua path
app.integrations.rootly.list_catalog_properties- Full name
rootly.rootly_list_group_catalog_properties
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_catalog_property Write
Creates a Catalog Property Official Rootly endpoint: POST /v1/teams/properties Creates a new Catalog Property from provided data
- Lua path
app.integrations.rootly.creates_catalog_property- Full name
rootly.rootly_create_group_catalog_property
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_user_email_addresses Read
Retrieves user email addresses Official Rootly endpoint: GET /v1/users/{user_id}/email_addresses Retrieves all email addresses for the specified user
- Lua path
app.integrations.rootly.retrieves_user_email_addresses- Full name
rootly.rootly_get_user_email_addresses
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_user_email_address Write
Creates a user email address Official Rootly endpoint: POST /v1/users/{user_id}/email_addresses Creates a new user email address from provided data
- Lua path
app.integrations.rootly.creates_user_email_address- Full name
rootly.rootly_create_user_email_address
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
show_user_email_address Read
Show user email address Official Rootly endpoint: GET /v1/email_addresses/{id} Retrieves a specific user email address
- Lua path
app.integrations.rootly.show_user_email_address- Full name
rootly.rootly_show_user_email_address
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_user_email_address Write
Update user email address Official Rootly endpoint: PUT /v1/email_addresses/{id} Updates a user email address
- Lua path
app.integrations.rootly.update_user_email_address- Full name
rootly.rootly_update_user_email_address
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_user_email_address Write
Delete user email address Official Rootly endpoint: DELETE /v1/email_addresses/{id} Deletes a user email address
- Lua path
app.integrations.rootly.delete_user_email_address- Full name
rootly.rootly_delete_user_email_address
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
verifies_email_address_with_token Write
Verifies an email address with token Official Rootly endpoint: POST /v1/email_addresses/{id}/verify Verifies an email address using a verification token
- Lua path
app.integrations.rootly.verifies_email_address_with_token- Full name
rootly.rootly_verify_user_email_address
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
resends_verification_email Write
Resends verification email Official Rootly endpoint: POST /v1/email_addresses/{id}/resend_verification Resends verification email for an email address
- Lua path
app.integrations.rootly.resends_verification_email- Full name
rootly.rootly_resend_user_email_address_verification
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_user_notification_rules Read
List user notification rules Official Rootly endpoint: GET /v1/users/{user_id}/notification_rules List user notification rules
- Lua path
app.integrations.rootly.list_user_notification_rules- Full name
rootly.rootly_list_user_notification_rules
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_user_notification_rule Write
Creates an user notification rule Official Rootly endpoint: POST /v1/users/{user_id}/notification_rules Creates a new user notification rule from provided data
- Lua path
app.integrations.rootly.creates_user_notification_rule- Full name
rootly.rootly_create_user_notification_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_user_notification_rule Read
Retrieves an user notification rule Official Rootly endpoint: GET /v1/notification_rules/{id} Retrieves a specific user notification rule by id
- Lua path
app.integrations.rootly.retrieves_user_notification_rule- Full name
rootly.rootly_get_user_notification_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_user_notification_rule Write
Update an user notification rule Official Rootly endpoint: PUT /v1/notification_rules/{id} Update a specific user notification rule by id
- Lua path
app.integrations.rootly.update_user_notification_rule- Full name
rootly.rootly_update_user_notification_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_user_notification_rule Write
Delete an user notification rule Official Rootly endpoint: DELETE /v1/notification_rules/{id} Delete a specific user notification rule by id
- Lua path
app.integrations.rootly.delete_user_notification_rule- Full name
rootly.rootly_delete_user_notification_rule
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_user_phone_numbers Read
Retrieves user phone numbers Official Rootly endpoint: GET /v1/users/{user_id}/phone_numbers Retrieves all phone numbers for the specified user
- Lua path
app.integrations.rootly.retrieves_user_phone_numbers- Full name
rootly.rootly_get_user_phone_numbers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_user_phone_number Write
Creates a user phone number Official Rootly endpoint: POST /v1/users/{user_id}/phone_numbers Creates a new user phone number from provided data
- Lua path
app.integrations.rootly.creates_user_phone_number- Full name
rootly.rootly_create_user_phone_number
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
show_user_phone_number Read
Show user phone number Official Rootly endpoint: GET /v1/phone_numbers/{id} Retrieves a specific user phone number
- Lua path
app.integrations.rootly.show_user_phone_number- Full name
rootly.rootly_show_user_phone_number
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_user_phone_number Write
Update user phone number Official Rootly endpoint: PUT /v1/phone_numbers/{id} Updates a user phone number
- Lua path
app.integrations.rootly.update_user_phone_number- Full name
rootly.rootly_update_user_phone_number
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_user_phone_number Write
Delete user phone number Official Rootly endpoint: DELETE /v1/phone_numbers/{id} Deletes a user phone number
- Lua path
app.integrations.rootly.delete_user_phone_number- Full name
rootly.rootly_delete_user_phone_number
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_users Read
List users Official Rootly endpoint: GET /v1/users List users
- Lua path
app.integrations.rootly.list_users- Full name
rootly.rootly_list_users
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_user Read
Get current user Official Rootly endpoint: GET /v1/users/me Get current user
- Lua path
app.integrations.rootly.get_current_user- Full name
rootly.rootly_get_current_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_user Read
Retrieves an user Official Rootly endpoint: GET /v1/users/{id} Retrieves a specific user by id
- Lua path
app.integrations.rootly.retrieves_user- Full name
rootly.rootly_get_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_user Write
Update a user Official Rootly endpoint: PUT /v1/users/{id} Update a specific user by id
- Lua path
app.integrations.rootly.update_user- Full name
rootly.rootly_update_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_user Write
Delete an user Official Rootly endpoint: DELETE /v1/users/{id} Delete a specific user by id
- Lua path
app.integrations.rootly.delete_user- Full name
rootly.rootly_delete_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_webhook_deliveries Read
List webhook deliveries Official Rootly endpoint: GET /v1/webhooks/endpoints/{endpoint_id}/deliveries List webhook deliveries for given endpoint
- Lua path
app.integrations.rootly.list_webhook_deliveries- Full name
rootly.rootly_list_webhooks_deliveries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retries_webhook_delivery Write
Retries a webhook delivery Official Rootly endpoint: POST /v1/webhooks/deliveries/{id}/deliver Retries a webhook delivery
- Lua path
app.integrations.rootly.retries_webhook_delivery- Full name
rootly.rootly_deliver_webhooks_delivery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_webhook_delivery Read
Retrieves a webhook delivery Official Rootly endpoint: GET /v1/webhooks/deliveries/{id} Retrieves a specific webhook delivery by id
- Lua path
app.integrations.rootly.retrieves_webhook_delivery- Full name
rootly.rootly_get_webhooks_delivery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_webhook_endpoints Read
List webhook endpoints Official Rootly endpoint: GET /v1/webhooks/endpoints List webhook endpoints
- Lua path
app.integrations.rootly.list_webhook_endpoints- Full name
rootly.rootly_list_webhooks_endpoints
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_webhook_endpoint Write
Creates a webhook endpoint Official Rootly endpoint: POST /v1/webhooks/endpoints Creates a new webhook endpoint from provided data
- Lua path
app.integrations.rootly.creates_webhook_endpoint- Full name
rootly.rootly_create_webhooks_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieves_webhook_endpoint Read
Retrieves a webhook endpoint Official Rootly endpoint: GET /v1/webhooks/endpoints/{id} Retrieves a specific webhook endpoint by id
- Lua path
app.integrations.rootly.retrieves_webhook_endpoint- Full name
rootly.rootly_get_webhooks_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_webhook_endpoint Write
Update a webhook endpoint Official Rootly endpoint: PUT /v1/webhooks/endpoints/{id} Update a specific webhook endpoint by id
- Lua path
app.integrations.rootly.update_webhook_endpoint- Full name
rootly.rootly_update_webhooks_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_webhook_endpoint Write
Delete a webhook endpoint Official Rootly endpoint: DELETE /v1/webhooks/endpoints/{id} Delete a specific webhook endpoint by id
- Lua path
app.integrations.rootly.delete_webhook_endpoint- Full name
rootly.rootly_delete_webhooks_endpoint
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||