Mandala
Tools

Rootly

Manage incidents, alerts, and on-call with Rootly

Usage Instructions

Integrate Rootly incident management into workflows. Create and manage incidents, alerts, services, severities, and retrospectives.

Tools

rootly_create_incident

Create a new incident in Rootly with optional severity, services, and teams.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
titlestringNoThe title of the incident (auto-generated if not provided)
summarystringNoA summary of the incident
severityIdstringNoSeverity ID to attach to the incident
statusstringNoIncident status (in_triage, started, detected, acknowledged, mitigated, resolved, closed, cancelled, scheduled, in_progress, completed)
kindstringNoIncident kind (normal, normal_sub, test, test_sub, example, example_sub, backfilled, scheduled, scheduled_sub)
serviceIdsstringNoComma-separated service IDs to attach
environmentIdsstringNoComma-separated environment IDs to attach
groupIdsstringNoComma-separated team/group IDs to attach
incidentTypeIdsstringNoComma-separated incident type IDs to attach
functionalityIdsstringNoComma-separated functionality IDs to attach
labelsstringNoLabels as JSON object, e.g. {"platform":"osx","version":"1.29"}
privatebooleanNoCreate as a private incident (cannot be undone)

Output

ParameterTypeDescription
incidentobjectThe created incident

rootly_get_incident

Retrieve a single incident by ID from Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident to retrieve

Output

ParameterTypeDescription
incidentobjectThe incident details

rootly_update_incident

Update an existing incident in Rootly (status, severity, summary, etc.).

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident to update
titlestringNoUpdated incident title
summarystringNoUpdated incident summary
severityIdstringNoUpdated severity ID
statusstringNoUpdated status (in_triage, started, detected, acknowledged, mitigated, resolved, closed, cancelled, scheduled, in_progress, completed)
kindstringNoIncident kind (normal, normal_sub, test, test_sub, example, example_sub, backfilled, scheduled, scheduled_sub)
privatebooleanNoSet incident as private (cannot be undone)
serviceIdsstringNoComma-separated service IDs
environmentIdsstringNoComma-separated environment IDs
groupIdsstringNoComma-separated team/group IDs
incidentTypeIdsstringNoComma-separated incident type IDs to attach
functionalityIdsstringNoComma-separated functionality IDs to attach
labelsstringNoLabels as JSON object, e.g. {"platform":"osx","version":"1.29"}
mitigationMessagestringNoHow was the incident mitigated?
resolutionMessagestringNoHow was the incident resolved?
cancellationMessagestringNoWhy was the incident cancelled?

Output

ParameterTypeDescription
incidentobjectThe updated incident

rootly_list_incidents

List incidents from Rootly with optional filtering by status, severity, and more.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
statusstringNoFilter by status (in_triage, started, detected, acknowledged, mitigated, resolved, closed, cancelled, scheduled, in_progress, completed)
severitystringNoFilter by severity slug
searchstringNoSearch term to filter incidents
servicesstringNoFilter by service slugs (comma-separated)
teamsstringNoFilter by team slugs (comma-separated)
environmentsstringNoFilter by environment slugs (comma-separated)
sortstringNoSort order (e.g., -created_at, created_at, -started_at)
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
incidentsarrayList of incidents
totalCountnumberTotal number of incidents returned

rootly_create_alert

Create a new alert in Rootly for on-call notification and routing.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
summarystringYesThe summary of the alert
descriptionstringNoA detailed description of the alert
sourcestringNoThe source of the alert (e.g., api, manual, datadog, pagerduty)
statusstringNoAlert status on creation (open, triggered)
serviceIdsstringNoComma-separated service IDs to attach
groupIdsstringNoComma-separated team/group IDs to attach
environmentIdsstringNoComma-separated environment IDs to attach
externalIdstringNoExternal ID for the alert
externalUrlstringNoExternal URL for the alert
deduplicationKeystringNoAlerts sharing the same deduplication key are treated as a single alert

