# Rundeck Automation - ServiceNow Application
Available in PagerDuty Process Automation products
Our ServiceNow® application can be found on the ServiceNow® Store. The application is free to Enterprise customers. To request the application please contact your Account Executive or Customer Success contact.
# Requirements
The application is supported on Paris, Quebec and Rome ServiceNow® releases.
An active license for a currently supported version is also required. (Minimum is 3.3.0)
# Requesting the application
- Visit the Rundeck Application ServiceNow Store page (opens new window).
- Login and click the Request App button.
- A message will be sent to our team for approval. Once approved a Customer Success or Support tech will contact with more details.
# Configuration Steps
After the app has been installed in your ServiceNow® instance there will be a new "Rundeck Automation" Module Group.
Note: The ServiceNow login account will need the
admin
role andx_runde_rundeck_it.rundeck_app_user
roles to configure these settings.
- Create an API Key in Rundeck.
- Click Configure Rundeck Connection and fill out the fields on the form with your environment details.
- Protocol: Choose if your Rundeck instance is running over
http
orhttps
. - Destination: Enter the IP address or domain name where your Rundeck is running.
- Port Number: Confirm the port number Rundeck is running on
- API Key: Paste in the API Key from Step 1
- API Version: In rare occurrences the API version can be adjusted. Default and minimum version is
34
.
- Protocol: Choose if your Rundeck instance is running over

# Using the Application
# How it works
The ServiceNow application leverages Rundeck's Webhooks feature to trigger jobs in your Rundeck environment. To create automation within ServiceNow please check out our Learning Article for How to setup Webhooks to trigger your Rundeck Jobs.
# Importing Webhooks
The Scheduled Scripts module will list the Populate Webhooks Scheduled Script. This script can be used to import all available webhooks. By default it comes unscheduled. In order to keep your webhook listing current the script can be scheduled to run on a regular interval.
# Calling Webhooks from ServiceNow® Code
Upon import webhooks from your Rundeck Projects will be added to the Rundeck Webhooks table. A 'Code Example' field provides basic code that can be used in ServiceNow® Client or Server side scripts to call that specific webhook.

var rd = new Rundeck();
rd.callWebhook('11','{}');
The callWebhook
function is part of a Server Include entry. The function takes two arguments to call a particular webhook.
- ID value (e.g. "11")
- An optional custom payload in JSON format "{}". (Note: if no payload is needed leave the two empty braces as shown in example code).
# Examples
Below is an example Incident table based UI Action script that includes the ticket number and hostname value from the associated CMDB CI.
try {
var rd = new Rundeck();
//Call Rundeck Webhook Server Include with ([webhook id], [payload])
rd.callWebhook('11', '{"ticket":"' + current.number + '", "host":"' + current.cmdb_ci.host_name + '"}');
action.setRedirectURL(current);
} catch (e) {
gs.error(e);
}
# Additional Details
# Helpful Info
- Currently the application is only designed to connect to a single Rundeck instance.
- The rights of the User API Key that is created will determine the access to Projects/Webhooks/Jobs that the application will have. It is recommended to use a service account for this and manage the appropriate rights through that account.
# ServiceNow® Roles included
- executor: Assign this role to allow users to execute Rundeck actions. The role provides read-only access to the minimum necessary application components.
- rundeck_app_user: Grants access to the Rundeck Automation module listing and allow read/write access to most application areas.