Output

ParameterTypeDescription
alertobjectThe created alert

rootly_list_alerts

List alerts from Rootly with optional filtering by status, source, and services.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
statusstringNoFilter by status (open, triggered, acknowledged, resolved)
sourcestringNoFilter by source (e.g., api, datadog, pagerduty)
servicesstringNoFilter by service slugs (comma-separated)
environmentsstringNoFilter by environment slugs (comma-separated)
groupsstringNoFilter by team/group slugs (comma-separated)
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
alertsarrayList of alerts
totalCountnumberTotal number of alerts returned

rootly_add_incident_event

Add a timeline event to an existing incident in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident to add the event to
eventstringYesThe summary/description of the event
visibilitystringNoEvent visibility (internal or external)

Output

ParameterTypeDescription
eventIdstringThe ID of the created event
eventstringThe event summary
visibilitystringEvent visibility (internal or external)
occurredAtstringWhen the event occurred
createdAtstringCreation date
updatedAtstringLast update date

rootly_list_services

List services from Rootly with optional search filtering.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoSearch term to filter services
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
servicesarrayList of services
totalCountnumberTotal number of services returned

rootly_list_severities

List severity levels configured in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoSearch term to filter severities
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
severitiesarrayList of severity levels
totalCountnumberTotal number of severities returned

rootly_list_teams

List teams (groups) configured in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoSearch term to filter teams
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
teamsarrayList of teams
totalCountnumberTotal number of teams returned

rootly_list_environments

List environments configured in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoSearch term to filter environments
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
environmentsarrayList of environments
totalCountnumberTotal number of environments returned

rootly_list_incident_types

List incident types configured in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoFilter incident types by name
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
incidentTypesarrayList of incident types
totalCountnumberTotal number of incident types returned

rootly_list_functionalities

List functionalities configured in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoSearch term to filter functionalities
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
functionalitiesarrayList of functionalities
totalCountnumberTotal number of functionalities returned

rootly_list_retrospectives

List incident retrospectives (post-mortems) from Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
statusstringNoFilter by status (draft, published)
searchstringNoSearch term to filter retrospectives
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
retrospectivesarrayList of retrospectives
totalCountnumberTotal number of retrospectives returned

rootly_delete_incident

Delete an incident by ID from Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident to delete

Output

ParameterTypeDescription
successbooleanWhether the deletion succeeded
messagestringResult message

rootly_get_alert

Retrieve a single alert by ID from Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
alertIdstringYesThe ID of the alert to retrieve

Output

ParameterTypeDescription
alertobjectThe alert details

rootly_update_alert

Update an existing alert in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
alertIdstringYesThe ID of the alert to update
summarystringNoUpdated alert summary
descriptionstringNoUpdated alert description
sourcestringNoUpdated alert source
serviceIdsstringNoComma-separated service IDs to attach
groupIdsstringNoComma-separated team/group IDs to attach
environmentIdsstringNoComma-separated environment IDs to attach
externalIdstringNoUpdated external ID
externalUrlstringNoUpdated external URL
deduplicationKeystringNoUpdated deduplication key

Output

ParameterTypeDescription
alertobjectThe updated alert

rootly_acknowledge_alert

Acknowledge an alert in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
alertIdstringYesThe ID of the alert to acknowledge

Output

ParameterTypeDescription
alertobjectThe acknowledged alert

rootly_resolve_alert

Resolve an alert in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
alertIdstringYesThe ID of the alert to resolve
resolutionMessagestringNoMessage describing how the alert was resolved
resolveRelatedIncidentsbooleanNoWhether to also resolve related incidents

Output

ParameterTypeDescription
alertobjectThe resolved alert

rootly_create_action_item

Create a new action item for an incident in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident to add the action item to
summarystringYesThe title of the action item
descriptionstringNoA detailed description of the action item
kindstringNoThe kind of action item (task, follow_up)
prioritystringNoPriority level (high, medium, low)
statusstringNoAction item status (open, in_progress, cancelled, done)
assignedToUserIdstringNoThe user ID to assign the action item to
dueDatestringNoDue date for the action item

Output

ParameterTypeDescription
actionItemobjectThe created action item

rootly_list_action_items

List action items for an incident in Rootly.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident to list action items for
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
actionItemsarrayList of action items
totalCountnumberTotal number of action items returned

rootly_list_users

List users from Rootly with optional search and email filtering.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoSearch term to filter users
emailstringNoFilter users by email address
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
usersarrayList of users
totalCountnumberTotal number of users returned

rootly_list_on_calls

List current on-call entries from Rootly with optional filtering.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
scheduleIdsstringNoComma-separated schedule IDs to filter by
escalationPolicyIdsstringNoComma-separated escalation policy IDs to filter by
userIdsstringNoComma-separated user IDs to filter by
serviceIdsstringNoComma-separated service IDs to filter by

Output

ParameterTypeDescription
onCallsarrayList of on-call entries
totalCountnumberTotal number of on-call entries returned

rootly_list_schedules

List on-call schedules from Rootly with optional search filtering.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoSearch term to filter schedules
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
schedulesarrayList of schedules
totalCountnumberTotal number of schedules returned

rootly_list_escalation_policies

List escalation policies from Rootly with optional search filtering.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoSearch term to filter escalation policies
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
escalationPoliciesarrayList of escalation policies
totalCountnumberTotal number of escalation policies returned

rootly_list_causes

List causes from Rootly with optional search filtering.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoSearch term to filter causes
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
causesarrayList of causes
totalCountnumberTotal number of causes returned

rootly_list_playbooks

List playbooks from Rootly with pagination support.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
playbooksarrayList of playbooks
totalCountnumberTotal number of playbooks returned

rootly_mitigate_incident

Transition a Rootly incident to the mitigated state.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident to mitigate
mitigationMessagestringNoHow was the incident mitigated?

Output

ParameterTypeDescription
incidentobjectThe mitigated incident

rootly_resolve_incident

Transition a Rootly incident to the resolved state.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident to resolve
resolutionMessagestringNoHow was the incident resolved?

Output

ParameterTypeDescription
incidentobjectThe resolved incident

rootly_assign_incident_role

Assign an incident role (e.g. commander) to a user on a Rootly incident.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident
userIdstringYesThe ID of the user to assign (use List Users to find IDs)
incidentRoleIdstringYesThe ID of the incident role (use List Incident Roles to find IDs)

Output

ParameterTypeDescription
incidentobjectThe incident after the role assignment

rootly_unassign_incident_role

Remove an incident role assignment from a user on a Rootly incident.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident
userIdstringYesThe ID of the user to unassign (use List Users to find IDs)
incidentRoleIdstringYesThe ID of the incident role to remove (use List Incident Roles to find IDs)

Output

ParameterTypeDescription
incidentobjectThe incident after the role was unassigned

rootly_add_subscribers

Subscribe users to a Rootly incident so they receive updates.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident
userIdsstringYesComma-separated user IDs to subscribe (use List Users to find IDs)

Output

ParameterTypeDescription
incidentobjectThe incident after subscribers were added

rootly_remove_subscribers

Unsubscribe users from a Rootly incident.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident
userIdsstringYesComma-separated user IDs to unsubscribe (use List Users to find IDs)

Output

ParameterTypeDescription
incidentobjectThe incident after subscribers were removed

rootly_create_status_page_event

Post a public status page update for a Rootly incident.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident
eventstringYesThe status page update message to publish
statusPageIdstringNoThe ID of the status page to post to
statusstringNoStatus to set (investigating, identified, monitoring, resolved, scheduled, in_progress, completed)
notifySubscribersbooleanNoWhether to notify status page subscribers
shouldTweetbooleanNoWhether to post the update to the linked Twitter/X account

Output

ParameterTypeDescription
statusPageEventobjectThe created status page event

rootly_update_action_item

Update a Rootly incident action item (status, priority, assignee, etc.).

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
actionItemIdstringYesThe ID of the action item to update
summarystringNoUpdated action item title
descriptionstringNoUpdated description
kindstringNoThe kind of action item (task, follow_up)
prioritystringNoPriority level (high, medium, low)
statusstringNoAction item status (open, in_progress, cancelled, done)
assignedToUserIdstringNoThe user ID to assign the action item to
dueDatestringNoDue date for the action item

Output

ParameterTypeDescription
actionItemobjectThe updated action item

rootly_delete_action_item

Delete a Rootly incident action item.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
actionItemIdstringYesThe ID of the action item to delete

Output

ParameterTypeDescription
successbooleanWhether the action item was deleted
messagestringResult message

rootly_snooze_alert

Snooze a Rootly alert for a set number of minutes.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
alertIdstringYesThe ID of the alert to snooze
delayMinutesnumberYesNumber of minutes to snooze the alert

Output

ParameterTypeDescription
alertobjectThe snoozed alert

rootly_escalate_alert

Escalate a Rootly alert, optionally to a specific escalation policy or level.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
alertIdstringYesThe ID of the alert to escalate
escalationPolicyIdstringNoEscalation policy ID to escalate to (use List Escalation Policies to find IDs)
escalationPolicyLevelnumberNoEscalation policy level to escalate to

Output

ParameterTypeDescription
alertobjectThe escalated alert

rootly_list_incident_events

List the timeline events for a Rootly incident.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
incidentIdstringYesThe ID of the incident
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
eventsarrayList of incident timeline events
totalCountnumberTotal number of events returned

rootly_run_workflow

Trigger a Rootly automation workflow, optionally scoped to an incident or alert.

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
workflowIdstringYesThe ID of the workflow to run
incidentIdstringNoIncident ID to run the workflow against
alertIdstringNoAlert ID to run the workflow against
immediatebooleanNoRun immediately (true) or respect the workflow wait time (false). Default true
checkConditionsbooleanNoWhether to evaluate the workflow conditions before running. Default false

Output

ParameterTypeDescription
workflowRunobjectThe triggered workflow run

rootly_list_incident_roles

List incident roles configured in Rootly (e.g. commander, scribe).

Input

ParameterTypeRequiredDescription
apiKeystringYesRootly API key
searchstringNoSearch term to filter incident roles
pageSizenumberNoNumber of items per page (default: 20)
pageNumbernumberNoPage number for pagination

Output

ParameterTypeDescription
incidentRolesarrayList of incident roles
totalCountnumberTotal number of incident roles returned

Triggers

rootly_incident_created

Trigger workflow when a new incident is created in Rootly

Output

ParameterTypeDescription
eventIdstringUnique webhook event ID
eventTypestringRootly event type (e.g. incident.created)
issuedAtstringWhen the event was issued (ISO 8601)
data.idstringIncident ID
data.sequential_idnumberSequential incident number
data.titlestringIncident title
data.public_titlestringPublic-facing incident title
data.slugstringIncident slug
data.kindstringIncident kind (normal, test, etc.)
data.privatebooleanWhether the incident is private
data.summarystringIncident summary
data.statusstringIncident status
data.urlstringIncident URL in Rootly
data.short_urlstringShortened incident URL
data.mitigation_messagestringMitigation message
data.resolution_messagestringResolution message
data.cancellation_messagestringCancellation message
data.slack_channel_namestringLinked Slack channel name
data.slack_channel_idstringLinked Slack channel ID
data.slack_channel_urlstringLinked Slack channel URL
data.started_atstringWhen the incident started
data.detected_atstringWhen the incident was detected
data.acknowledged_atstringWhen the incident was acknowledged
data.mitigated_atstringWhen the incident was mitigated
data.resolved_atstringWhen the incident was resolved
data.cancelled_atstringWhen the incident was cancelled
data.created_atstringIncident creation timestamp
data.updated_atstringIncident last update timestamp
data.labelsjsonIncident labels (key-value pairs)
data.severityjsonIncident severity object
data.userjsonUser who owns the incident
data.started_byjsonUser who started the incident
data.mitigated_byjsonUser who mitigated the incident
data.resolved_byjsonUser who resolved the incident
data.cancelled_byjsonUser who cancelled the incident
data.rolesjsonAssigned incident roles
data.environmentsjsonAffected environments
data.incident_typesjsonIncident types
data.servicesjsonAffected services
data.functionalitiesjsonAffected functionalities
data.groupsjsonAssociated teams/groups
data.eventsjsonTimeline events
data.action_itemsjsonAction items
data.incident_post_mortemjsonRetrospective/post-mortem object

rootly_incident_updated

Trigger workflow when an incident is updated in Rootly

Output

ParameterTypeDescription
eventIdstringUnique webhook event ID
eventTypestringRootly event type (e.g. incident.created)
issuedAtstringWhen the event was issued (ISO 8601)
data.idstringIncident ID
data.sequential_idnumberSequential incident number
data.titlestringIncident title
data.public_titlestringPublic-facing incident title
data.slugstringIncident slug
data.kindstringIncident kind (normal, test, etc.)
data.privatebooleanWhether the incident is private
data.summarystringIncident summary
data.statusstringIncident status
data.urlstringIncident URL in Rootly
data.short_urlstringShortened incident URL
data.mitigation_messagestringMitigation message
data.resolution_messagestringResolution message
data.cancellation_messagestringCancellation message
data.slack_channel_namestringLinked Slack channel name
data.slack_channel_idstringLinked Slack channel ID
data.slack_channel_urlstringLinked Slack channel URL
data.started_atstringWhen the incident started
data.detected_atstringWhen the incident was detected
data.acknowledged_atstringWhen the incident was acknowledged
data.mitigated_atstringWhen the incident was mitigated
data.resolved_atstringWhen the incident was resolved
data.cancelled_atstringWhen the incident was cancelled
data.created_atstringIncident creation timestamp
data.updated_atstringIncident last update timestamp
data.labelsjsonIncident labels (key-value pairs)
data.severityjsonIncident severity object
data.userjsonUser who owns the incident
data.started_byjsonUser who started the incident
data.mitigated_byjsonUser who mitigated the incident
data.resolved_byjsonUser who resolved the incident
data.cancelled_byjsonUser who cancelled the incident
data.rolesjsonAssigned incident roles
data.environmentsjsonAffected environments
data.incident_typesjsonIncident types
data.servicesjsonAffected services
data.functionalitiesjsonAffected functionalities
data.groupsjsonAssociated teams/groups
data.eventsjsonTimeline events
data.action_itemsjsonAction items
data.incident_post_mortemjsonRetrospective/post-mortem object

rootly_incident_resolved

Trigger workflow when an incident is resolved in Rootly

Output

ParameterTypeDescription
eventIdstringUnique webhook event ID
eventTypestringRootly event type (e.g. incident.created)
issuedAtstringWhen the event was issued (ISO 8601)
data.idstringIncident ID
data.sequential_idnumberSequential incident number
data.titlestringIncident title
data.public_titlestringPublic-facing incident title
data.slugstringIncident slug
data.kindstringIncident kind (normal, test, etc.)
data.privatebooleanWhether the incident is private
data.summarystringIncident summary
data.statusstringIncident status
data.urlstringIncident URL in Rootly
data.short_urlstringShortened incident URL
data.mitigation_messagestringMitigation message
data.resolution_messagestringResolution message
data.cancellation_messagestringCancellation message
data.slack_channel_namestringLinked Slack channel name
data.slack_channel_idstringLinked Slack channel ID
data.slack_channel_urlstringLinked Slack channel URL
data.started_atstringWhen the incident started
data.detected_atstringWhen the incident was detected
data.acknowledged_atstringWhen the incident was acknowledged
data.mitigated_atstringWhen the incident was mitigated
data.resolved_atstringWhen the incident was resolved
data.cancelled_atstringWhen the incident was cancelled
data.created_atstringIncident creation timestamp
data.updated_atstringIncident last update timestamp
data.labelsjsonIncident labels (key-value pairs)
data.severityjsonIncident severity object
data.userjsonUser who owns the incident
data.started_byjsonUser who started the incident
data.mitigated_byjsonUser who mitigated the incident
data.resolved_byjsonUser who resolved the incident
data.cancelled_byjsonUser who cancelled the incident
data.rolesjsonAssigned incident roles
data.environmentsjsonAffected environments
data.incident_typesjsonIncident types
data.servicesjsonAffected services
data.functionalitiesjsonAffected functionalities
data.groupsjsonAssociated teams/groups
data.eventsjsonTimeline events
data.action_itemsjsonAction items
data.incident_post_mortemjsonRetrospective/post-mortem object

rootly_alert_created

Trigger workflow when a new alert is created in Rootly

Output

ParameterTypeDescription
eventIdstringUnique webhook event ID
eventTypestringRootly event type (e.g. alert.created)
issuedAtstringWhen the event was issued (ISO 8601)
data.idstringAlert ID
data.team_idnumberTeam ID
data.sourcestringAlert source (e.g. pagerduty)
data.summarystringAlert summary
data.labelsjsonAlert labels
data.datajsonRaw alert payload data
data.external_idstringExternal alert ID
data.external_urlstringExternal alert URL
data.webhook_typestringWebhook type
data.webhook_idstringWebhook ID
data.webhook_idempotency_keystringWebhook idempotency key
data.started_atstringWhen the alert started
data.ended_atstringWhen the alert ended
data.deleted_atstringWhen the alert was deleted
data.created_atstringAlert creation timestamp
data.updated_atstringAlert last update timestamp

Notes

  • Category: tools
  • Type: rootly
On this page

On this page

Usage Instructions
Tools
rootly_create_incident
Input
Output
rootly_get_incident
Input
Output
rootly_update_incident
Input
Output
rootly_list_incidents
Input
Output
rootly_create_alert
Input
Output
rootly_list_alerts
Input
Output
rootly_add_incident_event
Input
Output
rootly_list_services
Input
Output
rootly_list_severities
Input
Output
rootly_list_teams
Input
Output
rootly_list_environments
Input
Output
rootly_list_incident_types
Input
Output
rootly_list_functionalities
Input
Output
rootly_list_retrospectives
Input
Output
rootly_delete_incident
Input
Output
rootly_get_alert
Input
Output
rootly_update_alert
Input
Output
rootly_acknowledge_alert
Input
Output
rootly_resolve_alert
Input
Output
rootly_create_action_item
Input
Output
rootly_list_action_items
Input
Output
rootly_list_users
Input
Output
rootly_list_on_calls
Input
Output
rootly_list_schedules
Input
Output
rootly_list_escalation_policies
Input
Output
rootly_list_causes
Input
Output
rootly_list_playbooks
Input
Output
rootly_mitigate_incident
Input
Output
rootly_resolve_incident
Input
Output
rootly_assign_incident_role
Input
Output
rootly_unassign_incident_role
Input
Output
rootly_add_subscribers
Input
Output
rootly_remove_subscribers
Input
Output
rootly_create_status_page_event
Input
Output
rootly_update_action_item
Input
Output
rootly_delete_action_item
Input
Output
rootly_snooze_alert
Input
Output
rootly_escalate_alert
Input
Output
rootly_list_incident_events
Input
Output
rootly_run_workflow
Input
Output
rootly_list_incident_roles
Input
Output
Triggers
rootly_incident_created
Output
rootly_incident_updated
Output
rootly_incident_resolved
Output
rootly_alert_created
Output
Notes
Rootly