# API Reference | Version 40
Rundeck provides a Web API for use with your applications.
# API Version Number
Current | Minimum |
---|---|
40 | 11 |
- Current
- The current version number.
- Minimum
- Minimum supported version.
For information on historical version changes please see API Version History. Please note of any incubating endpoints that may be subject to change.
# Usage
For API endpoints described in this document, the minimum API version required for their use is indicated by the URL used, e.g.:
/api/11/system/info
/api/14/projects
This means you must use at least the API version indicated to access the endpoint, unless otherwise noted. Some features or functionality for the endpoint may only be supported in later versions.
The API Version Number is required to be included in all API calls within the URL.
If the version number is not included or if the requested version number is unsupported, then the API call will fail. The error response will include the code "api-version-unsupported" and have HTTP status code of 400 Bad Request
:
Content-Type: application/xml
:
<result error="true">
<error code="api-version-unsupported">
<message>
Unsupported API Version "1". API Request: /rundeck/api/1/project/test/jobs. Reason: Minimum supported version: 11
</message>
</error>
</result>
Content-Type: application/json
:
{
"error": true,
"apiversion": 14,
"errorCode": "api.error.api-version.unsupported",
"message": "Unsupported API Version \"1\". API Request: /api/1/project/test/resources. Reason: Minimum supported version: 11"
}
# Index Links
View the Index listing API paths.
# URLs
The Rundeck server has a "Base URL", where you access the server. Your Rundeck Server URL may look like: http://myserver:4440
.
The root URL path for all calls to the API in this version is:
$RUNDECK_SERVER_URL/api/2
# XML and JSON
The API supports both XML and JSON. Some import/export features support YAML or text/plain
formatted documents, but XML and JSON are used for all API-level information.
As of API version 14, all endpoints support JSON format, with content type application/json
, with one exception (/api/V/project/[PROJECT]/jobs/export).
JSON results can be retrieved by sending the HTTP "Accept" header with a application/json
value. JSON request content is supported when the HTTP "Content-Type" header specifies application/json
.
XML results can be retrieved by sending the HTTP "Accept" header with a application/xml
value. XML request content is supported when the HTTP "Content-Type" header specifies application/xml
.
If an "Accept" header is not specified, then the response will be either the same format as the request content (for POST, or PUT requests), or JSON by default.
Some endpoints also support using a format
query parameter to specify the expected output format.
# Authentication
Authentication can be done in two different ways, either with Token based authentication, or with a username and password.
Note that in either case, it is recommended that you enable SSL Support for the Rundeck server so that communication is encrypted at all times. For more information about using SSL, see Security - Configuring Rundeck for SSL.
# Token Authentication
Token Authentication consists of including a string known as an "API Token" with every request to the Rundeck API.
To obtain an API Token, you must first log in to the Rundeck GUI using a user account. Click on your username in the header of the page, and you will be shown your User Profile page. From this page you can manage your API Tokens.
Note: You must have appropriate authorization to generate a token. See API Token Authorization.
Depending on what authorization level you have, you can generate a token with a certain set of Authorization Roles and an Expiration Period.
Click "Generate API Token" to create a new one. The unique string that is shown is the API Token.
Alternately you can define tokens in static file, by setting the rundeck.tokens.file
in framework.properties.
You must include one of the following with every HTTP request to the API:
- HTTP Header
X-Rundeck-Auth-Token
set to the API Token string
OR
- HTTP URL Parameter
authtoken
set to the API Token string
With that in place, you can make calls to the API as described in the rest of this document, and you don't need to maintain any cookies between requests.
Examples:
Using the URL parameter to request the project list:
GET /api/11/projects?authtoken=E4rNvVRV378knO9dp3d73O0cs1kd0kCd HTTP/1.1
...
Using the HTTP Header:
GET /api/11/projects HTTP/1.1
X-Rundeck-Auth-Token: E4rNvVRV378knO9dp3d73O0cs1kd0kCd
...
# Password Authentication
If using Password Authentication, you must perform the authentication steps prior to accessing the API.
This means that you must submit authentication parameters (username, password) to the "Authentication URL" and retain a Session Cookie.
The Session Cookie must be sent with all calls to the API to maintain the authenticated connection.
To submit authentication, submit a POST
request to the URL:
$RUNDECK_SERVER_URL/j_security_check
With these parameters:
j_username
: rundeck usernamej_password
: password
If the response includes a redirect chain which includes or results in $RUNDECK_SERVER_URL/user/login
or $RUNDECK_SERVER_URL/user/error
, then the authentication request failed.
Otherwise, if the response is a redirect chain which results in 200 successful
response, then the authentication was successful.
The response should set a cookie named JSESSIONID
.
# XML Response Format
XML responses will have only the content indicated in the appropriate endpoint documentation.
# Error Responses
Errors in XML format will be in the form:
<result error="true" apiversion="X">
<!-- error included if error="true" -->
<error>
<message><!-- error message text --></message>
<!-- ... multiple message elements -->
</error>
</result>
If an error occurred, then the error
attribute of the <result>
element will be "true"
Some <error>
responses will include a code
attribute giving a specific type
of error code, in addition to the message.
The apiversion
attribute will be set to the latest version of the API
supported by the server.
Errors in JSON format will be in the form:
{
"error": true,
"errorCode: "code",
"message": "message",
"apiversion": "X"
}
# Error codes
Defined error codes that may be returned as <error code="...">
api-version-unsupported
- The specified API version is not supported for the requested resource
unauthorized
- The requested action is not authorized and/or the connection is not authenticated.
# API Contents
# Authentication Tokens
Authentication tokens can be managed via the API itself.
Note: as of Rundeck 3.3.8, Authentication tokens are stored in secure form and are no longer retrievable. Listing and getting tokens will show the token id, name and other metadata but not the token value itself. The token value is only available at creation time using the POST /api/V/tokens/[USER] endpoint.
Note: as of Rundeck 2.8, Authentication tokens are generated with a unique ID as well as a token string. Listing tokens will show the ID instead of the token string, and the ID should be used to manage the token instead of the token string itself. Until Rundeck 3.3.7, token strings can be retrieved with the /api/V/token/[ID] endpoint.
# List Tokens
List all tokens or all tokens for a specific user.
Request:
GET /api/11/tokens
GET /api/11/tokens/[USER]
Response (API version: 19 and later):
name
attribute added since V37
application/xml
:
<tokens user="user3" count="4">
<token user="user3" id="ece75ac8-2791-442e-b179-a9907d83fd05"
creator="user3" name="Admin RD-CLI">
<expiration>2017-03-25 14:16:50.848 PDT</expiration>
<roles>
<role>DEV_99</role>
<role>FEDCD25B-C945-48D3-9821-A10D44535EA4</role>
</roles>
<expired>false</expired>
</token>
<token user="user3" id="abcb096f-cef4-451a-bd2b-43284a3ff2ad"
creator="user3" name="CI Server">
<expiration>2017-03-25 14:17:12.935 PDT</expiration>
<roles>
<role>SVC_XYZ</role>
<role>devops</role>
<role>user3</role>
</roles>
<expired>false</expired>
</token>
<token user="user3" id="a99bd86d-0125-4eaa-9b16-caded4485476"
creator="user3" name="GitHub Integration">
<expiration>2018-03-24 14:17:26.253 PDT</expiration>
<roles>
<role>user</role>
<role>FEDCD25B-C945-48D3-9821-A10D44535EA4</role>
</roles>
<expired>false</expired>
</token>
<token user="user3" id="c13de457-c429-4476-9acd-e1c89e3c2928"
creator="user3">
<expiration>2017-03-24 14:18:55.699 PDT</expiration>
<roles>
<role>USER_ACCOUNT</role>
</roles>
<expired>true</expired>
</token>
</tokens>
application/json
:
[
{
"user": "user3",
"id": "ece75ac8-2791-442e-b179-a9907d83fd05",
"creator": "user3",
"name": "Admin RD-CLI",
"expiration": "2017-03-25T21:16:50Z",
"roles": [
"DEV_99",
"FEDCD25B-C945-48D3-9821-A10D44535EA4"
],
"expired": false
},
{
"user": "user3",
"id": "abcb096f-cef4-451a-bd2b-43284a3ff2ad",
"creator": "user3",
"name": "CI Server",
"expiration": "2017-03-25T21:17:12Z",
"roles": [
"SVC_XYZ",
"devops",
"user3"
],
"expired": false
},
{
"user": "user3",
"id": "a99bd86d-0125-4eaa-9b16-caded4485476",
"creator": "user3",
"name": "GitHub Integration",
"expiration": "2018-03-24T21:17:26Z",
"roles": [
"user",
"FEDCD25B-C945-48D3-9821-A10D44535EA4"
],
"expired": false
},
{
"user": "user3",
"id": "c13de457-c429-4476-9acd-e1c89e3c2928",
"creator": "user3",
"expiration": "2017-03-24T21:18:55Z",
"roles": [
"USER_ACCOUNT"
],
"expired": true
}
]
Response (API version: 18 and earlier):
Note: removed since Rundeck 3.3.8
application/xml
:
All users:
<tokens count='3' allusers='true'>
<token id='DRUVEuCdENoPkUpDkcDcdd6PeKkPdurc' user='alice' />
<token id='VprOpDeDP3KcK2dp37p5DoD6o53cc82D' user='bob' />
<token id='EveKe1KSRORnUN28D09eERDN3OvO4S6N' user='frank' />
</tokens>
For a specific user:
<tokens count='1' user='alice'>
<token id='DRUVEuCdENoPkUpDkcDcdd6PeKkPdurc' user='alice' />
</tokens>
application/json
:
[
{
"user": "alice",
"id": "DRUVEuCdENoPkUpDkcDcdd6PeKkPdurc"
},
{
"user": "bob",
"id": "VprOpDeDP3KcK2dp37p5DoD6o53cc82D"
},
{
"user": "frank",
"id": "EveKe1KSRORnUN28D09eERDN3OvO4S6N"
}
]
# Get a token
Get a specified auth token metadata.
Note: API Version 19 and later uses the token ID instead of the token string.
Note: As of Rundeck 3.3.8, the actual token value is not available through this endpoint.
Request:
GET /api/11/token/[ID]
Response (API version: 19) (Rundeck 3.3.8 and later):
The token includes the creator
of the token, as well as the user
(the effective username) of the token.
The id
is the unique ID, and the name
(since v37) is the name given at creation.
application/xml
<?xml version="1.0" encoding="utf-8"?>
<token user="user3" id="c13de457-c429-4476-9acd-e1c89e3c2928"
creator="user3" name="CI Server Token">
<expiration>2017-03-24T21:18:55Z</expiration>
<roles>
<role>USER_ACCOUNT</role>
</roles>
<expired>true</expired>
</token>
application/json
{
"user": "user3",
"id": "c13de457-c429-4476-9acd-e1c89e3c2928",
"creator": "user3",
"name": "CI Server Token",
"expiration": "2017-03-24T21:18:55Z",
"roles": [
"USER_ACCOUNT"
],
"expired": true
}
Response (API version: 19) (Rundeck 3.3.7 and earlier):
The token includes the creator
of the token, as well as the user
(the effective username) of the token.
The id
is the unique ID, and the token
value is the token string.
application/xml
<?xml version="1.0" encoding="utf-8"?>
<token user="user3" token="VjkbX2zUAwnXjDIbRYFp824tF5X2N7W1"
id="c13de457-c429-4476-9acd-e1c89e3c2928" creator="user3">
<expiration>2017-03-24T21:18:55Z</expiration>
<roles>
<role>USER_ACCOUNT</role>
</roles>
<expired>true</expired>
</token>
application/json
{
"user": "user3",
"token": "VjkbX2zUAwnXjDIbRYFp824tF5X2N7W1",
"id": "c13de457-c429-4476-9acd-e1c89e3c2928",
"creator": "user3",
"expiration": "2017-03-24T21:18:55Z",
"roles": [
"USER_ACCOUNT"
],
"expired": true
}
Response (API version: 18 and earlier) (removed since Rundeck 3.3.8):
The id
value returned is the token string.
application/xml
<token id='DuV0UoDUDkoR38Evd786cdRsed6uSNdP' user='alice' />
application/json
{
"user": "alice",
"id": "DuV0UoDUDkoR38Evd786cdRsed6uSNdP"
}
# Create a Token
Create a new token for a specific user. Specify custom roles and duration if authorized.
Request:
POST /api/11/tokens
POST /api/11/tokens/[USER]
The user specified must either be part of the URL, or be part of the request content.
Note: As of Rundeck 3.3.8, the actual token value is only available at creation time through the response of this endpoint. Be sure to store your tokens as they will not be available later.
For API v18 and earlier: by default the role api_token_group
is set for the generated token,
and the duration will be the maximum allowed token duration. If user
is present in the URL, then the request content is ignored and can be empty.
For API v19 and later: A content body is expected, and roles
must be specified, and duration
is optional.
If unset, duration will be the maximum allowed token duration.
If the roles
value is the string *
(asterisk), and the token is generated for oneself (i.e. the authenticated user),
then the generated token will have all roles as the authenticated user.
For API v37 and later: You can provide a name
parameter to name the created token.
Content-type: application/xml
<user user="alice" roles="sre,dev" duration="120d" name="Example Token"/>
Requesting all available roles for the same user:
<user user="alice" roles="*" duration="120d" name="Example Token"/>
Content-type: application/json
{
"user": "alice",
"roles": [
"sre",
"dev"
],
"duration": "120d",
"name": "Example Token"
}
roles
can be a comma-separated string:
{
"user": "alice",
"roles": "sre,dev",
"duration": "120d",
"name": "Example Token"
}
Response (API version: 19 and later):
name
attribute added since V37
application/xml
<token user="alice" token="4ehYi11hDHtxwVK6it4IhNFvbQcYmAJp"
id="4073a4c5-336c-4157-942a-41639379c100" creator="admin" name="Example Token">
<expiration>2017-07-22T22:45:18Z</expiration>
<roles>
<role>dev</role>
<role>sre</role>
</roles>
<expired>false</expired>
</token>
application/json
{
"user": "alice",
"token": "08e7rlGwwnqoX6lzewriXSabuqNMueTL",
"id": "b6ea87e3-43e5-4210-bd51-b82f8e33d9a4",
"creator": "admin",
"name": "Example Token",
"expiration": "2017-07-22T22:43:53Z",
"roles": [
"dev",
"sre"
],
"expired": false
}
Response (API version: 18 and earlier):
application/xml
<token user="alice" token="RZ9vHnHif4C46xLVvfq4ZVBrkZs3iNuQ" />
application/json
{
"user": "alice",
"token": "mfAqxIZPlXIT8qQOD98RvMUcgCwOXbqc"
}
# Delete a token
Delete a specified auth token.
Request:
DELETE /api/11/token/[ID]
Response:
204 No Content
# Config Management
Manage your plugin and custom configuration properties via API.
# Create or Update Configurations
POST api/36/config/save
Create or update configs and properties. POST fails if any configs are invalid.
Request:
Headers
Content-Type
Required- Accepts:
application/json
- Accepts:
Body
key
Required- Represents either a new config to be created, or an existing config to be updated.
- Accepts: Any
string
value
Required- The value for the desired config
key
. - Accepts: Any
string
- The value for the desired config
strata
Optional- Whether the config should apply to the current server (
Server
), or to all servers in the cluster (default
). - Accepts:
Server
,default
- Default:
default
- Whether the config should apply to the current server (
Example JSON
[
{
"key": "myCustomConfig",
"value": "newValueForCustomConfig",
"strata": "default"
},
{
"key": "myNewCustomConfig",
"value": "valueOfNewCustomConfig",
"strata": "default"
}
]
Responses
200 OK
All configs were successfully saved or updated. A payload reflecting save or creation status is returned.
Headers
Content-Type: application/json
:
Body
{
"msg":"Saved",
"created": [
"myNewCustomConfig"
],
"updated": [
"myCustomConfig"
]
}
400 Bad Request
Some or all configs were formatted in an invalid way and were ignored. Check your request data and try again.
401 Unathorized
API Key is associated with a user or role with insufficent permissions to perform the action.
Headers
Content-Type: application/json
Body
{
"msg":"Unauthorized"
}
# Delete a Single Config
DELETE /api/36/config/delete
Delete a single config by key and strata.
Request:
Headers
Content-Type
Required- Accepts:
application/json
- Accepts:
Body
key
Required- Represents the config to be deleted.
- Accepts: Any
string
strata
Optional- Whether the config should apply to the current server (
Server
), or to all servers in the cluster (default
). - Accepts:
Server
,default
- Default:
default
- Whether the config should apply to the current server (
Example JSON
{
"key": "myCustomConfig",
"strata": "default"
}
Response
204 No Content
The config was deleted successfully.
401 Unathorized
API Key is associated with a user or role with insufficent permissions to perform the action.
Headers
Content-Type: application/json
Body
{
"msg":"Unauthorized"
}
404 Not Found
A config with the input config key was not found.
Headers
Content-Type: application/json
Body
{
"error":true,
"apiversion":40,
"errorCode":"rundeckpro.config.api.error.not.found",
"message":"System Configuration Not Found"
}
# List All Current Configurations
GET api/36/config/list
List all existing configs and their properties.
Request:
Headers
Content-Type
Optional- Accepts:
application/json
- Accepts:
Responses:
200 OK
Call was successful. A list of all configs stored using Configuration Management is returned.
NOTE: For a complete list of all configs, reference the System Report page in Rundeck.
Headers
Content-Type: application/json
Body
[
{
"name": "azure.clientId",
"value": "test222236",
"level": "default",
"label": "Azure Client ID",
"category": "Plugins/Azure"
},
{
"name": "myCustomConfig",
"value": "myConfigValue",
"level": "default",
"category": "Custom",
},
{
"name": "myCustomConfig2",
"value": "myConfigValue2",
"level": "default",
"category": "Custom",
}
]
401 Unathorized
API Key is associated with a user or role with insufficent permissions to perform the action.
Headers
Content-Type: application/json
Body
{
"msg":"Unauthorized"
}
# Refresh Configurations from Properties File
POST /api/36/config/refresh
Make the Rundeck server re-read the config properties file.
Request:
Headers
Content-Type
Optional- Accepts:
application/json
- Accepts:
Response
200 OK
The call was successful. Rundeck will reread the config properties file.
NOTE: Some config changes will not go into effect after a reload, and require a full restart of Rundeck.
Headers
Content-Type: application/json
:
Body
{
"msg": "Rundeck configuration refreshed"
}
401 Unathorized
API Key is associated with a user or role with insufficent permissions to perform the action.
Headers
Content-Type: application/json
Body
{
"msg":"Unauthorized"
}
# Restart the Rundeck Server
POST /api/36/config/restart
Restart the Rundeck server.
Request:
Headers
Content-Type
Optional- Accepts:
application/json
- Accepts:
Response
200 OK
The call was successful. The Rundeck server will immediately restart.
Headers
Content-Type: application/json
:
Body
{
"msg": "Rundeck Restarting",
"restarting":true
}
401 Unathorized
API Key is associated with a user or role with insufficent permissions to perform the action.
Headers
Content-Type: application/json
Body
{
"msg":"Unauthorized"
}
# System Info
Get Rundeck server information and stats.
Request:
GET /api/14/system/info
Parameters: none
Response:
Success response, with included system info and stats in this format:
Content-Type: application/xml
:
<system>
<timestamp epoch="1305909785806" unit="ms">
<datetime>2011-05-20T16:43:05Z</datetime>
</timestamp>
<rundeck>
<version>1.2.1</version>
<apiversion>2</apiversion>
<build>1.2.1-0-beta</build>
<node>Venkman.local</node>
<base>/Users/greg/rundeck121</base>
<serverUUID>3E43E30D-F3D7-45AA-942A-04D5BAFED8CA</serverUUID>
</rundeck>
<executions active="true" executionMode="active" />
<os>
<arch>x86_64</arch>
<name>Mac OS X</name>
<version>10.6.7</version>
</os>
<jvm>
<name>Java HotSpot(TM) 64-Bit Server VM</name>
<vendor>Apple Inc.</vendor>
<version>19.1-b02-334</version>
</jvm>
<stats>
<uptime duration="300584" unit="ms">
<since epoch="1305909485222" unit="ms">
<datetime>2011-05-20T16:38:05Z</datetime>
</since>
</uptime>
<cpu>
<loadAverage unit="percent">0.40234375</loadAverage>
<processors>4</processors>
</cpu>
<memory unit="byte">
<max>477233152</max>
<free>76626216</free>
<total>257163264</total>
</memory>
<scheduler>
<running>0</running>
<threadPoolSize>10</threadPoolSize>
</scheduler>
<threads>
<active>24</active>
</threads>
</stats>
<metrics href='http://dignan:4440/api/25/metrics/metrics?pretty=true' contentType='application/json' />
<threadDump href='http://dignan:4440/api/25/metrics/threads' contentType='text/plain' />
<healthcheck href='http://dignan:4440/api/25/metrics/healthcheck' contentType='application/json' />
<ping href='http://dignan:4440/api/25/metrics/ping' contentType='text/plain' />
</system>
Content-Type: application/json
:
{
"system": {
"timestamp": {
"epoch": 1431975278220,
"unit": "ms",
"datetime": "2015-05-18T18:54:38Z"
},
"rundeck": {
"version": "2.5.2-SNAPSHOT",
"build": "2.5.2-0-SNAPSHOT",
"node": "madmartigan.local",
"base": "/Users/greg/rundeck25",
"apiversion": 14,
"serverUUID": null
},
"executions":{
"active":true,
"executionMode":"active"
},
"os": {
"arch": "x86_64",
"name": "Mac OS X",
"version": "10.10.3"
},
"jvm": {
"name": "Java HotSpot(TM) 64-Bit Server VM",
"vendor": "Oracle Corporation",
"version": "1.7.0_71",
"implementationVersion": "24.71-b01"
},
"stats": {
"uptime": {
"duration": 546776,
"unit": "ms",
"since": {
"epoch": 1431974731444,
"unit": "ms",
"datetime": "2015-05-18T18:45:31Z"
}
},
"cpu": {
"loadAverage": {
"unit": "percent",
"average": 2.689453125
},
"processors": 8
},
"memory": {
"unit": "byte",
"max": 716177408,
"free": 138606040,
"total": 527958016
},
"scheduler": {
"running": 0,
"threadPoolSize": 10
},
"threads": {
"active": 35
}
},
"metrics": {
"href": "http://madmartigan.local:4440/api/25/metrics/metrics?pretty=true",
"contentType": "application/json"
},
"threadDump": {
"href": "http://madmartigan.local:4440/api/25/metrics/threads",
"contentType": "text/plain"
},
"healthcheck": {
"href": "http://madmartigan.local:4440/api/25/metrics/healthcheck",
"contentType": "application/json"
},
"ping": {
"href": "http://madmartigan.local:4440/api/25/metrics/ping",
"contentType": "text/plain"
}
}
}
Description of included elements:
timestamp
describes the current system time known to the server. The @epoch
attribute includes the milliseconds since the unix epoch.
datetime
- The W3C date and time
rundeck
includes information about the Rundeck application.
rundeck/version
- Rundeck version
rundeck/apiversion
- Rundeck API version
rundeck/build
- Rundeck build stamp
rundeck/node
- Server node name
rundeck/base
- Server base directory
rundeck/serverUUID
- Server UUID (present if cluster mode is enabled)
os/arch
- Operating System architecture
os/name
- Operating System Name
os/version
- Operating System Version
jvm/name
- JVM name
jvm/vendor
- JVM vendor
jvm/version
- JVM version
stats
section includes some system statistics:
uptime
describes the JVM uptime as duration in ms, and includes absolute
startup time:
uptime/since
- JVM startup time as time since the unix epoch
uptime/since/datetime
- JVM startup time as W3C date time.
cpu/loadAverage
- JVM load average percentage for the system for the previous minute (see getSystemLoadAverage (opens new window)
cpu/processors
- Number of available system processors. note that loadAverage might be calculated based on the total number of available processors
The memory
section describes memory usage in bytes:
max
- Maximum JVM memory that can be allocated
free
- Free memory of the allocated memory
total
- Total allocated memory for the JVM
scheduler/running
- Number of running jobs in the scheduler
scheduler/threadPoolSize
- Size of the scheduler threadPool: maximum number of concurrent Rundeck executions
threads/active
- Number of active Threads in the JVM
# Metrics Links
Several Metrics API endpoints are linked in the System Info response.
See GET /api/V/metrics.
# List Metrics
List enabled Metrics endpoints.
Configuration
The Metrics endpoints are enabled by default, but can be disabled based on application configuration. See: Administration > Configuration File Reference.
ACL Requirement
They require read
access to the system
application scope resource. See: Access Control Policy > Application Scope.
Request:
GET /api/25/metrics
Response:
Links to enabled Metrics endpoints:
Content-Type: application/json
:
{
"_links": {
"metrics": {
"href": "http://ecto1.local:4440/api/25/metrics/metrics"
},
"ping": {
"href": "http://ecto1.local:4440/api/25/metrics/ping"
},
"threads": {
"href": "http://ecto1.local:4440/api/25/metrics/threads"
},
"healthcheck": {
"href": "http://ecto1.local:4440/api/25/metrics/healthcheck"
}
}
}
# Metrics Data
Return the metrics data.
Request:
GET /api/25/metrics/metrics
Response:
Content-Type: application/json
:
{
"version": "3.1.3",
"gauges": {
"dataSource.connection.pingTime": {
"value": 1
},
"rundeck.scheduler.quartz.runningExecutions": {
"value": 0
},
"rundeck.services.AuthorizationService.sourceCache.evictionCount": {
"value": 0
},
"rundeck.services.AuthorizationService.sourceCache.hitCount": {
"value": 9
},
"rundeck.services.AuthorizationService.sourceCache.hitRate": {
"value": 0.9
},
"rundeck.services.AuthorizationService.sourceCache.loadExceptionCount": {
"value": 0
},
"rundeck.services.AuthorizationService.sourceCache.missCount": {
"value": 1
},
"rundeck.services.NodeService.nodeCache.evictionCount": {
"value": 0
},
"rundeck.services.NodeService.nodeCache.hitCount": {
"value": 11
},
"rundeck.services.NodeService.nodeCache.hitRate": {
"value": 0.9166666666666666
},
"rundeck.services.NodeService.nodeCache.loadExceptionCount": {
"value": 0
},
"rundeck.services.NodeService.nodeCache.missCount": {
"value": 1
},
"rundeck.services.ProjectManagerService.fileCache.evictionCount": {
"value": 0
},
"rundeck.services.ProjectManagerService.fileCache.hitCount": {
"value": 0
},
"rundeck.services.ProjectManagerService.fileCache.hitRate": {
"value": 0
},
"rundeck.services.ProjectManagerService.fileCache.loadExceptionCount": {
"value": 0
},
"rundeck.services.ProjectManagerService.fileCache.missCount": {
"value": 6
},
"rundeck.services.ProjectManagerService.projectCache.evictionCount": {
"value": 0
},
"rundeck.services.ProjectManagerService.projectCache.hitCount": {
"value": 530
},
"rundeck.services.ProjectManagerService.projectCache.hitRate": {
"value": 0.9888059701492538
},
"rundeck.services.ProjectManagerService.projectCache.loadExceptionCount": {
"value": 0
},
"rundeck.services.ProjectManagerService.projectCache.missCount": {
"value": 6
},
"rundeck.services.ProjectManagerService.sourceCache.evictionCount": {
"value": 0
},
"rundeck.services.ProjectManagerService.sourceCache.hitCount": {
"value": 0
},
"rundeck.services.ProjectManagerService.sourceCache.hitRate": {
"value": 1
},
"rundeck.services.ProjectManagerService.sourceCache.loadExceptionCount": {
"value": 0
},
"rundeck.services.ProjectManagerService.sourceCache.missCount": {
"value": 0
}
},
"counters": {
"rundeck.scheduler.quartz.scheduledJobs": {
"count": 6
}
},
"histograms": {},
"meters": {
"rundeck.services.AuthorizationService.systemAuthorization.evaluateMeter": {
"count": 4,
"m15_rate": 0.00314076610191179,
"m1_rate": 0.023875601445527157,
"m5_rate": 0.008400048550624787,
"mean_rate": 0.026528128813374685,
"units": "events/second"
},
"rundeck.services.AuthorizationService.systemAuthorization.evaluateSetMeter": {
"count": 12,
"m15_rate": 0.6892782713428792,
"m1_rate": 0.1267495745218626,
"m5_rate": 0.5153224625291539,
"mean_rate": 0.07958452971073966,
"units": "events/second"
},
"rundeck.services.ExecutionService.executionJobStartMeter": {
"count": 6,
"m15_rate": 0.3446391356714396,
"m1_rate": 0.0633747872609313,
"m5_rate": 0.25766123126457696,
"mean_rate": 0.039926086575635206,
"units": "events/second"
},
"rundeck.services.ExecutionService.executionStartMeter": {
"count": 6,
"m15_rate": 0.3446391356714396,
"m1_rate": 0.0633747872609313,
"m5_rate": 0.25766123126457696,
"mean_rate": 0.039893916635731115,
"units": "events/second"
},
"rundeck.services.ExecutionService.executionSuccessMeter": {
"count": 6,
"m15_rate": 0.3465591259042392,
"m1_rate": 0.06888231291145262,
"m5_rate": 0.2619915710449402,
"mean_rate": 0.04041785210623091,
"units": "events/second"
}
},
"timers": {
"rundeck.api.requests.requestTimer": {
"count": 3,
"max": 0.19907502000000002,
"mean": 0.108295424,
"min": 0.014703712,
"p50": 0.11110754,
"p75": 0.19907502000000002,
"p95": 0.19907502000000002,
"p98": 0.19907502000000002,
"p99": 0.19907502000000002,
"p999": 0.19907502000000002,
"stddev": 0.09221781715431031,
"m15_rate": 0.00314076610191179,
"m1_rate": 0.023875601445527157,
"m5_rate": 0.008400048550624787,
"mean_rate": 0.0326409948656659,
"duration_units": "seconds",
"rate_units": "calls/second"
},
"rundeck.quartzjobs.ExecutionJob.executionTimer": {
"count": 6,
"max": 2.785892703,
"mean": 0.6245617408333334,
"min": 0.156943942,
"p50": 0.2009052745,
"p75": 0.8750149552500001,
"p95": 2.785892703,
"p98": 2.785892703,
"p99": 2.785892703,
"p999": 2.785892703,
"stddev": 1.0593646577233937,
"m15_rate": 0.17537122122178622,
"m1_rate": 0.049487919338571586,
"m5_rate": 0.13657375399032906,
"mean_rate": 0.039744906881515114,
"duration_units": "seconds",
"rate_units": "calls/second"
},
"rundeck.services.AuthorizationService.getSystemAuthorization": {
"count": 10,
"max": 0.11291242300000001,
"mean": 0.0168355508,
"min": 0.002907568,
"p50": 0.003709257,
"p75": 0.0103103045,
"p95": 0.11291242300000001,
"p98": 0.11291242300000001,
"p99": 0.11291242300000001,
"p999": 0.11291242300000001,
"stddev": 0.0345229796390412,
"m15_rate": 0.3477799017733514,
"m1_rate": 0.08725038870645847,
"m5_rate": 0.2660612798152018,
"mean_rate": 0.06628145573313499,
"duration_units": "seconds",
"rate_units": "calls/second"
},
"rundeck.services.AuthorizationService.systemAuthorization.evaluateSetTimer": {
"count": 12,
"max": 0.064324482,
"mean": 0.0064664489166666676,
"min": 0.0006582410000000001,
"p50": 0.001099722,
"p75": 0.0018917270000000002,
"p95": 0.064324482,
"p98": 0.064324482,
"p99": 0.064324482,
"p999": 0.064324482,
"stddev": 0.01822988971428955,
"m15_rate": 0.6892782713428792,
"m1_rate": 0.1267495745218626,
"m5_rate": 0.5153224625291539,
"mean_rate": 0.07958252469001104,
"duration_units": "seconds",
"rate_units": "calls/second"
},
"rundeck.services.AuthorizationService.systemAuthorization.evaluateTimer": {
"count": 4,
"max": 0.002291996,
"mean": 0.00132195675,
"min": 0.000826429,
"p50": 0.001084701,
"p75": 0.00204558875,
"p95": 0.002291996,
"p98": 0.002291996,
"p99": 0.002291996,
"p999": 0.002291996,
"stddev": 0.0006824895873415091,
"m15_rate": 0.00314076610191179,
"m1_rate": 0.023875601445527157,
"m5_rate": 0.008400048550624787,
"mean_rate": 0.0265274537259422,
"duration_units": "seconds",
"rate_units": "calls/second"
},
"rundeck.services.FrameworkService.authorizeApplicationResource": {
"count": 4,
"max": 0.016328387,
"mean": 0.004882139000000001,
"min": 0.000912978,
"p50": 0.0011435955,
"p75": 0.012589778000000001,
"p95": 0.016328387,
"p98": 0.016328387,
"p99": 0.016328387,
"p999": 0.016328387,
"stddev": 0.007633923731977984,
"m15_rate": 0.3711760292127013,
"m1_rate": 0.14055240663997448,
"m5_rate": 0.32006153577038915,
"mean_rate": 0.05025453574530793,
"duration_units": "seconds",
"rate_units": "calls/second"
},
"rundeck.services.FrameworkService.filterNodeSet": {
"count": 12,
"max": 0.36586338300000004,
"mean": 0.03359687208333334,
"min": 0.000560871,
"p50": 0.0010942600000000001,
"p75": 0.00812147625,
"p95": 0.36586338300000004,
"p98": 0.36586338300000004,
"p99": 0.36586338300000004,
"p999": 0.36586338300000004,
"stddev": 0.10477591919675994,
"m15_rate": 0.6892782713428792,
"m1_rate": 0.1267495745218626,
"m5_rate": 0.5153224625291539,
"mean_rate": 0.07994704576896616,
"duration_units": "seconds",
"rate_units": "calls/second"
},
"rundeck.services.NodeService.project.bingo.loadNodes": {
"count": 3,
"max": 0.29763018,
"mean": 0.13177108533333334,
"min": 0.046235376,
"p50": 0.051447700000000006,
"p75": 0.29763018,
"p95": 0.29763018,
"p98": 0.29763018,
"p99": 0.29763018,
"p999": 0.29763018,
"stddev": 0.14366183050172013,
"m15_rate": 0.17327375280520316,
"m1_rate": 0.033814570567886885,
"m5_rate": 0.1309493035278718,
"mean_rate": 0.020034416530604948,
"duration_units": "seconds",
"rate_units": "calls/second"
},
"rundeck.web.requests.requestTimer": {
"count": 5,
"max": 0.19833273,
"mean": 0.0921360348,
"min": 0.008643088,
"p50": 0.106350626,
"p75": 0.16599702400000002,
"p95": 0.19833273,
"p98": 0.19833273,
"p99": 0.19833273,
"p999": 0.19833273,
"stddev": 0.08113047507342931,
"m15_rate": 0.33800395660416016,
"m1_rate": 0.05334571472303017,
"m5_rate": 0.24315644263411573,
"mean_rate": 0.02965980629218819,
"duration_units": "seconds",
"rate_units": "calls/second"
}
}
}
# Metrics Healthcheck
Returns results of some health checks.
Request:
GET /api/25/metrics/healthcheck
Response:
Content-Type: application/json
:
{
"dataSource.connection.time": {
"healthy": true,
"message": "Datasource connection healthy with timeout 5 seconds"
},
"quartz.scheduler.threadPool": {
"healthy": true
}
}
# Metrics Threads
Returns a dump of running JVM Threads.
Request:
GET /api/25/metrics/threads
Response:
Content-Type: text/plain
:
Reference Handler id=2 state=WAITING
- waiting on <0x07413c0c> (a java.lang.ref.Reference$Lock)
- locked <0x07413c0c> (a java.lang.ref.Reference$Lock)
at java.lang.Object.wait(Native Method)
at java.lang.Object.wait(Object.java:502)
at java.lang.ref.Reference.tryHandlePending(Reference.java:191)
at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:153)
Finalizer id=3 state=WAITING
- waiting on <0x280b74e0> (a java.lang.ref.ReferenceQueue$Lock)
- locked <0x280b74e0> (a java.lang.ref.ReferenceQueue$Lock)
at java.lang.Object.wait(Native Method)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:165)
at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:216)
Signal Dispatcher id=4 state=RUNNABLE
...
# Metrics Ping
Returns a simple text response.
Request:
GET /api/25/metrics/ping
Response:
Content-Type: text/plain
:
pong
# User Profile
# List users
Get a list of all the users.
Request:
GET /api/27/user/list/
Response:
Success response, with a list of users:
Content-Type: application/xml
:
<user>
<login>user</login>
<firstName>Name</firstName>
<lastName>LastName</lastName>
<email>user@server.com</email>
<created>2017-10-01 09:00:20.44</created>
<updated>2018-08-24 10:53:02.751</updated>
<lastJob>2018-08-28 10:35:00.495</lastJob>
<tokens>1</tokens>
</user>
<user>
<login>admin</login>
<firstName />
<lastName />
<email>admin@server.com</email>
<created>2016-07-17 14:42:20.44</created>
<updated>2018-08-24 10:53:02.751</updated>
<lastJob>2018-08-28 10:35:00.495</lastJob>
<tokens>6</tokens>
</user>
Content-Type: application/json
:
[{
"login":"user",
"firstName":"Name",
"lastName":"LastName",
"email":"user@server.com",
"created": "2017-10-01T09:00:20Z",
"updated": "2018-08-24T13:53:02Z",
"lastJob": "2018-08-28T13:31:00Z",
"tokens": 1
},
{
"login":"admin",
"firstName":"Admin",
"lastName":"Admin",
"email":"admin@server.com",
"created": "2016-07-17T18:42:00Z",
"updated": "2018-08-24T13:53:00Z",
"lastJob": "2018-08-28T13:31:00Z",
"tokens": 6
}]
Since v27:
created
Creation date of the user.updated
Last time the user contact data was updated.lastJob
Last time the user runs a job.tokens
Number of API tokens associated to the user.
# Get user profile
Get same user profile data.
Request:
GET /api/21/user/info/
Response:
Success response, with profile data:
Content-Type: application/xml
:
<user>
<login>user</login>
<firstName>Name</firstName>
<lastName>LastName</lastName>
<email>user@server.com</email>
</user>
Content-Type: application/json
:
{
"login":"user",
"firstName":"Name",
"lastName":"LastName",
"email":"user@server.com"
}
# Get another user profile
Get another user profile data. Requires system admin
permission.
Request:
GET /api/21/user/info/[User]
Response:
Success response, with profile data:
Content-Type: application/xml
:
<user>
<login>user</login>
<firstName>Name</firstName>
<lastName>LastName</lastName>
<email>user@server.com</email>
</user>
Content-Type: application/json
:
{
"login":"user",
"firstName":"Name",
"lastName":"LastName",
"email":"user@server.com"
}
# Modify user profile
Modify same user profile data.
Request:
POST /api/21/user/info/
XML Content:
<user>
<firstName>Name</firstName>
<lastName>LastName</lastName>
<email>user@server.com</email>
</user>
or JSON Content:
{
"firstName":"Name",
"lastName":"LastName",
"email":"user@server.com"
}
Response:
Success response, with profile updated data:
Content-Type: application/xml
:
<user>
<login>user</login>
<firstName>Name</firstName>
<lastName>LastName</lastName>
<email>user@server.com</email>
</user>
Content-Type: application/json
:
{
"login":"user",
"firstName":"Name",
"lastName":"LastName",
"email":"user@server.com"
}
# Modify another user profile
Modify another user profile data. Requires system admin
permission.
Request:
POST /api/21/user/info/[User]
XML Content:
<user>
<firstName>Name</firstName>
<lastName>LastName</lastName>
<email>user@server.com</email>
</user>
or JSON Content:
{
"firstName":"Name",
"lastName":"LastName",
"email":"user@server.com"
}
Response:
Success response, with profile updated data:
Content-Type: application/xml
:
<user>
<login>user</login>
<firstName>Name</firstName>
<lastName>LastName</lastName>
<email>user@server.com</email>
</user>
Content-Type: application/json
:
{
"login":"user",
"firstName":"Name",
"lastName":"LastName",
"email":"user@server.com"
}
# List roles
Get a list of the authenticated user's roles
Request:
GET /api/30/user/roles
Response:
Success response, with a list of roles:
Content-Type: application/xml
:
<roles>
<role>admin</role>
<role>user</role>
</roles>
Content-Type: application/json
:
{
"roles":["admin","user"]
}
# Log Storage
# Log Storage Info
Get Log Storage information and stats.
Request:
GET /api/17/system/logstorage
Response:
Success response, with log storage info and stats in this format:
Content-Type: application/xml
:
<logStorage enabled="true" pluginName="NAME">
<succeededCount>349</succeededCount>
<failedCount>0</failedCount>
<queuedCount>0</queuedCount>
<totalCount>349</totalCount>
<incompleteCount>0</incompleteCount>
<missingCount>0</missingCount>
</logStorage>
Content-Type: application/json
:
{
"enabled": true,
"pluginName": "NAME",
"succeededCount": 369,
"failedCount": 0,
"queuedCount": 0,
"totalCount": 369,
"incompleteCount": 0,
"missingCount": 0
}
enabled
- True if a plugin is configured
pluginName
- Name of the configured plugin
succeededCount
- Number of successful storage requests
failedCount
- Number of failed storage requests
queuedCount
- Number of queued storage requests
totalCount
- Total number of storage requests (currently queued plus previously processed)
incompleteCount
- Number of storage requests which have not completed successfully
missingCount
- Number of executions for this cluster node which have no associated storage requests
# List Executions with Incomplete Log Storage
List all executions with incomplete log storage.
Request:
GET /api/17/system/logstorage/incomplete
Response:
Content-Type: application/xml
:
<logstorage>
<incompleteExecutions total="[#]" max="20" offset="0">
<execution id="[EXECID]" project="[PROJECT]" href="[API HREF]" permalink="[GUI HREF]">
<storage incompleteFiletypes="[TYPES]" queued="true/false" failed="true/false" date="[DATE]" localFilesPresent="true/false">
<errors>
<message>[error message]</message>
<message>[error message...]</message>
</errors>
</storage>
</execution>
...
</logstorage>
Content-Type: application/json
:
{
"total": #,
"max": 20,
"offset": 0,
"executions": [
{
"id": [EXECID],
"project": "[PROJECT]",
"href": "[API HREF]",
"permalink": "[GUI HREF]",
"storage": {
"localFilesPresent": true/false,
"incompleteFiletypes": "[TYPES]",
"queued": true/false,
"failed": true/false,
"date": "[DATE]"
},
"errors": ["message","message..."]
},
...
]
}
total
,max
,offset
(paging information)- Total number of executions with incomplete log data storage, maximum returned in the response, offset of first result.
id
- Execution ID
project
- Project Name
href
- API URL for Execution
permalink
- GUI URL for Execution
incompleteFiletypes
- Comma-separated list of filetypes which have not be uploaded, e.g.
rdlog,state.json
. Types arerdlog
(log output),state.json
(workflow state data),execution.xml
(execution definition) queued
- True if the log data storage is queued to be processed.
failed
- True if the log data storage was processed but failed without completion.
date
- Date when log data storage was first processed. (W3C date format.)
localFilesPresent
- True if all local files (
rdlog
andstate.json
) are available for upload. False if one of them is not present on disk.
# Resume Incomplete Log Storage
Resume processing incomplete Log Storage uploads.
Request:
POST /api/17/system/logstorage/incomplete/resume
Response:
Content-Type: application/xml
:
<logStorage resumed='true' />
Content-Type: application/json
:
{
"resumed": true
}
# Execution Mode
Change the server execution mode to ACTIVE or PASSIVE. The state of the current
execution mode can be viewed via the /api/14/system/info
endpoint, or the /api/32/system/executions/status
endpoint.
# Set Active Mode
Enables executions, allowing adhoc and manual and scheduled jobs to be run.
Request:
POST /api/14/system/executions/enable
Response
Content-Type: application/xml
:
<executions executionMode="active"/>
Content-Type: application/json
:
{
"executionMode":"active"
}
# Set Passive Mode
Disables executions, preventing adhoc and manual and scheduled jobs from running.
Request:
POST /api/14/system/executions/disable
Response
Content-Type: application/xml
:
<executions executionMode="passive"/>
Content-Type: application/json
:
{
"executionMode":"passive"
}
# Get Current Execution Mode
Gets the current execution mode.
TIP
Prior to API version 36 if the mode was passive a status HTTP 503 - Service Unavailable
would be returned.
As of API v36 a 200
status will now be returned when the mode is passive.
To return a 503 when the mode is passive add ?passiveAs503=true
to the API call.
Request:
GET /api/32/system/executions/status
Response
Content-Type: application/xml
:
<executions executionMode="active"/>
or
<executions executionMode="passive"/>
Content-Type: application/json
:
{"executionMode":"active"}
or
{"executionMode":"passive"}
# Cluster Mode
# Takeover Schedule in Cluster Mode
Tell a Rundeck server in cluster mode to claim all scheduled jobs from another cluster server.
This endpoint can take over the schedule of certain jobs based on the input:
- specify a server
uuid
: take over all jobs from that server - specify server
all
value oftrue
: take over all jobs regardless of server UUID
Additionally, you can specify a project
name to take over only jobs matching
the given project name, in combination with the server options.
Alternately, specify a job ID to takeover only a single Job's schedule.
Request
PUT /api/14/scheduler/takeover
Either XML or JSON request.
Content-Type: application/xml
:
XML Document containing:
<takeoverSchedule>
top level element- optional
<server>
element, with one of required attributes:uuid
server UUID to take over fromall
value oftrue
to take over from all servers
- optional
<project>
element, required attribute:name
- optional
<job
> element, with attribute:id
Job UUID to take over.
- optional
Example for a single server UUID:
<takeoverSchedule>
<server uuid="[UUID]" />
</takeoverSchedule>
Example for all servers:
<takeoverSchedule>
<server all="true"/>
</takeoverSchedule>
Example for all servers and a specific project:
<takeoverSchedule>
<server all="true"/>
<project name="[PROJECT]"/>
</takeoverSchedule>
Example for a single Job:
<takeoverSchedule>
<job id="[UUID]"/>
</takeoverSchedule>
Example for multiple Jobs: (since API v32)
<takeoverSchedule>
<server all="true"/>
<job id="[UUID]"/>
<job id="[UUID]"/>
</takeoverSchedule>
Note: The <server>
element can be the root of the document request for backwards compatibility.
Content-Type: application/json
:
A JSON object.
- optional
server
entry, with one of these required entries:uuid
server UUID to take over fromall
value oftrue
to take over from all servers
- optional
project
entry, specifying a project name - optional
job
entry, with required entry:id
Job UUID
{
"server": {
"uuid": "[UUID]",
"all": true
},
"project": "[PROJECT]"
}
Specify a job id:
{
"job": {
"id": "[UUID]"
}
}
Specify multiple jobs: (since API v32)
{
"server": {
"all": true
},
"jobs":[
{
"id": "[UUID]"
},
{
"id": "[UUID]"
}
]
}
Response:
If request was XML, then a <result>
element containing the following elements:
takeoverSchedule
self
server
@uuid
- this cluster server's UUID
server
@uuid
- requested server UUID to take over, if specified in the request@all
-true
if requested
project
- name of project, if specified in requestjob
@id
- requested job UUID to take over, if specified in the request
jobs
- set of successful and failed jobs taken oversuccessful
/failed
- job set@count
number of jobs in the setjob
- one element for each job@id
Job ID@href
Job API HREF@permalink
Job GUI HREF@previous-owner
UUID of the cluster server that was the previous schedule owner
Example XML Response, when uuid
was specified:
<result success="true">
<takeoverSchedule>
<self>
<server uuid='C677C663-F902-4B97-B8AC-4AA57B58DDD6' />
</self>
<server uuid='8F3D5976-2232-4529-847B-8E45764608E3' />
<jobs total='2'>
<successful count='2'>
<job id='a1aa53ac-73a6-4ead-bbe4-34afbff8e057'
href='http://localhost:9090/api/14/job/a1aa53ac-73a6-4ead-bbe4-34afbff8e057'
permalink='http://localhost:9090/rundeck/job/show/a1aa53ac-73a6-4ead-bbe4-34afbff8e057'
previous-owner="8F3D5976-2232-4529-847B-8E45764608E3" />
<job id='116e2025-7895-444a-88f7-d96b4f19fdb3'
href='http://localhost:9090/api/14/job/116e2025-7895-444a-88f7-d96b4f19fdb3'
permalink='http://localhost:9090/rundeck/job/show/116e2025-7895-444a-88f7-d96b4f19fdb3'
previous-owner="8F3D5976-2232-4529-847B-8E45764608E3" />
</successful>
<failed count='0'></failed>
</jobs>
</takeoverSchedule>
</result>
Example XML Response, when all
was specified:
<result success="true">
<takeoverSchedule>
<self>
<server uuid='C677C663-F902-4B97-B8AC-4AA57B58DDD6' />
</self>
<server all='true' />
<jobs total='2'>
...
</jobs>
</takeoverSchedule>
</result>
Example XML Response, when project
was specified:
<result success="true">
<takeoverSchedule>
<self>
<server uuid='C677C663-F902-4B97-B8AC-4AA57B58DDD6' />
</self>
<project name='My Project' />
<jobs total='2'>
...
</jobs>
</takeoverSchedule>
</result>
JSON response for uuid
specified:
{
"takeoverSchedule": {
"jobs": {
"failed": [],
"successful": [
{
"href": "http://dignan:4440/api/14/job/a1aa53ac-73a6-4ead-bbe4-34afbff8e057",
"permalink": "http://dignan:4440/job/show/a1aa53ac-73a6-4ead-bbe4-34afbff8e057",
"id": "a1aa53ac-73a6-4ead-bbe4-34afbff8e057",
"previous-owner": "8F3D5976-2232-4529-847B-8E45764608E3"
},
{
"href": "http://dignan:4440/api/14/job/116e2025-7895-444a-88f7-d96b4f19fdb3",
"permalink": "http://dignan:4440/job/show/116e2025-7895-444a-88f7-d96b4f19fdb3",
"id": "116e2025-7895-444a-88f7-d96b4f19fdb3",
"previous-owner": "8F3D5976-2232-4529-847B-8E45764608E3"
}
],
"total": 2
},
"server": {
"uuid": "8F3D5976-2232-4529-847B-8E45764608E3"
}
},
"self": {
"server": {
"uuid": "C677C663-F902-4B97-B8AC-4AA57B58DDD6"
}
},
"message": "Schedule Takeover successful for 2/2 Jobs.",
"apiversion": 14,
"success": true
}
JSON response for all
specified:
{
"takeoverSchedule": {
"jobs": {
...
"total": 2
},
"server": {
"all": true
}
},
"self": {
"server": {
"uuid": "C677C663-F902-4B97-B8AC-4AA57B58DDD6"
}
},
"message": "Schedule Takeover successful for 2/2 Jobs.",
"apiversion": 14,
"success": true
}
JSON response for project
specified:
{
"takeoverSchedule": {
"jobs": {
...
"total": 2
},
"project": "My Project"
},
"self": {
"server": {
"uuid": "C677C663-F902-4B97-B8AC-4AA57B58DDD6"
}
},
"message": "Schedule Takeover successful for 2/2 Jobs.",
"apiversion": 14,
"success": true
}
# List Scheduled Jobs For a Cluster Server
List the scheduled Jobs with their schedule owned by the cluster server with the specified UUID.
Request
GET /api/17/scheduler/server/[UUID]/jobs
Response
The same format as Listing Jobs.
# List Scheduled Jobs For this Cluster Server
List the scheduled Jobs with their schedule owned by the target cluster server.
Request
GET /api/17/scheduler/jobs
Response
The same format as Listing Jobs.
# ACLs
Manage the system system ACL policy files stored in the database.
The files managed via the API do not include the files located on disk, however these policy files will be merged with
any policy files in the normal filesystem locations (e.g. $RDECK_BASE/etc
).
TIP
For Project-specific ACLs see Project ACLs.
For more information about ACL Policies see:
# List System ACL Policies
Request:
GET /api/14/system/acl/
Response:
Content-Type: application/xml
: A <resource>
containing more resources within a <contents>
element:
<resource path="" type="directory" href="http://server/api/14/system/acl/">
<contents>
<resource path="name.aclpolicy" type="file" href="http://server/api/14/system/acl/name.aclpolicy" name="name.aclpolicy"/>
</contents>
</resource>
Content-Type: application/json
resources
contains a list of entries for each policy
{
"path": "",
"type": "directory",
"href": "http://server/api/14/system/acl/",
"resources": [
{
"path": "name.aclpolicy",
"type": "file",
"name": "name.aclpolicy",
"href": "http://server/api/14/system/acl/name.aclpolicy"
},
...
]
}
# Get an ACL Policy
Retrieve the YAML text of the ACL Policy file. If YAML or text content is requested, the contents will be returned directly. Otherwise if XML or JSON is requested, the YAML text will be wrapped within that format.
Request:
GET /api/14/system/acl/name.aclpolicy
Response:
Content-Type: application/yaml
or Content-Type: text/plain
:
description: "my policy"
context:
application: rundeck
for:
project:
- allow: read
by:
group: build
Content-Type: application/json
:
{
"contents": "description: \"my policy\"\ncontext:\n application: rundeck\nfor:\n project:\n - allow: read\nby:\n group: build"
}
Content-Type: application/xml
: The content is wrapped in a CDATA
section to preserve whitespace formatting.
<contents><![CDATA[description: "my policy"
context:
application: rundeck
for:
project:
- allow: read
by:
group: build]]></contents>
# Create an ACL Policy
Use POST
to create a policy.
Request:
POST /api/14/system/acl/name.aclpolicy
If the Content-Type
is application/yaml
or text/plain
, then the request body is the ACL policy contents directly.
Otherwise, you can use XML or JSON in the same format as returned by Get an ACL Policy:
Content-Type: application/json
{
"contents": "description: \"my policy\"\ncontext:\n application: rundeck\nfor:\n project:\n - allow: read\nby:\n group: build"
}
Content-Type: application/xml
<contents><![CDATA[description: "my policy"
context:
application: rundeck
for:
project:
- allow: read
by:
group: build]]></contents>
Response:
Successful
201 Created
The format the response is based on the Accept:
header, the same format as returned by Get an ACL Policy.
Already Exists
409 Conflict
Validation Failure
400 Bad Request
If Validation fails, the response will be 400 Bad Request
, and the body will contain a list of validation errors.
Because each ACLPOLICY document can contain multiple Yaml documents, each will be listed as a separate policy.
Content-Type: application/json
{
"valid": false,
"policies": [
{
"policy": "file1.aclpolicy[1]",
"errors": [
"reason...",
"reason2..."
]
},
{
"policy": "file1.aclpolicy[2]",
"errors": [
"reason...",
"reason2..."
]
}
]
}
Content-Type: application/xml
<validation valid="false">
<policy id="file1.aclpolicy[1]">
<error>reason text...</error>
<error>reason2 text...</error>
</policy>
<policy id="file1.aclpolicy[2]">
<error>reason text...</error>
</policy>
</validation>
# Update an ACL Policy
Use PUT
to update a policy.
Request:
PUT /api/14/system/acl/name.aclpolicy
You can use Yaml, XML or JSON in the same request format as used by Create an ACL Policy.
Response:
Successful
200 OK
The same response format as used by Create an ACL Policy.
Not Found
404 Not Found
If the policy does not exist, then a 404 Not Found
response is returned.
# Delete an ACL Policy
Delete an ACL policy file.
Request:
DELETE /api/14/system/acl/name.aclpolicy
Response:
Successful
204 No Content
Not Found
404 Not Found
# Jobs
# Listing Jobs
List the jobs that exist for a project.
Request:
GET /api/14/project/[PROJECT]/jobs
The following parameters can also be used to narrow down the result set.
idlist
: specify a comma-separated list of Job IDs to includegroupPath
: specify a group or partial group path to include all jobs within that group path. (Default value: "*", all groups). Set to the special value "-" to match the top level jobs onlyjobFilter
: specify a filter for the job Name. Matches any job name that contains this value.jobExactFilter
: specify an exact job name to match.groupPathExact
: specify an exact group path to match. Set to the special value "-" to match the top level jobs onlyscheduledFilter
:true/false
specify whether to return only scheduled or only not scheduled jobs.serverNodeUUIDFilter
: Value: a UUID. In cluster mode, use to select scheduled jobs assigned to the server with given UUID.
Note: If neither groupPath
nor groupPathExact
are specified, then the default groupPath
value of "*" will be used (matching jobs in all groups). groupPathExact
cannot be combined with groupPath
. You can set either one to "-" to match only the top-level jobs which are not within a group.
Response
Content-Type: application/xml
:
<jobs count="1">
<job id="ID" href="[API url]" permalink="[GUI URL]" scheduled="true/false" scheduleEnabled="true/false"
enabled="true/false"
>
<name>Job Name</name>
<group>Job Name</group>
<project>Project Name</project>
<description>...</description>
</job>
</jobs>
Content-Type: application/json
[
{
"id": "[UUID]",
"name": "[name]",
"group": "[group]",
"project": "[project]",
"description": "...",
"href": "[API url]",
"permalink": "[GUI url]",
"scheduled": true/false,
"scheduleEnabled": true/false,
"enabled": true/false
}
]
Since v17:
scheduled
indicates whether the job has a schedulescheduleEnabled
indicates whether the job's schedule is enabled or notenabled
indicates whether executions are enabled or not
In Cluster mode, additional information about what server UUID is the schedule owner will be included:
serverNodeUUID
UUID of the schedule owner server for this jobserverOwner
boolean value whether the target server is the owner,true/false
.
Content-Type: application/xml
:
<job id="ID" href="[API url]" permalink="[GUI URL]" scheduled="true/false" scheduleEnabled="true/false"
enabled="true/false"
serverNodeUUID="[UUID]"
serverOwner="true/false"
>
<name>Job Name</name>
<group>Job Name</group>
<project>Project Name</project>
<description>...</description>
</job>
Content-Type: application/json
[
{
"id": "[UUID]",
"name": "[name]",
"group": "[group]",
"project": "[project]",
"description": "...",
"href": "[API url]",
"permalink": "[GUI url]",
"scheduled": true/false,
"scheduleEnabled": true/false,
"enabled": true/false,
"serverNodeUUID": "[UUID]",
"serverOwner": true/false
}
]
# Running a Job
Run a job specified by ID.
Request:
POST /api/11/job/[ID]/run
POST /api/12/job/[ID]/executions
Optional parameters:
argString
: argument string to pass to the job, of the form:-opt value -opt2 value ...
.loglevel
: argument specifying the loglevel to use, one of: 'DEBUG','VERBOSE','INFO','WARN','ERROR'asUser
: specifies a username identifying the user who ran the job. RequiresrunAs
permission.- Node filter parameters as described under Using Node Filters
filter
can be a node filter string.runAtTime
: Specify a time to run the job (API v18 or later).option.OPTNAME
: Option value for option namedOPTNAME
. If anyoption.OPTNAME
parameters are specified, theargString
value is ignored (API v18 or later).
runAtTime
- This is a ISO-8601 date and time stamp with timezone, with optional milliseconds.,
e.g.
2016-11-23T12:20:55-0800
or2016-11-23T12:20:55.123-0800
(API v14) If the request has Content-Type: application/json
, then the parameters will be ignored,
and this format is expected in the content:
{
"argString":"...",
"loglevel":"...",
"asUser":"...",
"filter":"...",
"runAtTime":"...",
"options": {
"myopt1":"value",
...
}
}
(API v18 or later): The options
entry can contain a map of option name -> value, in which case the argString
is ignored.
Response:
See Listing Running Executions.
# Retry a Job based on execution
Retry a failed execution on failed nodes only or on the same as the execution.
This is the same functionality as the Retry Failed Nodes ...
button on the execution page.
Request:
POST /api/24/job/[ID]/retry/[EXECID]
Optional parameters. All of this parameters are going to be populated with the execution values unless they are included in the call:
argString
: argument string to pass to the job, of the form:-opt value -opt2 value ...
.loglevel
: argument specifying the loglevel to use, one of: 'DEBUG','VERBOSE','INFO','WARN','ERROR'asUser
: specifies a username identifying the user who ran the job. RequiresrunAs
permission.option.OPTNAME
: Option value for option namedOPTNAME
. If anyoption.OPTNAME
parameters are specified, theargString
value is ignored.failedNodes
:false
to run on the same nodes as the original execution,true
or empty to run only on failed nodes.
If the request has Content-Type: application/json
, then the parameters will be ignored,
and this format is expected in the content:
{
"argString":"...",
"loglevel":"...",
"asUser":"...",
"options": {
"myopt1":"value",
...
}
}
The options
entry can contain a map of option name -> value, in which case the argString
is ignored.
Response:
See Listing Running Executions.
# Exporting Jobs
Export the job definitions for in XML or YAML formats.
Request:
GET /api/14/project/[PROJECT]/jobs/export
Optional parameters:
format
: can be "xml" or "yaml" to specify the output format. Default is "xml"
The following parameters can also be used to narrow down the result set.
idlist
: specify a comma-separated list of Job IDs to exportgroupPath
: specify a group or partial group path to include all jobs within that group path.jobFilter
: specify a filter for the job Name
Response:
If you specify format=xml
, then the output will be in job-xml format.
If you specify format=yaml
, then the output will be in job-yaml format.
If an error occurs, then the output will be in XML format, using the common result
element described in the Response Format section.
# Importing Jobs
Import job definitions in XML or YAML formats.
Request:
POST /api/14/project/[PROJECT]/jobs/import
Request Content:
One of the following:
Content-Type: x-www-form-urlencoded
, with axmlBatch
request parameter containing the input contentContent-Type: multipart/form-data
multipart MIME request part namedxmlBatch
containing the content.Content-Type: application/xml
, request body is the Jobs XML formatted job definitionContent-Type: application/yaml
, request body is the Jobs YAML formatted job definition
Optional parameters:
fileformat
: can be "xml" or "yaml" to specify the input format, if multipart of form input is sent. Default is "xml"dupeOption
: A value to indicate the behavior when importing jobs which already exist. Value can be "skip", "create", or "update". Default is "create".uuidOption
: Whether to preserve or remove UUIDs from the imported jobs. Allowed values (since V9):preserve
: Preserve the UUIDs in imported jobs. This may cause the import to fail if the UUID is already used. (Default value).remove
: Remove the UUIDs from imported jobs. Allows update/create to succeed without conflict on UUID.
Response:
A set of status results. Each imported job definition will be either "succeeded", "failed" or "skipped". These status sections contain a count
attribute declaring how many jobs they contain. Within each one there will be 0 or more job
elements.
Content-Type: application/xml
:
<result success="true">
<succeeded count="x">
<!-- job elements -->
</succeeded>
<failed count="x">
<!-- job elements -->
</failed>
<skipped count="x">
<!-- job elements -->
</skipped>
</result>
Each Job element will be of the form:
<job index="x" href="[API url]">
<!-- ID, href, and permalink may not be present if the job was not created yet -->
<id>ID</id>
<permalink>[GUI url]</permalink>
<name>job name</name>
<group>job group</group>
<project>job project</project>
<!--if within the failed section, then an error section will be included -->
<error>Error message</error>
</job>
Content-Type: application/json
:
{
"succeeded": [...],
"failed": [...],
"skipped": [...]
}
Each array may contain a job data object:
{
"index": 1,
"href": "http://madmartigan.local:4440/api/14/job/3b6c19f6-41ee-475f-8fd0-8f1a26f27a9a",
"id": "3b6c19f6-41ee-475f-8fd0-8f1a26f27a9a",
"name": "restart",
"group": "app2/dev",
"project": "test",
"permalink": "http://madmartigan.local:4440/job/show/3b6c19f6-41ee-475f-8fd0-8f1a26f27a9a"
}
index
: index in the input content of the job definition.id
: If the job exists, or was successfully created, its UUIDhref
: If the job exists, or was successfully created, its API hrefpermalink
: If the job exists, or was successfully created, its GUI URL.
# Getting a Job Definition
Export a single job definition in XML or YAML formats.
Request:
GET /api/11/job/[ID]
Optional parameters:
format
: can be "xml" or "yaml" to specify the output format. Default is "xml"
Response:
If you specify format=xml
, then the output will be in job-xml format.
If you specify format=yaml
, then the output will be in job-yaml format.
If an error occurs, then the output will be in XML format, using the common result
element described in the Response Format section.
# Deleting a Job Definition
Delete a single job definition.
Request:
DELETE /api/11/job/[ID]
Response:
204 No Content
# Bulk Job Delete
Delete multiple job definitions at once.
Request:
Both of the following are valid options for doing a bulk delete of jobs. However, if you are hoping to pass a body with the request, then you must use the POST method since the DELETE method does not allow for request bodies.
DELETE /api/5/jobs/delete
POST /api/5/jobs/delete
Either Query parameters:
ids
: The Job IDs to delete, can be specified multiple timesidlist
: The Job IDs to delete as a single comma-separated string.
Or JSON/XML content:
Content-Type: application/json
{
"ids": [
"fefa50e1-2265-47af-b101-d4bbaa3ba21c",
"f07e2311-4dae-40ca-bdfa-412bd223f863"
],
"idlist":"49336998-21a3-42c7-8da3-a855587982e0,a387f77f-a623-45dc-967f-746a2e3f6686"
}
Note: you can combine ids
with idlist
application/xml
response:
The common result
element described in the Response Format section, indicating success or failure and any messages.
If successful, then the result
will contain a deleteJobs
element with two sections of results, succeeded
and failed
:
<deleteJobs requestCount="#" allsuccessful="true/false">
<succeeded count="1">
<deleteJobRequest id="[job ID]">
<message>[message]</message>
</deleteJobRequest>
</succeeded>
<failed count="1">
<deleteJobRequest id="[job ID]" errorCode="[code]">
<error>[message]</error>
</deleteJobRequest>
</failed>
</deleteJobs>
deleteJobs
will have two attributes:
requestCount
: the number of job IDs that were in the delete requestallsuccessful
: true/false: true if all job deletes were successful, false otherwise.
The response may contain only one of succeeded
or failed
, depending on the result.
The succeeded
and failed
sections contain multiple deleteJobRequest
elements.
Each deleteJobRequest
under the succeeded
section will contain:
id
attribute - the Job IDmessage
sub-element - result message for the delete request
Each deleteJobRequest
under the failed
section will contain:
id
attribute - the Job IDerror
sub-element - result error message for the delete requesterrorCode
attribute - a code indicating the type of failure, currently one offailed
,unauthorized
ornotfound
.
application/json
response:
{
"requestCount": #integer#,
"allsuccessful": true/false,
"succeeded": [...],
"failed":[...]
}
The list of succeeded/failed will contain objects of this form:
{
"id": "[UUID]",
"errorCode": "(error code, see above)",
"message": "(success or failure message)"
}
# Enable Executions for a Job
Enable executions for a job. (ACL requires toggle_execution
action for a job.)
Request:
POST /api/14/job/[ID]/execution/enable
Response:
application/xml
<success>true</success>
application/json
{"success":true}
# Disable Executions for a Job
Disable all executions for a job (scheduled or manual). (ACL requires toggle_execution
action for a job.)
Request:
POST /api/14/job/[ID]/execution/disable
Response:
(See Enable Executions for a Job.)
# Enable Scheduling for a Job
Enable the schedule for a job. (ACL requires toggle_schedule
action for a job.)
Request:
POST /api/14/job/[ID]/schedule/enable
Response:
(See Enable Executions for a Job.)
# Disable Scheduling for a Job
Disable the schedule for a job. (ACL requires toggle_schedule
action for a job.)
Request:
POST /api/14/job/[ID]/schedule/disable
Response:
(See Enable Executions for a Job.)
# Bulk Toggle Job Execution
Toggle whether executions are enabled for a set of jobs. (ACL requires toggle_execution
action for each job.)
Executions will be enabled or disabled, depending on the URL used:
Request:
POST /api/14/jobs/execution/enable
POST /api/14/jobs/execution/disable
Query parameters:
ids
: The Job IDs to delete, can be specified multiple timesidlist
: The Job IDs to delete as a single comma-separated string.
Or JSON/XML content:
Content-Type: application/json
{
"ids": [
"fefa50e1-2265-47af-b101-d4bbaa3ba21c",
"f07e2311-4dae-40ca-bdfa-412bd223f863"
],
"idlist":"49336998-21a3-42c7-8da3-a855587982e0,a387f77f-a623-45dc-967f-746a2e3f6686"
}
Note: you can combine ids
with idlist
.
Response:
If successful, then the result
will contain a toggleExecution
element with two sections of results, succeeded
and failed
:
<toggleExecution enabled="true" requestCount="#" allsuccessful="true/false">
<succeeded count="1">
<toggleExecutionResult id="[job ID]">
<message>[message]</message>
</toggleExecutionResult>
</succeeded>
<failed count="1">
<toggleExecutionResult id="[job ID]" errorCode="[code]">
<error>[message]</error>
</toggleExecutionResult>
</failed>
</toggleExecution>
toggleExecution
has these attributes:
enabled
:true
orfalse
, depending on whetherenable
ordisable
was requested.requestCount
: the number of job IDs that were in the requestallsuccessful
: true/false: true if all modifications were successful, false otherwise.
The response may contain only one of succeeded
or failed
, depending on the result.
The succeeded
and failed
sections contain multiple toggleExecutionResult
elements.
Each toggleExecutionResult
under the succeeded
section will contain:
id
attribute - the Job IDmessage
sub-element - result message for the request
Each toggleExecutionResult
under the failed
section will contain:
id
attribute - the Job IDerror
sub-element - result error message for the requesterrorCode
attribute - a code indicating the type of failure, currently one offailed
,unauthorized
ornotfound
.
application/json
response:
{
"requestCount": #integer#,
"enabled": true/false,
"allsuccessful": true/false,
"succeeded": [...],
"failed":[...]
}
The list of succeeded/failed will contain objects of this form:
{
"id": "[UUID]",
"errorCode": "(error code, see above)",
"message": "(success or failure message)"
}
# Bulk Toggle Job Schedules
Toggle whether schedules are enabled for a set of jobs. (ACL requires toggle_schedule
action for each job.)
Schedules will be enabled or disabled, depending on the URL used:
Request:
POST /api/14/jobs/schedule/enable
POST /api/14/jobs/schedule/disable
Query parameters:
ids
: The Job IDs to delete, can be specified multiple timesidlist
: The Job IDs to delete as a single comma-separated string.
Or JSON/XML content:
Content-Type: application/json
{
"ids": [
"fefa50e1-2265-47af-b101-d4bbaa3ba21c",
"f07e2311-4dae-40ca-bdfa-412bd223f863"
],
"idlist":"49336998-21a3-42c7-8da3-a855587982e0,a387f77f-a623-45dc-967f-746a2e3f6686"
}
Note: you can combine ids
with idlist
.
Response:
If successful, then the result
will contain a toggleSchedule
element with two sections of results, succeeded
and failed
:
<toggleSchedule enabled="true" requestCount="#" allsuccessful="true/false">
<succeeded count="1">
<toggleScheduleResult id="[job ID]">
<message>[message]</message>
</toggleScheduleResult>
</succeeded>
<failed count="1">
<toggleScheduleResult id="[job ID]" errorCode="[code]">
<error>[message]</error>
</toggleScheduleResult>
</failed>
</toggleSchedule>
toggleSchedule
has these attributes:
enabled
:true
orfalse
, depending on whetherenable
ordisable
was requested.requestCount
: the number of job IDs that were in the requestallsuccessful
: true/false: true if all modifications were successful, false otherwise.
The response may contain only one of succeeded
or failed
, depending on the result.
The succeeded
and failed
sections contain multiple toggleScheduleResult
elements.
Each toggleScheduleResult
under the succeeded
section will contain:
id
attribute - the Job IDmessage
sub-element - result message for the request
Each toggleScheduleResult
under the failed
section will contain:
id
attribute - the Job IDerror
sub-element - result error message for the requesterrorCode
attribute - a code indicating the type of failure, currently one offailed
,unauthorized
ornotfound
.
application/json
response:
{
"requestCount": #integer#,
"enabled": true/false,
"allsuccessful": true/false,
"succeeded": [...],
"failed":[...]
}
The list of succeeded/failed will contain objects of this form:
{
"id": "[UUID]",
"errorCode": "(error code, see above)",
"message": "(success or failure message)"
}
# Get Job Metadata
Get metadata about a specific job.
Request:
GET /api/18/job/[ID]/info
Response:
Content-Type: application/xml
: A single job
element in the same format as Listing Jobs:
<job id="ID" href="[API url]" permalink="[GUI URL]" scheduled="true/false" scheduleEnabled="true/false"
enabled="true/false" averageDuration="[ms]"
>
<name>Job Name</name>
<group>Job Name</group>
<project>Project Name</project>
<description>...</description>
</job>
Content-Type: application/json
A single object:
{
"id": "[UUID]",
"name": "[name]",
"group": "[group]",
"project": "[project]",
"description": "...",
"href": "[API url]",
"permalink": "[GUI url]",
"scheduled": true/false,
"scheduleEnabled": true/false,
"enabled": true/false,
"averageDuration": long (milliseconds)
}
# Upload a File for a Job Option
Job Options of type file
require a file input. You can upload multiple files individually, or en-masse.
Each uploaded file is assigned a unique "file key" identifier.
You can then Run the Job using the "file key" as the option value.
Single File Upload Request:
POST /api/19/job/[ID]/input/file?optionName=[NAME]&fileName=[FILENAME]
POST /api/19/job/[ID]/input/file/[NAME]&fileName=[FILENAME]
Content-Type: octet/stream
<file-contents>
Query Parameters:
optionName
: For a single file/option value, specify the option name either as a query parameter or as part of the URL path.fileName
: Specify the original file name (optional)
Headers: Content-Type: octet/stream
Body: File contents
Multiple File Upload Request:
POST /api/19/job/[ID]/input/file
Content-Type: multipart/form-data
...
For multiple files, use a Multi-part request. For each file, specify the field name as option.NAME
where NAME
is the option name. The filename is specified normally within the multi-part request.
Response:
Content-Type: application/xml
:
<jobFileUpload>
<total>$total</total>
<options>
<entry key="$optionName">$fileKey</entry>
<!-- ... -->
</options>
</jobFileUpload>
Content-Type: application/json
:
{
"total": $total,
"options": {
"$optionName": "$fileKey"
}
}
# Example
To upload a file for an option myfile
and run a job with the file:
POST /api/19/job/[ID]/input/file/myfile
Accept: application/json
Content-Type: application/octet-stream
Content-Length: 10
test file
Response:
{
"total": 1,
"options": {
"myfile": "bb704988-6467-4613-b961-13014f6a55cb"
}
}
Now run the job using the file key value for the myfile
option:
POST /api/19/job/[ID]/run
Content-Type: application/json
{"options":{"myfile":"bb704988-6467-4613-b961-13014f6a55cb"}}
Multiple file example using curl:
curl -X POST -H x-rundeck-auth-token:$RD_TOKEN \
-H accept:application/json \
-F option.csvfile=@data.csv \
-F option.xmlfile=@data.xml \
$RD_URL/job/47d71672-9aa0-49f3-96d0-39f02daf80b9/input/file
This uploads two files, one for option csvfile
and with filename data.csv
, and the other for option xmlfile
and filename data.xml
.
The result:
{
"options": {
"csvfile": "34ba3064-28c6-447e-aafb-b73db8ee9f6f",
"xmlfile": "a71c4cc7-71f6-4b3c-b53d-2aa89882a4cf"
},
"total": 2
}
# List Files Uploaded for a Job
List files that have been uploaded for a Job. Files with fileState temp
can be used for for a new execution of the job.
Request:
GET /api/19/job/[ID]/input/files
Query Parameters:
- Paging:
max
(maximum results, default: 20),offset
(offset of first result) - Filter:
fileState
: state of file upload record (default:temp
), can be one of:temp
: file was uploaded and is not yet used, may become expired and removeddeleted
: file was used for an execution and then deletedexpired
: temp file was not used for an execution and expiredretained
: file was retained
Response:
{
"paging": {
"offset": 0,
"max": 20,
"total": 1,
"count": 1
},
"files": [
{
"id": "023057ee-418f-4da7-9ae5-e065ac91eb5a",
"user": "admin",
"fileState": "temp",
"sha": "9284ed4fd7fe1346904656f329db6cc49c0e7ae5b8279bff37f96bc6eb59baad",
"jobId": "7b3fff59-7a2d-4a31-a5b2-dd26177c823c",
"dateCreated": "2017-02-24T22:57:32Z",
"serverNodeUUID": "3425B691-7319-4EEE-8425-F053C628B4BA",
"fileName": null,
"size": 12,
"expirationDate": "2017-02-24T22:58:02Z",
"execId": null
}
]
}
<jobFiles>
<paging offset="0" max="20" total="1" count="1" />
<files>
<file id="023057ee-418f-4da7-9ae5-e065ac91eb5a">
<user>admin</user>
<fileState>temp</fileState>
<sha>
9284ed4fd7fe1346904656f329db6cc49c0e7ae5b8279bff37f96bc6eb59baad</sha>
<jobId>7b3fff59-7a2d-4a31-a5b2-dd26177c823c</jobId>
<dateCreated>2017-02-24 14:57:32.746 PST</dateCreated>
<serverNodeUUID>
3425B691-7319-4EEE-8425-F053C628B4BA</serverNodeUUID>
<fileName />
<size>12</size>
<expirationDate>2017-02-24 14:58:02.655 PST</expirationDate>
<execId />
</file>
</files>
</jobFiles>
# Get Info About an Uploaded File
Get info about an uploaded file given its ID.
Request:
GET /api/19/jobs/file/[ID]
Response:
{
"dateCreated": "2017-02-24T19:10:33Z",
"execId": 2741,
"expirationDate": "2017-02-24T19:11:03Z",
"fileName": null,
"fileState": "deleted",
"id": "f985864b-fa1b-4e09-af7a-4315e9908372",
"jobId": "7b3fff59-7a2d-4a31-a5b2-dd26177c823c",
"serverNodeUUID": "3425B691-7319-4EEE-8425-F053C628B4BA",
"sha": "9284ed4fd7fe1346904656f329db6cc49c0e7ae5b8279bff37f96bc6eb59baad",
"size": 12,
"user": "admin"
}
<file id="f985864b-fa1b-4e09-af7a-4315e9908372">
<user>admin</user>
<fileState>deleted</fileState>
<sha>9284ed4fd7fe1346904656f329db6cc49c0e7ae5b8279bff37f96bc6eb59baad</sha>
<jobId>7b3fff59-7a2d-4a31-a5b2-dd26177c823c</jobId>
<dateCreated>2017-02-24 11:10:33.829 PST</dateCreated>
<serverNodeUUID>3425B691-7319-4EEE-8425-F053C628B4BA</serverNodeUUID>
<fileName />
<size>12</size>
<expirationDate>2017-02-24 11:11:03.741 PST</expirationDate>
<execId>2741</execId>
</file>
# Get Job Forecast
Get a forecast for a specific amount of days of the job by ID.
Request:
GET /api/31/job/[ID]/forecast
Query Parameters:
time
: Time lapse to search the forecast (default: 1d). The format is "XY" where X is an integer, and "Y" is one of:s
: secondn
: minuteh
: hourd
: dayw
: weekm
: monthy
: year
max
: Maximum number of items to return (default: no limit).past
:true
to return an inverse forecast, that is, considering the current scheduler, when it should have run. Note this forecast is only referential, since it will not take into account if the job could have been disabled or not yet been created. Since API v32
Response:
Content-Type: application/xml
: A single job element with the array futureScheduledExecutions
:
<job id="ID" href="[API url]" permalink="[GUI URL]" scheduled="true/false" scheduleEnabled="true/false"
enabled="true/false" averageDuration="[ms]"
>
<name>Job Name</name>
<group>Job Group</group>
<futureScheduledExecutions>
<date>[W3C date]</date>
<date>[W3C date]</date>
</futureScheduledExecutions>
<project>Project Name</project>
<description>...</description>
</job>
Content-Type: application/json
A single object:
{
"href": "[API url]",
"futureScheduledExecutions": [
"[W3C date]",
"[W3C date]",
"[W3C date]",
],
"id": "[ID]",
"scheduleEnabled": true/false,
"scheduled": true/false,
"enabled": true/false,
"permalink": "[GUI URL]",
"group": "[group]",
"description": "[description]",
"project": "[project]",
"name": "[name]"
}
# Get Job Workflow
Get the workflow tree for a job. It will traverse referenced jobs to a depth of 3.
Request:
GET /api/33/job/[ID]/workflow
Response:
Content-Type: application/json
:
{
"workflow": [
{
"description": "[description]",
"exec": "[exec]",
"script": "[script]",
"scriptfile": "[scriptfile]",
"scripturl": "[scripturl]",
"jobRef": {
"name": "[name]",
"group": "[group]",
"uuid": "[uuid]",
"nodeStep": "[nodeStep]",
"importOptions": "[importOptions]"
},
"jobId": "[jobId]",
"type": "[type]",
"nodeStep": "true|false",
"workflow": "[workflow]"
}
]
}
Workflow Step Fields
description
: Present and set to workflow step description if configuredexec
: If command step field is present and set to command string; otherwisescript
: Present and set to"true"
if script stepscriptfile
: Present and set to file path ifscriptfile
stepscripturl
: Ifscripturl
step field is present and set to URL if stepjobRef
: Present if step is a job referencejobId
: If step is a job reference field is present and contains the referenced jobs IDtype
: For plugin steps present and set to step plugin typenodeStep
: Present iftype
is present and set to"true"
or"false"
to indicate if the step is a node step. Implicitly"true"
if not present and not a job step.workflow
: If step is a job reference contains the sub-workflow
# Executions
# Getting Executions for a Job
Get the list of executions for a Job.
Request:
GET /api/11/job/[ID]/executions
Optional Query Parameters:
status
: the status of executions you want to be returned. Must be one of "succeeded", "failed", "aborted", or "running". If this parameter is blank or unset, include all executions.- Paging parameters:
max
: indicate the maximum number of results to return. If unspecified, all results will be returned.offset
: indicate the 0-indexed offset for the first result to return.
Response:
See Listing Running Executions.
# Delete all Executions for a Job
Delete all executions for a Job.
Request:
DELETE /api/12/job/[ID]/executions
Response:
The same format as Bulk Delete Executions.
# Listing Running Executions
List the currently running executions for a project
Request:
GET /api/14/project/[PROJECT]/executions/running
Note: PROJECT
is the project name, or use *
for all projects.
Optional Query Parameters:
jobIdFilter
: Specifies a Job ID, the results will only contain running executions for the given job. Since API v32
Response with Content-Type: application/xml
: An <executions>
element containing multiple <execution>
elements.
<executions count="[count]" offset="[offset]" max="[max]" total="[total]">
<execution...>...</execution>
<execution...>...</execution>
</executions>
The executions
element will have paging attributes:
max
: maximum number of results per pageoffset
: offset from first of all resultstotal
: total number of resultscount
: number of results in the response
Each execution
of the form:
<execution id="[ID]" href="[url]" permalink="[url]" status="[status]" project="[project]">
<user>[user]</user>
<date-started unixtime="[unixtime]">[datetime]</date-started>
<customStatus>[string]</customStatus>
<!-- optional job context if the execution is associated with a job -->
<job id="jobID" averageDuration="[milliseconds]" href="[API url]" permalink="[GUI url]">
<name>..</name>
<group>..</group>
<description>..</description>
<!-- optional if arguments are passed to the job since v10 -->
<options>
<option name="optname" value="optvalue"/>...
</options>
</job>
<!-- description of the execution -->
<description>...</description>
<!-- argString (arguments) of the execution -->
<argstring>...</argstring>
<!-- if Rundeck is in cluster mode -->
<serverUUID>...</serverUUID>
<!-- The following elements included only if the execution has ended -->
<!-- the completion time of the execution -->
<date-ended unixtime="[unixtime]">[datetime]</date-ended>
<!-- if the execution was aborted, the username who aborted it: -->
<abortedby>[username]</abortedby>
<!-- if the execution was is finished, a list of node names that succeeded -->
<successfulNodes>
<node name="node1"/>
<node name="node2"/>
</successfulNodes>
<!-- if the execution was is finished, a list of node names that failed -->
<failedNodes>
<node name="node3"/>
<node name="node4"/>
</failedNodes>
</execution>
Since API v14, JSON format is available
Response with Content-Type: application/json
:
It contains a paging
entry with paging information, and an executions
entry with execution information:
{
"paging": {
"count": 2,
"total": 2,
"offset": 0,
"max": 20
},
"executions":
{
"id": 387,
"href": "[API url]",
"permalink": "[GUI url]",
"status": "[status]",
"customStatus": "[string]",
"project": "test",
"user": "[user]",
"serverUUID":"[UUID]",
"date-started": {
"unixtime": 1431536339809,
"date": "2015-05-13T16:58:59Z"
},
"date-ended": {
"unixtime": 1431536346423,
"date": "2015-05-13T16:59:06Z"
},
"job": {
"id": "7400ff98-31c4-4834-ba3d-aee9646e867f",
"averageDuration": 6094,
"name": "test job",
"group": "api-test/job-run-steps",
"project": "test",
"description": "",
"href": "[API url]",
"permalink": "[GUI url]",
"options": {
"opt2": "a",
"opt1": "testvalue"
}
},
"description": "echo hello there [... 5 steps]",
"argstring": "-opt1 testvalue -opt2 a",
"successfulNodes": [
"madmartigan.local"
]
},
...
}
The [status]
value indicates the execution status. It is one of:
running
: execution is runningsucceeded
: execution completed successfullyfailed
: execution completed with failureaborted
: execution was abortedtimedout
: execution timed outfailed-with-retry
: execution failed and will retryscheduled
: execution is scheduled to run in the futureother
: execution had a custom exit status string
If status
is other
, then, customStatus
will contain the exit status.
The [url]
value for the href
is a URL the Rundeck API for the execution.
The [url]
value for the permalink
is a URL to the Rundeck server page to view the execution output.
[user]
is the username of the user who started the execution.
[unixtime]
is the millisecond unix timestamp, and [datetime]
is a W3C dateTime string in the format "yyyy-MM-ddTHH:mm:ssZ".
If known, the average duration of the associated Job will be indicated (in milliseconds) as averageDuration
. (Since API v5)
API v9 and above: project="[project]"
is the project name of the execution.
successfulNodes
and failedNodes
list the names of nodes which succeeded or failed. API v10 and above.
The job
section contains options
if an argstring
value is set (API v10 and above). Inside options
is a sequence of <option>
elements with two attributes:
name
the parsed option namevalue
the parsed option value
Since API v13: The serverUUID
will indicate the server UUID
if executed in cluster mode.
# Execution Info
Get the status for an execution by ID.
Request:
GET /api/11/execution/[ID]
Response:
With Content-Type: application/xml
:
A single <execution>
item, see Listing Running Executions.
With Content-Type: application/json
, a single object:
{
"id": X,
"href": "[url]",
"permalink": "[url]",
"status": "succeeded/failed/aborted/timedout/retried/other",
"project": "[project]",
"user": "[user]",
"date-started": {
"unixtime": 1431536339809,
"date": "2015-05-13T16:58:59Z"
},
"date-ended": {
"unixtime": 1431536346423,
"date": "2015-05-13T16:59:06Z"
},
"job": {
"id": "[uuid]",
"href": "[url]",
"permalink": "[url]",
"averageDuration": 6094,
"name": "[name]",
"group": "[group]",
"project": "[project]",
"description": "",
"options": {
"opt2": "a",
"opt1": "testvalue"
}
},
"description": "echo hello there [... 5 steps]",
"argstring": "-opt1 testvalue -opt2 a",
"successfulNodes": [
"nodea","nodeb"
],
"failedNodes": [
"nodec","noded"
]
}
# List Input Files for an Execution
List input files used for an execution.
Request:
GET /api/19/execution/[ID]/input/files
Response:
{
"files": [
{
"id": "382c7596-435b-4103-8781-6b32fbd629b2",
"user": "admin",
"fileState": "deleted",
"sha": "9284ed4fd7fe1346904656f329db6cc49c0e7ae5b8279bff37f96bc6eb59baad",
"jobId": "7b3fff59-7a2d-4a31-a5b2-dd26177c823c",
"dateCreated": "2017-02-24T23:26:48Z",
"serverNodeUUID": "3425B691-7319-4EEE-8425-F053C628B4BA",
"fileName": null,
"size": 12,
"expirationDate": "2017-02-24T23:27:18Z",
"execId": 2837
}
]
}
<executionFiles>
<files>
<file id="382c7596-435b-4103-8781-6b32fbd629b2">
<user>admin</user>
<fileState>deleted</fileState>
<sha>
9284ed4fd7fe1346904656f329db6cc49c0e7ae5b8279bff37f96bc6eb59baad</sha>
<jobId>7b3fff59-7a2d-4a31-a5b2-dd26177c823c</jobId>
<dateCreated>2017-02-24 15:26:48.197 PST</dateCreated>
<serverNodeUUID>
3425B691-7319-4EEE-8425-F053C628B4BA</serverNodeUUID>
<fileName />
<size>12</size>
<expirationDate>2017-02-24 15:27:18.65 PST</expirationDate>
<execId>2837</execId>
</file>
</files>
</executionFiles>
# Delete an Execution
Delete an execution by ID.
Request:
DELETE /api/12/execution/[ID]
Response:
204 No Content
Authorization requirement:
- Requires the
delete_execution
action allowed for aproject
in theapplication
context. See: Administration - Access Control Policy - Application Scope Resources and Actions
# Bulk Delete Executions
Delete a set of Executions by their IDs.
Request:
POST /api/12/executions/delete
The IDs can be specified in two ways:
Using a URL parameter
ids
, as a comma separated list, with no body contentPOST /api/12/executions/delete?ids=1,2,17 Content-Length: 0
Using a request body of either XML or JSON data.
If using a request body, the formats are specified below:
Content-Type: application/json
{"ids": [ 1, 2, 17 ] }
OR more simply:
[ 1, 2, 17 ]
Content-Type: application/xml
<executions>
<execution id="1"/>
<execution id="2"/>
<execution id="17"/>
</executions>
Response:
The response format will be either xml
or json
, depending on the Accept
header.
Content-Type: application/json
{
"failures": [
{
"id": "82",
"message": "Not found: 82"
},
{
"id": "83",
"message": "Not found: 83"
},
{
"id": "84",
"message": "Not found: 84"
}
],
"failedCount": 3,
"successCount": 2,
"allsuccessful": false,
"requestCount": 5
}
The JSON fields will be:
failures
: a list of objects indicating theid
andmessage
for the failed deletion attemptfailedCount
: number of deletion attempts that failedsuccessCount
: number of deletion attempts that succeededallsuccessful
: true if all deletions were successfulrequestCount
: number of requested execution deletions
Content-Type: application/xml
<deleteExecutions requestCount='4' allsuccessful='false'>
<successful count='0' />
<failed count='4'>
<execution id='131' message='Unauthorized: Delete execution 131' />
<execution id='109' message='Not found: 109' />
<execution id='81' message='Not found: 81' />
<execution id='74' message='Not found: 74' />
</failed>
</deleteExecutions>
# Execution Query
Query for Executions based on Job or Execution details.
Request:
GET /api/14/project/[PROJECT]/executions
The following parameters can also be used to narrow down the result set.
statusFilter
: execution status, one of "running", succeeded", "failed" or "aborted"abortedbyFilter
: Username who aborted an executionuserFilter
: Username who started the execution- Date query parameters:
recentFilter
: Use a simple text format to filter executions that completed within a period of time. The format is "XY" where X is an integer, and "Y" is one of:h
: hourd
: dayw
: weekm
: monthy
: year
So a value of
2w
would return executions that completed within the last two weeks.olderFilter
: (same format asrecentFilter
) return executions that completed before the specified relative period of time. E.g. a value of30d
returns executions older than 30 days.begin
: Specify exact date for earliest execution completion timeend
: Specify exact date for latest execution completion time
adhoc
: "true/false", if true, include only Adhoc executions, if false return only Job executions. By default any matching executions are returned, however if you use any of the Job filters below, then only Job executions will be returned.
The format for the end
, and begin
filters is either: a unix millisecond timestamp, or a W3C dateTime string in the format "yyyy-MM-ddTHH:mm:ssZ".
Parameters for querying for Executions for particular jobs:
jobIdListFilter
: specify a Job ID to include, can be specified multiple timesexcludeJobIdListFilter
: specify a Job ID to exclude, can be specified multiple timesjobListFilter
: specify a full Job group/name to include, can be specified multiple timesexcludeJobListFilter
: specify a full Job group/name to exclude, can be specified multiple timesgroupPath
: specify a group or partial group path to include all jobs within that group path. Set to the special value "-" to match the top level jobs only.groupPathExact
: specify an exact group path to match. Set to the special value "-" to match the top level jobs only.excludeGroupPath
: specify a group or partial group path to exclude all jobs within that group path. Set to the special value "-" to match the top level jobs only.excludeGroupPathExact
: specify an exact group path to exclude. Set to the special value "-" to match the top level jobs only.jobFilter
: specify a filter for the job Name. Include any job name that matches this value.excludeJobFilter
: specify a filter for the job Name. Exclude any job name that matches this value.jobExactFilter
: specify an exact job name to match.excludeJobExactFilter
: specify an exact job name to exclude.executionTypeFilter
: specify the execution type, one of:scheduled
(schedule trigger),user
(user trigger),user-scheduled
(user scheduled trigger)(since v20)
The format for the jobListFilter
and excludeJobListFilter
is the job's group and name separated by a '/' character, such as: "group1/job name", or "my job" if there is no group.
Paging parameters:
max
: maximum number of results to include in response. (default: 20)offset
: offset for first result to include. (default: 0)
Response
See Listing Running Executions.
# Execution Query Metrics
Obtain metrics over the result set of an execution query. The query can be issued over all executions on the system, or over the executions of a single project depending on the variant used.
Request:
GET /api/29/executions/metrics
GET /api/29/project/[PROJECT]/executions/metrics
To narrow down the result set over which the metrics will be calculated, you can use the same parameters as Execution Query.
Paging parameters max
and offset
will have no effect on the result.
Response
Content-Type: application/xml
A single result element with <duration>
containing duration info, and <total>
with total count.
<result>
<duration>
<average>0s</average>
<min>0s</min>
<max>39s</max>
</duration>
<total>1325</total>
</result>
Content-Type: application/json
An object with duration
entry containing duration stats, and a total
entry with total executions.
{
"duration": {
"average": "0s",
"min": "0s",
"max": "39s"
},
"total": 1325,
}
# Execution State
Get detail about the node and step state of an execution by ID. The execution can be currently running or completed.
Request:
GET /api/10/execution/[ID]/state
Specify expected output format with the Accept:
HTTP header. Supported formats:
application/xml
application/json
The content of the response contains state information for different parts of the workflow:
- overall state
- per-node overall state
- per-step node state
A workflow can have a step which consists of a sub-workflow, so each particular step has a "Step Context Identifier" which defines its location in the workflow(s), and looks something like "1/5/2". Each number identifies the step number (starting at 1) at a workflow level. If there is a "/" in the context identifier, it means there are sub-workflow step numbers, and each preceding number corresponds to a step which has a sub-workflow.
To identify the state of a particular node at a particular step, both a Node name, and a Step Context Identifier are necessary.
In the result set returned by this API call, state information is organized primarily by Step and is structured in the same way as the workflow. This means that sub-workflows will have nested state structures for their steps.
The state information for a Node will not contain the full set of details for the Step and Node, since this information is present in the workflow structure which contains the step state.
# State Result Content
The result set contains this top-level structure:
- general overall state information
startTime
execution start time (see Timestamp format below)endTime
execution end time if completeupdateTime
last update timeexecutionState
overall execution state
allNodes
contains a Node Name List (see below) of nodes known to be targeted in some workflownodes
contains an Overall Node State List of per-node step statesserverNode
name of the server nodeexecutionId
current execution IDcompleted
true/false whether the execution is completed- A Workflow Section (see below)
Workflow Section
Each Workflow Section within the result set will contain these structures
stepCount
Number of steps in the workflowtargetNodes
contains a Node Name List identifying the target nodes of the current workflowsteps
contains a Step State List (see below) of information and state for each step
Node Name List
Consists of a sequence of node name entries, identifying each entry by a name.
In XML, a sequence of node
elements:
<node name="abc" />
<node name="xyz" />
<!-- ... more node elements -->
In JSON, an array of node names.
Overall Node State List
Consists of a sequence of entries for each Node. Each entry contains
name
node namesteps
list of simple state indicator for steps executed by this node
State Indicators:
stepctx
Step Context IdentifierexecutionState
execution state for this step and node
In XML:
<node name="abc">
<steps>
<step>
<stepctx>1</stepctx>
<executionState>SUCCEEDED</executionState>
</step>
<step>
<stepctx>2/1</stepctx>
<executionState>SUCCEEDED</executionState>
</step>
</steps>
</node>
<!-- more node elements -->
In JSON: an object where each key is a node name, and the value is an array of State indicators. A state indicator is an object with two keys, stepctx
and executionState
{
"abc": [
{
"executionState": "SUCCEEDED",
"stepctx": "1"
},
{
"executionState": "SUCCEEDED",
"stepctx": "2/1"
}
]
}
Step State List
A list of Step State information. Each step is identified by its number in the workflow (starting at 1) and its step context
num
the step number (XML)id
the step number (JSON)stepctx
the step context identifier in the workflow- general overall state information for the step
startTime
execution start timeendTime
execution end time if completeupdateTime
last update timeexecutionState
overall execution state
nodeStep
true/false. true if this step directly targets each node from the targetNodes list. If true, this means the step will contain anodeStates
sectionnodeStates
a Node Step State Detail List (see below) for the target nodes if this is a node step.hasSubworkflow
true/false. true if this step has a sub-workflow and aworkflow
entryworkflow
this section contains a Workflow Section
Node Step State Detail List
A sequence of state details for a set of Nodes for the containing step. Each entry will contain:
name
the node name- state information for the Node
startTime
execution start timeendTime
execution end time if completeupdateTime
last update timeexecutionState
overall execution state
In XML:
<nodeState name="abc">
<startTime>2014-01-13T20:58:59Z</startTime>
<updateTime>2014-01-13T20:59:04Z</updateTime>
<endTime>2014-01-13T20:59:04Z</endTime>
<executionState>SUCCEEDED</executionState>
</nodeState>
<!-- more nodeState elements -->
In JSON: an object with node names as keys. Values are objects containing the state information entries.
{
"abc": {
"executionState": "SUCCEEDED",
"endTime": "2014-01-13T20:38:31Z",
"updateTime": "2014-01-13T20:38:31Z",
"startTime": "2014-01-13T20:38:25Z"
}
}
Full XML Example
<result success="true">
<executionState id="135">
<startTime>2014-01-13T20:58:59Z</startTime>
<updateTime>2014-01-13T20:59:10Z</updateTime>
<stepCount>2</stepCount>
<allNodes>
<nodes>
<node name="dignan" />
</nodes>
</allNodes>
<targetNodes>
<nodes>
<node name="dignan" />
</nodes>
</targetNodes>
<executionId>135</executionId>
<serverNode>dignan</serverNode>
<endTime>2014-01-13T20:59:10Z</endTime>
<executionState>SUCCEEDED</executionState>
<completed>true</completed>
<steps>
<step stepctx="1" id="1">
<startTime>2014-01-13T20:58:59Z</startTime>
<nodeStep>true</nodeStep>
<updateTime>2014-01-13T20:58:59Z</updateTime>
<endTime>2014-01-13T20:59:04Z</endTime>
<executionState>SUCCEEDED</executionState>
<nodeStates>
<nodeState name="dignan">
<startTime>2014-01-13T20:58:59Z</startTime>
<updateTime>2014-01-13T20:59:04Z</updateTime>
<endTime>2014-01-13T20:59:04Z</endTime>
<executionState>SUCCEEDED</executionState>
</nodeState>
</nodeStates>
</step>
<step stepctx="2" id="2">
<startTime>2014-01-13T20:59:04Z</startTime>
<nodeStep>false</nodeStep>
<updateTime>2014-01-13T20:59:10Z</updateTime>
<hasSubworkflow>true</hasSubworkflow>
<endTime>2014-01-13T20:59:10Z</endTime>
<executionState>SUCCEEDED</executionState>
<workflow>
<startTime>2014-01-13T20:59:04Z</startTime>
<updateTime>2014-01-13T20:59:10Z</updateTime>
<stepCount>1</stepCount>
<allNodes>
<nodes>
<node name="dignan" />
</nodes>
</allNodes>
<targetNodes>
<nodes>
<node name="dignan" />
</nodes>
</targetNodes>
<endTime>2014-01-13T20:59:10Z</endTime>
<executionState>SUCCEEDED</executionState>
<completed>true</completed>
<steps>
<step stepctx="2/1" id="1">
<startTime>2014-01-13T20:59:04Z</startTime>
<nodeStep>true</nodeStep>
<updateTime>2014-01-13T20:59:04Z</updateTime>
<endTime>2014-01-13T20:59:10Z</endTime>
<executionState>SUCCEEDED</executionState>
<nodeStates>
<nodeState name="dignan">
<startTime>2014-01-13T20:59:04Z</startTime>
<updateTime>2014-01-13T20:59:10Z</updateTime>
<endTime>2014-01-13T20:59:10Z</endTime>
<executionState>SUCCEEDED</executionState>
</nodeState>
</nodeStates>
</step>
</steps>
</workflow>
</step>
</steps>
<nodes>
<node name="dignan">
<steps>
<step>
<stepctx>1</stepctx>
<executionState>SUCCEEDED</executionState>
</step>
<step>
<stepctx>2/1</stepctx>
<executionState>SUCCEEDED</executionState>
</step>
</steps>
</node>
</nodes>
</executionState>
</result>
Full JSON example
{
"completed": true,
"executionState": "SUCCEEDED",
"endTime": "2014-01-13T20:38:36Z",
"serverNode": "dignan",
"startTime": "2014-01-13T20:38:25Z",
"updateTime": "2014-01-13T20:38:36Z",
"stepCount": 2,
"allNodes": [
"dignan"
],
"targetNodes": [
"dignan"
],
"nodes": {
"dignan": [
{
"executionState": "SUCCEEDED",
"stepctx": "1"
},
{
"executionState": "SUCCEEDED",
"stepctx": "2/1"
}
]
},
"executionId": 134,
"steps": [
{
"executionState": "SUCCEEDED",
"endTime": "2014-01-13T20:38:31Z",
"nodeStates": {
"dignan": {
"executionState": "SUCCEEDED",
"endTime": "2014-01-13T20:38:31Z",
"updateTime": "2014-01-13T20:38:31Z",
"startTime": "2014-01-13T20:38:25Z"
}
},
"updateTime": "2014-01-13T20:38:25Z",
"nodeStep": true,
"id": "1",
"startTime": "2014-01-13T20:38:25Z"
},
{
"workflow": {
"completed": true,
"startTime": "2014-01-13T20:38:31Z",
"updateTime": "2014-01-13T20:38:36Z",
"stepCount": 1,
"allNodes": [
"dignan"
],
"targetNodes": [
"dignan"
],
"steps": [
{
"executionState": "SUCCEEDED",
"endTime": "2014-01-13T20:38:36Z",
"nodeStates": {
"dignan": {
"executionState": "SUCCEEDED",
"endTime": "2014-01-13T20:38:36Z",
"updateTime": "2014-01-13T20:38:36Z",
"startTime": "2014-01-13T20:38:31Z"
}
},
"updateTime": "2014-01-13T20:38:31Z",
"nodeStep": true,
"id": "1",
"startTime": "2014-01-13T20:38:31Z"
}
],
"endTime": "2014-01-13T20:38:36Z",
"executionState": "SUCCEEDED"
},
"executionState": "SUCCEEDED",
"endTime": "2014-01-13T20:38:36Z",
"hasSubworkflow": true,
"updateTime": "2014-01-13T20:38:36Z",
"nodeStep": false,
"id": "2",
"startTime": "2014-01-13T20:38:31Z"
}
]
}
Timestamp format:
The timestamp format is ISO8601: yyyy-MM-dd'T'HH:mm:ss'Z'
Execution states:
WAITING
- Waiting to start runningRUNNING
- Currently runningRUNNING_HANDLER
- Running error handler*SUCCEEDED
- Finished running successfullyFAILED
- Finished with a failureABORTED
- Execution was abortedNODE_PARTIAL_SUCCEEDED
- Partial success for some nodes*NODE_MIXED
- Mixed states among nodes*NOT_STARTED
- After waiting the execution did not start*
* these states only apply to steps/nodes and do not apply to the overall execution or workflow.
# Execution Output
Get the output for an execution by ID. The execution can be currently running or may have already completed. Output can be filtered down to a specific node or workflow step.
Request:
GET /api/5/execution/[ID]/output
GET /api/10/execution/[ID]/output/node/[NODE]
GET /api/10/execution/[ID]/output/node/[NODE]/step/[STEPCTX]
GET /api/10/execution/[ID]/output/step/[STEPCTX]
The log output for each execution is stored in a file on the Rundeck server, and this API endpoint allows you to retrieve some or all of the output, in several possible formats: json, XML, and plain text. When retrieving the plain text output, some metadata about the log is included in HTTP Headers. JSON and XML output formats include metadata about each output log line, as well as metadata about the state of the execution and log file, and your current index location in the file.
Output can be selected by Node or Step Context or both as of API v10.
Several parameters can be used to retrieve only part of the output log data. You can use these parameters to more efficiently retrieve the log content over time while an execution is running.
The log file used to store the execution output is a formatted text file which also contains metadata about each line of log output emitted during an execution. Several data values in this API endpoint refer to "bytes", but these do not reflect the size of the final log data; they are only relative to the formatted log file itself. You can treat these byte values as opaque locations in the log file, but you should not try to correlate them to the actual textual log lines.
Optional Parameters:
offset
: byte offset to read from in the file. 0 indicates the beginning.lastlines
: number of lines to retrieve from the end of the available output. If specified it will override theoffset
value and return only the specified number of lines at the end of the log.lastmod
: epoch datestamp in milliseconds, return results only if modification changed since the specified date OR if more data is available at the givenoffset
maxlines
: maximum number of lines to retrieve forward from the specified offset.compacted
:true/false
, (API v21+), if true, results will be in compacted form (see below).
Response:
The output content in the requested format, see Output Content.
# Tailing Output
To "tail" the output from a running execution, you will need to make a series of requests to this API endpoint, and update the offset
value that you send to reflect the returned dataoffset
value that you receive. This gives you a consistent pointer into the output log file.
When starting these requests, there are two mechanisms you can use:
- Start at the beginning, specifying either a
lastmod
or aoffset
of 0 - Start at the end, by using
lastlines
to receive the last available set of log lines.
After your first request you will have the dataoffset
and lastmod
response values you can use to continue making requests for subsequent log output. You can choose several ways to do this:
- Use the
offset
andlastmod
parameters to indicate modification time and receive as much output as is available - Use the
offset
andmaxlines
parameter to specify a maximum number of log entries - Use only the
offset
parameter and receive as much output as is available.
After each request, you will update your offset
value to reflect the dataoffset
in the response.
All log output has been read when the iscompleted
value is "true".
Below is some example pseudo-code for using this API endpoint to follow the output of a running execution "live":
- set offset to 0
- set lastmod to 0
- Repeat until
iscompleted
response value is "true":- perform request sending
offset
andlastmod
parameters - print any log entries, update progress bar, etc.
- Record the resulting
dataoffset
andlastmod
response values for the next request - if
unmodified
is "true", sleep for 5 seconds - otherwise sleep for 2 seconds
- perform request sending
Authorization:
This endpoint requires that the user have 'read' access to the Job or to Adhoc executions to retrieve the output content.
# Output Format Using the URL
Specifying an output format can occur in several ways. The simplest ways are to include the format in the URL, either by including a format
URL parameter, or an extension on the request URL.
When using a URL format, use one of these values for the format:
json
xml
text
To use a URL parameter, add a ?format=
parameter to your request.
E.g.:
GET /api/5/execution/3/output?format=json
To use a URL extension, add a ".[format]" to the end of the URL, but prior to any URL parameters.
E.g.:
GET /api/5/execution/3/output.xml?offset=120
# Output Format using Accept Header
You can also specify the format using Content Negotiation techniques by including an Accept
header in your request, and specifying a valid MIME-type to represent one of the formats:
- For XML,
text/xml
orapplication/xml
- For JSON,
application/json
ortext/json
- For plain text,
text/plain
E.g.:
GET /api/5/execution/3/output
Accept: */xml
# Output Content
The result will contain a set of data values reflecting the execution's status, as well as the status and read location in the output file.
- In JSON, there will be an object containing these entries.
- In XML, within the standard Response Format
result
there will be anoutput
element, containing these sub-elements, each with a text value.
Entries:
id
: ID of the executionmessage
: optional text message indicating why no entries were returnederror
: optional text message indicating an error caseunmodified
: true/false, (optional) "true" will be returned if thelastmod
parameter was used and the file had not changedempty
: true/false, (optional) "true" will be returned if the log file does not exist or is empty, which may occur if the log data is requested before any output has been stored.offset
: Byte offset to read for the next set of datacompleted
: true/false, "true" if the current log entries or request parameters include all of the available dataexecCompleted
: true/false, "true" if the execution has completed.hasFailedNodes
: true/false, "true" if the execution has recorded a list of failed nodesexecState
: execution state, one of "running","succeeded","failed","aborted"lastModified
: (long integer), millisecond timestamp of the last modification of the log fileexecDuration
: (long integer), millisecond duration of the executionpercentLoaded
: (float), (optional) percentage of the output which has been loaded by the parameters to this requesttotalSize
: (integer), total bytes available in the output filefilter
- if anode
orstep
filter was usednodename
- value of the node name filterstepctx
- value of the step context filter
compacted
:true
if compacted form was requested and is used in the response (API v21+)compactedAttr
: name of JSON log entry key used by default for fully compacted entries (API v21+)
Each log entry will be included in a section called entries
.
- In JSON,
entries
will contain an array of Objects, each containing the following format - In XML, the
entries
element will contain a sequence ofentry
elements
Content of each Log Entry:
time
: Timestamp in format: "HH:MM:SS"absolute_time
: Timestamp in format: "yyyy-MM-dd'T'HH:mm:ssZ"level
: Log level, one of: ERROR,WARN,NORMAL,VERBOSE,DEBUG,OTHERlog
: The log messageuser
: User namecommand
: Workflow command context stringnode
: Node namestepctx
: The step context such as1
or1/2/3
Note for API version 5:
For API requests using version 5
only, the XML entry
will have the log message as the text value. Otherwise the log entry
value will be within the log
attribute.
# Log Entries in Compacted Form (API v21+)
As of API v21, you can specify compacted=true
in the URL parameters, which will send the Output Content in "compacted" form. This will be indicated by the compacted
=true
value in
the result data.
In this mode, Log Entries are compacted by only including the changed values from the previous Log Entry in the list. The first Log Entry in the results will always have complete information. Subsequent entries may include only changed values.
In JSON format, if the compactedAttr
value is log
in the response data, and only the log
value changed relative to a previous Log Entry, the Log Entry may consist only of the log message string. That is, the array entry will be a string, not a hash.
When no values changed from the previous Log Entry, the Log Entry will be an empty hash.
When an entry value is not present in the subsequent Log Entry, but was present in the previous
one, in JSON this will be represented with a null
value, and in XML the entry name will be
included in a removed
attribute.
Example (JSON):
In this example, four log entries are included. The first includes all Log Entry fields.
The second is only a String, indicating only log
value changed.
The third is an empty hash, indicating the previous Log Entry was repeated identically.
The fourth specifies a new value for stepctx
and log
and level
to use.
The fifth specifies a node
and stepctx
of null
: indicating the node
and stepctx
values should be removed for
this Log Entry.
{
"id": 1,
... (snip) ...
"compacted": "true",
"compactedAttr": "log",
"entries": [
{
"time": "17:00:00",
"absolute_time": "1970-01-02T01:00:00Z",
"level": "NORMAL",
"log": "This is the first log message",
"user": "bob",
"node": "anode1",
"stepctx": "1"
},
"This is the second log message",
{},
{
"stepctx": "2",
"level": "DEBUG",
"log": "This is the fourth log message"
},
{
"stepctx": null,
"log": "This is the fifth log message",
"node": null
}
]
}
Example (XML) with the same sequence as above:
<output>
<id>1</id>
<!-- ... snip ... -->
<compacted>true</compacted>
<entries>
<entry time='17:00:00' absolute_time='1970-01-02T01:00:00Z' log='This is the first log message' level='NORMAL' user="bob" node="anode1" stepctx="1"/>
<entry log='This is the second log message' />
<entry />
<entry log='This is the fourth log message' level='DEBUG' stepctx='2' />
<entry log='This is the fifth log message' removed='node,stepctx' />
</entries>
</output>
# Text Format Content
For the plain text format, the content of the response will simply be the log output lines at the chosen offset location.
Included in the response will be some HTTP headers that provide the metadata about the output location. Some headers may not be present, depending on the state of the response. See the Output Content section for descriptions of the content and availability of the values:
X-Rundeck-ExecOutput-Error
: Theerror
fieldX-Rundeck-ExecOutput-Message
: Themessage
fieldX-Rundeck-ExecOutput-Empty
: Theempty
fieldX-Rundeck-ExecOutput-Unmodified
: Theunmodified
fieldX-Rundeck-ExecOutput-Offset
: Theoffset
fieldX-Rundeck-ExecOutput-Completed
: Thecompleted
fieldX-Rundeck-Exec-Completed
: TheexecCompleted
fieldX-Rundeck-Exec-State
: TheexecState
fieldX-Rundeck-Exec-Duration
: theexecDuration
fieldX-Rundeck-ExecOutput-LastModifed
: ThelastModified
fieldX-Rundeck-ExecOutput-TotalSize
: ThetotalSize
field
# Execution Output with State
Get the metadata associated with workflow step state changes along with the log output, optionally excluding log output.
Request:
GET /api/10/execution/[ID]/output/state
GET /api/10/execution/[ID]/output/state?stateOnly=true
This API endpoint provides the sequential log of state changes for steps and nodes, optionally interleaved with the actual log output.
Response:
The output format is the same as Execution Output, with this change:
- in the
entries
section, each entry will have atype
value indicating the entry typelog
a normal log entrystepbegin
beginning of the step indicated by thestepctx
stepend
finishing of the stepnodebegin
beginning of execution of a node for the given stepnodeend
finishing of execution of a node for the given step
- metadata about the entry may be included in the entry
# Aborting Executions
Abort a running execution by ID.
Request:
GET /api/11/execution/[ID]/abort
Optional Parameters:
asUser
: specifies a username identifying the user who aborted the execution. RequiresrunAs
permission.
Response:
Content-Type: application/xml
: The result will contain a success/message
element will contain a descriptive message. The status of the abort action will be included as an element:
<abort status="[abort-state]">
<execution id="[id]" status="[status]"/>
</abort>
Content-Type: application/json
:
{
"abort": {
"status": "[abort-state]",
"reason": "[reason]"
},
"execution": {
"id": "[id]",
"status": "[execution status]",
"href": "[API href]",
}
}
The [abort-state]
will be one of: "pending", "failed", or "aborted".
If the [abort-state]
is "failed", then [reason]
will be a textual description of the reason.
# Adhoc
# Running Adhoc Commands
Run a command string.
Request:
GET /api/14/project/[PROJECT]/run/command
POST /api/14/project/[PROJECT]run/command
The necessary content can be supplied as request Parameters:
exec
: the shell command string to run, e.g. "echo hello". (required)nodeThreadcount
: threadcount to use (optional)nodeKeepgoing
: if "true", continue executing on other nodes even if some fail. (optional)asUser
: specifies a username identifying the user who ran the command. RequiresrunAs
permission. (optional)
Node filter parameters as described under Using Node Filters
Or the request can be Content-type: application/json
:
{
"project":"[project]",
"exec":"[exec]",
"nodeThreadcount": #threadcount#,
"nodeKeepgoing": true/false,
"asUser": "[asUser]",
"filter": "[node filter string]"
}
Response:
Content-Type: application/xml
: A success message, and a single <execution>
item identifying the
new execution by ID:
<execution id="X" href="[API Href]" permalink="[GUI href]"/>
Content-Type: application/json
:
{
"message": "Immediate execution scheduled (X)",
"execution": {
"id": X,
"href": "[API Href]",
"permalink": "[GUI Href]"
}
}
# Running Adhoc Scripts
Run a script.
Request:
POST /api/14/project/[PROJECT]/run/script
Request Content:
The script file content can be submitted either as a form request or multipart attachment with request parameters, or can be a json document.
For Content-Type: application/x-www-form-urlencoded
scriptFile
: Ax-www-form-urlencoded
request parameter containing the script file content.
For Content-Type: multipart/form-data
scriptFile
: the script file contents (scriptFile
being thename
attribute of theContent-Disposition
header)
Parameters:
argString
: Arguments to pass to the script when executed.nodeThreadcount
: threadcount to usenodeKeepgoing
: if "true", continue executing on other nodes even if some fail.asUser
: specifies a username identifying the user who ran the script. RequiresrunAs
permission.scriptInterpreter
: a command to use to run the script (since version 8)interpreterArgsQuoted
:true
/false
: if true, the script file and arguments will be quoted as the last argument to thescriptInterpreter
(since version 8)fileExtension
: extension of of the script file on the remote node (since version 14)
Node filter parameters as described under Using Node Filters
If using a json document with Content-type: application/json
:
{
"project":"[project]",
"script":"[script]",
"nodeThreadcount": #threadcount#,
"nodeKeepgoing": true/false,
"asUser": "[asUser]",
"argString": "[argString]",
"scriptInterpreter": "[scriptInterpreter]",
"interpreterArgsQuoted": true/false,
"fileExtension": "[fileExtension]",
"filter": "[node filter string]"
}
# Response
Content-Type: application/xml
: A success message, and a single <execution>
item identifying the
new execution by ID:
<execution id="X" href="[API Href]" permalink="[GUI href]"/>
Content-Type: application/json
:
{
"message": "Immediate execution scheduled (X)",
"execution": {
"id": X,
"href": "[API Href]",
"permalink": "[GUI Href]"
}
}
# Running Adhoc Script URLs
Run a script downloaded from a URL. (API version 4 required.)
Request:
POST /api/14/project/[PROJECT]/run/url
GET /api/14/project/[PROJECT]/run/url
The request can be form content, or a JSON document.
With Content-Type: application/x-www-form-urlencoded
form or query parameters are used.
scriptURL
: A URL pointing to a script file (required)argString
: Arguments to pass to the script when executed.nodeThreadcount
: threadcount to usenodeKeepgoing
: if "true", continue executing on other nodes even if some fail.asUser
: specifies a username identifying the user who ran the script. RequiresrunAs
permission.scriptInterpreter
: a command to use to run the script (since version 8)interpreterArgsQuoted
:true
/false
: if true, the script file and arguments will be quoted as the last argument to thescriptInterpreter
(since version 8)fileExtension
: extension of of the script file on the remote node (since version 14)
Node filter parameters as described under Using Node Filters
If using a json document with Content-type: application/json
:
{
"project":"[project]",
"url":"[scriptURL]",
"nodeThreadcount": #threadcount#,
"nodeKeepgoing": true/false,
"asUser": "[asUser]",
"argString": "[argString]",
"scriptInterpreter": "[scriptInterpreter]",
"interpreterArgsQuoted": true/false,
"fileExtension": "[fileExtension]",
"filter": "[node filter string]"
}
Response:
A success message, and a single <execution>
item identifying the
new execution by ID:
<execution id="X" href="[API Href]" permalink="[GUI href]"/>
Since API version 8: The script interpreter and whether the arguments to the interpreter are quoted can be specified.
Content-Type: application/json
:
{
"message": "Immediate execution scheduled (X)",
"execution": {
"id": X,
"href": "[API Href]",
"permalink": "[GUI Href]"
}
}
# Key Storage
Upload and manage public and private key files and passwords. For more information see the Administration - Key Storage document.
Keys are stored via Rundeck's Storage facility. This is a path-based interface to manage files. The underlying storage may be on disk or in a database.
The Storage facility manages "resources", which may be files or directories. File resources can have metadata associated with them (such as MIME content type).
Note: Private Keys and Passwords can be uploaded but not retrieved directly with this API. They can only be used internally by Rundeck.
URL:
/api/11/storage/keys/[PATH]/[FILE]
# Upload Keys
Specify the type of key via the Content-type
header:
application/octet-stream
specifies a private keyapplication/pgp-keys
specifies a public keyapplication/x-rundeck-data-password
specifies a password
Use POST
to create a new file, or PUT
to modify an existing file.
POST /api/11/storage/keys/[PATH]/[FILE]
Content-Type: [...]
PUT /api/11/storage/keys/[PATH]/[FILE]
Content-Type: [...]
# List keys
Lists resources at the specified PATH, provides a JSON or XML response based on the Accept
request header.
Each resource has a type of file
or directory
.
GET /api/11/storage/keys/[PATH]/
Response:
application/xml
<resource path='keys' type='directory'
url='http://dignan.local:4440/api/11/storage/keys'>
<contents count='3'>
<resource path='keys/test1.pem' type='file'
url='http://dignan.local:4440/api/11/storage/keys/test1.pem'
name='test1.pem'>
<resource-meta>
<Rundeck-content-type>
application/octet-stream</Rundeck-content-type>
<Rundeck-content-size>1679</Rundeck-content-size>
<Rundeck-content-mask>content</Rundeck-content-mask>
<Rundeck-key-type>private</Rundeck-key-type>
</resource-meta>
</resource>
<resource path='keys/test1.pub' type='file'
url='http://dignan.local:4440/api/11/storage/keys/test1.pub'
name='test1.pub'>
<resource-meta>
<Rundeck-content-type>
application/pgp-keys</Rundeck-content-type>
<Rundeck-content-size>393</Rundeck-content-size>
<Rundeck-key-type>public</Rundeck-key-type>
</resource-meta>
</resource>
<resource path='keys/monkey1.pub' type='file'
url='http://dignan.local:4440/api/11/storage/keys/monkey1.pub'
name='monkey1.pub'>
<resource-meta>
<Rundeck-content-type>
application/pgp-keys</Rundeck-content-type>
<Rundeck-content-size>640198</Rundeck-content-size>
<Rundeck-key-type>public</Rundeck-key-type>
</resource-meta>
</resource>
<resource path='keys/subdir' type='directory'
url='http://dignan.local:4440/api/11/storage/keys/subdir'>
</resource>
</contents>
</resource>
application/json
{
"resources": [
{
"meta": {
"Rundeck-key-type": "private",
"Rundeck-content-mask": "content",
"Rundeck-content-size": "1679",
"Rundeck-content-type": "application/octet-stream"
},
"url": "http://dignan.local:4440/api/11/storage/keys/test1.pem",
"name": "test1.pem",
"type": "file",
"path": "keys/test1.pem"
},
{
"url": "http://dignan.local:4440/api/11/storage/keys/subdir",
"type": "directory",
"path": "keys/subdir"
},
{
"meta": {
"Rundeck-key-type": "public",
"Rundeck-content-size": "640198",
"Rundeck-content-type": "application/pgp-keys"
},
"url": "http://dignan.local:4440/api/11/storage/keys/monkey1.pub",
"name": "monkey1.pub",
"type": "file",
"path": "keys/monkey1.pub"
},
{
"meta": {
"Rundeck-key-type": "public",
"Rundeck-content-size": "393",
"Rundeck-content-type": "application/pgp-keys"
},
"url": "http://dignan.local:4440/api/11/storage/keys/test1.pub",
"name": "test1.pub",
"type": "file",
"path": "keys/test1.pub"
}
],
"url": "http://dignan.local:4440/api/11/storage/keys",
"type": "directory",
"path": "keys"
}
# Get Key Metadata
Returns the metadata about the stored key file.
Provides a JSON or XML response based on the Accept
request header:
GET /api/11/storage/keys/[PATH]/[FILE]
Response:
application/xml
<resource path='keys/test1.pub' type='file'
url='http://dignan.local:4440/api/11/storage/keys/test1.pub'
name='test1.pub'>
<resource-meta>
<Rundeck-content-type>
application/pgp-keys</Rundeck-content-type>
<Rundeck-content-size>393</Rundeck-content-size>
<Rundeck-key-type>public</Rundeck-key-type>
</resource-meta>
</resource>
application/json
{
"meta": {
"Rundeck-key-type": "public",
"Rundeck-content-size": "393",
"Rundeck-content-type": "application/pgp-keys"
},
"url": "http://dignan.local:4440/api/11/storage/keys/test1.pub",
"name": "test1.pub",
"type": "file",
"path": "keys/test1.pub"
}
# Get Key Contents
Provides the public key content if the Accept
request header matches */*
or application/pgp-keys
:
GET /api/11/storage/keys/[PATH]/[FILE]
Retrieving private key or password file contents is not allowed.
A GET request for a private key file if the Accept
request header matches */*
or application/octet-stream
,
or a password if the request header matches */*
or application/x-rundeck-data-password
will result in a 403 Unauthorized
response.
GET /api/11/storage/keys/[PATH]/[FILE]
Accept: application/octet-stream
...
Response:
403 Unauthorized
...
# Delete Keys
Deletes the file if it exists and returns 204
response.
DELETE /api/11/storage/keys/[PATH]/[FILE]
# Projects
# Listing Projects
List the existing projects on the server.
Request:
GET /api/11/projects
Response:
See Getting Project Info section.
Since API version 26: add the project label
to the response
Since API version 33: add the project created
date to the response. This is based on the creation of the project.properties
file in the file system or in the DB storage.
[
{
"name":"...",
"description":"...",
"url":"...",
}
]
# Project Creation
Create a new project.
POST /api/11/projects
XML content:
Content-Type: application/xml
<project>
<name>name</name>
<config>
<property key="propname" value="propvalue"/>
<!-- ... -->
</config>
</project>
JSON content:
Content-Type: application/json
{ "name": "myproject", "config": { "propname":"propvalue" } }
Response: XML or JSON project definition of the form indicated in the Getting Project Info section.
# Getting Project Info
Get information about a project.
GET /api/11/project/[PROJECT]
Response:
XML or JSON is determined by the Accept
request header.
Content-Type: application/xml
<project url="http://server:4440/api/11/project/NAME">
<name>Project Name</name>
<description>...</description>
<!-- additional items -->
</project>
If the user has configure
authorization for the project, then the project configuration properties are included in the response.
<config>
<property key="[name]" value="[value]"/>
<!-- ... -->
</config>
Content-Type: application/json
{
"description": "",
"name": "NAME",
"url": "http://server:4440/api/11/project/NAME",
"config": { }
}
# Project Deletion
Delete an existing projects on the server. Requires 'delete' authorization.
DELETE /api/11/project/[PROJECT]
Response:
204 No Content
# Project Configuration
Retrieve or modify the project configuration data. Requires configure
authorization for the project.
# GET Project Configuration
GET /api/11/project/[PROJECT]/config
Response, based on Accept
header:
Content-Type: application/xml
<config>
<property key="name" value="value"/>
<!-- ... -->
</config>
Content-Type: application/json
{
"key":"value",
"key2":"value2..."
}
Content-Type: text/plain
(Java Properties (opens new window)-formatted text.)
key=value
key2=value
# PUT Project Configuration
Replaces all configuration data with the submitted values.
Request:
PUT /api/11/project/[PROJECT]/config
Content:
Content-Type: application/xml
<config>
<property key="key" value="value"/>
<!-- ... -->
</config>
Content-Type: application/json
{
"key":"value",
"key2":"value2..."
}
Content-Type: text/plain
(Java Properties (opens new window)-formatted text.)
key=value
key2=value
Response: same as GET Project Configuration.
# Project Configuration Keys
Retrieve, change or delete individual configuration properties by their key. Requires configure
authorization for the project.
URL:
/api/11/project/[PROJECT]/config/[KEY]
Request and response formats:
application/xml
:
<property key="[KEY]" value="key value"/>
application/json
:
{ "[KEY]" : "key value" }
text/plain
: the plain text key value
key value
# GET Project Configuration Key
Retrieve the value.
GET /api/11/project/[PROJECT]/config/[KEY]
# PUT Project Configuration Key
Set the value.
PUT /api/11/project/[PROJECT]/config/[KEY]
# DELETE Project Configuration Key
Delete the key.
DELETE /api/11/project/[PROJECT]/config/[KEY]
Response will be
204 No Content
# Project Archive Export
Export a zip archive of the project. Requires export
authorization for the project. Performs the export synchronously.
(See Project Archive Export Async for asynchronous export.)
GET /api/11/project/[PROJECT]/export
Response content type is application/zip
Optional parameters:
executionIds
a list (comma-separated) of execution IDs. If this is specified then the archive will contain only executions that are specified, and will not contain Jobs, ACLs, or project configuration/readme files.- optionally use
POST
method with withapplication/x-www-form-urlencoded
content for large lists of execution IDs - optionally, specify
executionIds
multiple times, with a single ID per entry.
- optionally use
In APIv19 or later:
By default, exportALL=true. So, in order to not export empty data, you need to include one of the following flags. For example:
GET /api/11/project/[PROJECT]/export?exportAll=false
exportAll
true/false, include all project contents (default: true)exportJobs
true/false, include executionsexportExecutions
true/false, include executionsexportConfigs
true/false, include project configurationexportReadmes
true/false, include project readme/motd filesexportAcls
true/false, include project ACL Policy files, if authorized
In APIv28 or later:
exportScm
true/false, include project SCM configuration, if authorized
In APIv34 or later:
exportWebhooks
true/false, include project webhooks in the archivewhkIncludeAuthTokens
true/false, include the auth token information when exporting webhooks, if not included the auth tokens will be regenerated upon import
GET Examples:
GET /api/11/project/AlphaProject/export?executionIds=1,4,9
GET /api/11/project/AlphaProject/export?executionIds=1&executionIds=4&executionIds=9
Post:
POST /api/11/project/AlphaProject/export
Content-Type: application/x-www-form-urlencoded
executionIds=1&executionIds=4&executionIds=9&...
# Project Archive Export Async
Export a zip archive of the project asynchronously. Requires export
authorization for the project. Use the Token result
to query the export status with /api/V/project/[PROJECT]/export/status/[TOKEN], and retrieve the result once ready
with /api/V/project/[PROJECT]/export/download/[TOKEN].
GET /api/19/project/[PROJECT]/export/async
Request:
Same as Project Archive Export.
Response:
Same as Project Archive Export Async Status.
In APIv19 or later:
By default, exportALL=true. So, in order to not export empty data, you need to include one of the following flags. For example:
GET /api/11/project/[PROJECT]/export?exportAll=false
exportAll
true/false, include all project contents (default: true)exportJobs
true/false, include executionsexportExecutions
true/false, include executionsexportConfigs
true/false, include project configurationexportReadmes
true/false, include project readme/motd filesexportAcls
true/false, include project ACL Policy files, if authorized
# Project Archive Export Async Status
Get the status of an async export request. Retrieve the result once ready with /api/V/project/[PROJECT]/export/download/[TOKEN].
GET /api/19/project/[PROJECT]/export/status/[TOKEN]
Response:
application/xml
<projectExport token="[TOKEN]" ready="true/false" precentage="#">
</projectExport>
application/json
{
"token":"[TOKEN]",
"ready":true/false,
"percentage":int,
}
# Project Archive Export Async Download
Download the archive file once the export status is ready
.
GET /api/19/project/[PROJECT]/export/download/[TOKEN]
Response:
Response content type is application/zip
# Project Archive Import
Request:
Import a zip archive to the project. Requires import
authorization for the project.
PUT /api/14/project/[PROJECT]/import{?jobUuidOption,importExecutions,importConfig,importACL,importScm}
Parameters:
jobUuidOption
(optional, string,preserve/remove
) ... Option declaring how duplicate Job UUIDs should be handled. Ifpreserve
(default) then imported job UUIDs will not be modified, and may conflict with jobs in other projects. Ifremove
then all job UUIDs will be removed before importing.importExecutions
(optional, boolean,true/false
) ... If true, import all executions and logs from the archive (default). If false, do not import executions or logs.importConfig
(optional,boolean,true/false
) ... If true, import the project configuration from the archive. If false, do not import the project configuration (default).importACL
(optional,boolean,true/false
) ... If true, import all of the ACL Policies from the archive. If false, do not import the ACL Policies (default).importScm
(optional,boolean,true/false
) ... If true, import SCM configuration from the archive. If false, do not import the SCM configuration (default).
In APIv34 or later:
importWebhooks
true/false, If true, import the webhooks in the archive. If false, do not import webhooks (default).whkRegenAuthTokens
true/false, If true, always regenerate the auth tokens associated with the webhook. If false, the webhook auth token in the archive will be imported. If no auth token info was included with the webhook, it will be generated (default).
In APIv38 or later:
importNodesSources
true/false. If true, import Node Resources Source defined on project properties. If false, do not import the nodes sources.
Expected Request Content:
Content-Type: application/zip
Response:
Note: the import status indicates "failed" if any Jobs had failures, otherwise it indicates "successful" even if other files in the archive were not imported.
Response will indicate whether the imported contents had any errors:
All imported jobs and files were successful:
application/xml
<import status="successful">
</import>
application/json
{"import_status":"successful"}
Some imported files failed:
application/xml
<import status="failed">
<errors count="[#]">
<error>Job ABC could not be validated: ...</error>
<error>Job XYZ could not be validated: ...</error>
</errors>
<executionErrors count="[#]">
<error>Execution 123 could not be imported: ...</error>
<error>Execution 456 could not be imported: ...</error>
</executionErrors>
<aclErrors count="[#]">
<error>file.aclpolicy could not be validated: ...</error>
<error>file2.aclpolicy could not be validated: ...</error>
</aclErrors>
<otherErrors count="[#]"><!-- since API v35 -->
<error>webhooks could not be validated: ...</error>
</otherErrors>
</import>
application/json
{
"import_status":"failed",
"errors": [
"Job ABC could not be validated: ...",
"Job XYZ could not be validated: ..."
],
"execution_errors": [
"Execution 123 could not be imported: ...",
"Execution 456 could not be imported: ..."
],
"acl_errors": [
"file.aclpolicy could not be validated: ...",
"file2.aclpolicy could not be validated: ..."
],
"other_errors": [
"webhooks could not be validated: ..."
]
}
other_errors
included since API v35
# Updating and Listing Resources for a Project
Update or retrieve the Resources or Sources for a project.
Each Project can have multiple resource Sources. Sources can be read-only, or writeable.
Use /api/V/project/[PROJECT]/resources to get all resources from a project.
Use /api/V/project/[PROJECT]/sources to get all Sources from a project. Individual Sources can be retrieved, or their Resources
# List Resources for a Project
A GET request returns all the resources for the project.
Request:
GET /api/2/project/[PROJECT]/resources
See Listing Resources.
# List Resource Model Sources for a Project
Request:
GET /api/23/project/[PROJECT]/sources
Response:
The response contains a set of source
objects, each describes the index
, the type
, and details about the resources
. If the
source had any error, that is included as errors
.
Resources data includes any description
provided by the source, whether it is empty
, and
whether it is writeable
. The href
indicates the URL for Listing and Updating the resources for the source.
application/json
[
{
"index": 1,
"resources": {
"description": "/Users/greg/rundeck2.11/projects/atest/etc/resources.xml",
"empty": false,
"href": "http://ecto1.local:4440/api/23/project/atest/source/1/resources",
"writeable": true
},
"type": "file"
},
{
"errors": "File does not exist: /Users/greg/rundeck2.11/projects/atest/etc/resources2.xml",
"index": 2,
"resources": {
"href": "http://ecto1.local:4440/api/23/project/atest/source/2/resources",
"writeable": false
},
"type": "stub"
}
]
application/xml
<?xml version="1.0" encoding="utf-8"?>
<sources project="atest" count="2">
<source index="1" type="file">
<resources href="http://ecto1.local:4440/api/23/project/atest/source/1/resources"
writeable="true" empty="false">
<description>
/Users/greg/rundeck2.11/projects/atest/etc/resources.xml</description>
</resources>
</source>
<source index="2" type="stub">
<resources href="http://ecto1.local:4440/api/23/project/atest/source/2/resources"
writeable="false" />
<errors>File does not exist:
/Users/greg/rundeck2.11/projects/atest/etc/resources2.xml</errors>
</source>
</sources>
# Get a Resource Model Source for a Project
Request:
GET /api/23/project/[PROJECT]/source/[INDEX]
Response:
A single source
for the given index, as described in List Resource Model Sources For a Project.
# List Resources of a Resource Model Source
Request:
GET /api/23/project/[PROJECT]/source/[INDEX]/resources
Response:
Based on the Accept:
header, the resource model data for the source.
- See Listing Resources.
# Update Resources of a Resource Model Source
Request:
POST /api/23/project/[PROJECT]/source/[INDEX]/resources
Content-Type: [TYPE]
[RESOURCE MODEL DATA]
Specify the Content-Type
header, with a value such as application/json
or application/xml
or any supported resource model format.
Response:
The resource model data in the format requested via the Accept:
header.
- See Listing Resources.
# Project Readme File
The readme.md
and motd.md
files,
which are Markdown formatted and displayed in the Project listing page,
can be managed via the API. (See Project Readme.md.)
Request:
/api/13/project/[PROJECT]/readme.md
/api/13/project/[PROJECT]/motd.md
Method: GET
, PUT
and DELETE
.
Format: XML, JSON and plain text formats.
# GET Readme File
GET /api/13/project/[PROJECT]/readme.md
GET /api/13/project/[PROJECT]/motd.md
Response format depends on the Accept:
HTTP header.
text/plain
:
The readme contents
application/xml
:
<contents>The readme contents</contents>
Note: XML output will use CDATA to preserve formatting of the contents
application/json
:
{"contents":"The readme contents"}
If the file does not exist, then the response will be : 404 Not Found
# PUT Readme File
PUT /api/13/project/[PROJECT]/readme.md
PUT /api/13/project/[PROJECT]/motd.md
To create or modify the contents, use a PUT
request, and Content-Type
header to specify the same format. Use the same format as returned by the GET responses.
# DELETE Readme File
DELETE /api/13/project/[PROJECT]/readme.md
DELETE /api/13/project/[PROJECT]/motd.md
Deletes the resource if it exists.
Response: 204 No Content
# Project ACLs
Manage a set of ACL Policy files for a project. These files will apply to the specified project only,
and must either have a context:
section which specifies the project context, or have no context:
section.
The request and response formats for Project ACL Policies matches that of the
System ACL Policies,
however the URL is rooted under the Project's URL path: /api/13/project/[PROJECT]/acl/*
.
For more information about ACL Policies see:
# List Project ACL Policies
Request:
GET /api/13/project/[PROJECT]/acl/
See List System ACL Policies for request and response.
# Get a Project ACL Policy
Request:
GET /api/13/project/[PROJECT]/acl/name.aclpolicy
See Get an ACL Policy for request and response.
# Create a Project ACL Policy
Request:
POST /api/13/project/[PROJECT]/acl/name.aclpolicy
See Create an ACL Policy for request and response.
# Update a Project ACL Policy
Request:
PUT /api/13/project/[PROJECT]/acl/name.aclpolicy
See Update an ACL Policy for request and response.
# Delete a Project ACL Policy
Request:
DELETE /api/13/project/[PROJECT]/acl/name.aclpolicy
# Listing History
List the event history for a project.
Request:
GET /api/14/project/[PROJECT]/history
Optional Parameters:
- History query parameters:
jobIdFilter
: include events for a job ID.reportIdFilter
: include events for an event Name.userFilter
: include events created by a userstatFilter
: include events based on result status. this can be 'succeed','fail', or 'cancel'.jobListFilter
: include events for the job by name, format: 'group/name'. To use multiple values, include this parameter multiple times. (Since API v5)excludeJobListFilter
: exclude events for the job by name, format: 'group/name'. To use multiple values, include this parameter multiple times. (Since API v5)
- Date query parameters:
recentFilter
: Use a simple text format to filter events that occurred within a period of time. The format is "XY" where X is an integer, and "Y" is one of:h
: hourd
: dayw
: weekm
: monthy
: year So a value of "2w" would return events within the last two weeks.
begin
: Specify exact date for earliest result.end
: Specify exact date for latest result.
- Paging parameters:
max
: indicate the maximum number of events to return. The default maximum to return is 20.offset
: indicate the 0-indexed offset for the first event to return.
The format for the end
, and begin
filters is either: a unix millisecond timestamp, or a W3C dateTime string in the format "yyyy-MM-ddTHH:mm:ssZ".
The format for the jobListFilter
and excludeJobListFilter
is the job's group and name separated by a '/' character, such as: "group1/job name", or "my job" if there is no group.
Response:
Content-Type: application/xml
:
<events count="1">
<event starttime="[unixtime]" endtime="[unixtime]">
<title>[job title, or "adhoc"]</title>
<status>[status]</status>
<summary>[summary text]</summary>
<node-summary succeeded="[X]" failed="[Y]" total="[Z]"/>
<user>[user]</user>
<project>[project]</project>
<date-started>[start date]</date-started>
<date-ended>[end date]</date-ended>
<!-- if the execution was aborted, the username who aborted it: -->
<abortedby>[username]</abortedby>
<!-- if associated with an Execution, include the execution id: -->
<execution id="[execid]" href="[api href]" permalink="[gui href]"/>
<!-- if associated with a Job, include the Job ID: -->
<job id="[jobid]" href="[api href]" permalink="[gui href]"/>
</event>
</events>
The events
element will also have max
, offset
, and total
attributes, to indicate the state of paged results. E.G:
<events count="8" total="268" max="20" offset="260">
...
</events>
total
is the total number of events matching the query parameters.
count
is the number of events included in the results.
max
is the paging size as specified in the request, or with the default value of 20.
offset
is the offset specified, or default value of 0.
As of v14: the <execution>
and <job>
elements will have a href
attribute with the URL to the API for that resource, and a permalink
attribute with the URL to the GUI view for the job or execution.
Content-Type: application/json
:
{
"paging": {
"count": 10,
"total": 110,
"max": 20,
"offset": 100
},
"events": [...]
}
The events
array contains elements like:
{
"starttime": #unixtime,
"endtime": #unixtime,
"title": "[job title, or "adhoc"]",
"status": "[status]",
"statusString": "[string]",
"summary": "[summary text]",
"node-summary": {
"succeeded": #X,
"failed": #Y,
"total": #Z
},
"user": "[user]",
"project": "[project]",
"date-started": "[yyyy-MM-ddTHH:mm:ssZ]",
"date-ended": "[yyyy-MM-ddTHH:mm:ssZ]",
"job": {
"id": "[uuid]",
"href": "[api href]"
},
"execution": {
"id": "[id]",
"href": "[api href]"
}
}
# Resources/Nodes
# Listing Resources
List or query the resources for a project.
Request:
GET /api/14/project/[PROJECT]/resources
Optional Parameters:
format
: Result format. Can use "xml", "yaml" or "json", or an installed ResourceFormat plugin name.- Default is 'json' (API v23 and later)
- Default is 'xml' (API v22 and earlier)
- Node Filter parameters: You can select resources to include and exclude in the result set, see Using Node Filters below.
Accept header:
Specify a MIME type via the Accept:
header to specify the requested format.
Note: If no query parameters are included, the result set will include all Node resources for the project.
Response:
Depending on the format
parameter, a value of "xml" will return resource-xml and "yaml" will return resource-yaml, and "json" will return resource-json formatted results. Any other supported format value will return content in the specified format.
# Getting Resource Info
Get a specific resource within a project.
Request:
GET /api/14/project/[PROJECT]/resource/[NAME]
Optional Parameters:
format
: Result format. Can use "xml", "yaml" or "json", or an installed ResourceFormat plugin name.- Default is 'json' (API v23 and later)
- Default is 'xml' (API v22 and earlier)
Response:
Depending on the format
parameter, a value of "xml" will return resource-xml and "yaml" will return resource-yaml, and "json" will return resource-json formatted results.
The result will contain a single item for the specified resource.
# Using Node Filters
Refer to the User Guide - Node Filters Documentation for information on the node filter syntax and usage.
A basic node filter looks like:
attribute: value attribute2: value2
To specify a Node Filter string as a URL parameter for an API request, use a parameter named filter
.
Your HTTP client will have to correctly escape the value of the filter
parameter. For example you can
use curl
like this;
curl --data-urlencode "filter=attribute: value"
Common attributes:
name
- node nametags
- tagshostname
username
osFamily
,osName
,osVersion
,osArch
Custom attributes can also be used.
# SCM
Rundeck SCM Plugins can be used to synchronize Job definitions with an external Source Control Management repository.
Currently Rundeck includes a single built-in plugin for Git repositories.
There are two "integration" types of SCM Plugins: import
and export
, and they are managed separately.
A Project can be configured with a single Import and Export plugin. After setting up these plugins, Project and Job level "status" can be read. Changes to Jobs within a project affect the status for Import or Export.
Plugins provide "actions" which are available based on the Project or Job status. For example, a plugin can provide a "commit" action for a Job, which allows a user to save the changes for the job.
The specific actions, and their behaviors depend on the plugin. The actions can be listed and performed via the API.
# List SCM Plugins
Lists the available plugins for the specified integration. Each plugin is identified by a type
name.
Request
GET /api/15/project/[PROJECT]/scm/[INTEGRATION]/plugins
Response
A list of plugin description.
Each plugin has these properties:
type
identifier for the pluginconfigured
true/false whether a configuration is stored for the pluginenabled
true/false whether the plugin is enabledtitle
display title for the plugindescription
descriptive text for the plugin
Content-Type: application/xml
:
<scmPluginList>
<integration>[$integration]</integration>
<plugins>
<scmPluginDescription>
<configured>[$boolean]</configured>
<description>[$string]</description>
<enabled>[$boolean]</enabled>
<title>[$string]</title>
<type>[$type]</type>
</scmPluginDescription>
</plugins>
</scmPluginList>
Content-Type: application/json
:
{
"integration": "$integration",
"plugins": [
{
"configured": $boolean,
"description": "$string",
"enabled": $boolean,
"title": "$string",
"type": "$type"
}
]
}
# Get SCM Plugin Input Fields
List the input fields for a specific plugin. The integration
and type
must be specified.
The response will list each input field.
Request
GET /api/15/project/[PROJECT]/scm/[INTEGRATION]/plugin/[TYPE]/input
Response
Input fields have a number of properties:
name
identifier for the field, used when submitting the input values.defaultValue
a default value if the input does not specify onedescription
textual descriptionrenderOptions
a key/value map of options, such as declaring that GUI display the input as a password field.required
true/false whether the input is requiredscope
title
display title for the fieldtype
data type of the field:String
,Integer
,Select
(multi-value),FreeSelect
(open-ended multi-value),Boolean
(true/false)values
if the type isSelect
orFreeSelect
, a list of string values to choose from
Content-Type: application/xml
:
<scmPluginSetupInput>
<integration>$integration</integration>
<type>$type</type>
<fields>
<scmPluginInputField>
<defaultValue>$string</defaultValue>
<description>$string</description>
<name>$string</name>
<renderingOptions>
<entry key="$string">$string</entry>
<!-- <entry ... -->
</renderingOptions>
<required>$boolean</required>
<scope>$string</scope>
<title>$string</title>
<type>$string</type>
<values>
<!-- may be empty -->
<string>$string</string>
<string>$string</string>
<!-- <string ... -->
</values>
</scmPluginInputField>
<!--
<scmPluginInputField>...</scmPluginInputField>
-->
</fields>
</scmPluginSetupInput>
Content-Type: application/json
:
{
"fields": [
{
"defaultValue": "$string",
"description": "$string",
"name": "$string",
"renderingOptions": {
"$string": "$string"
},
"required": $boolean,
"scope": "$string",
"title": "$string",
"type": "$string",
"values": null or array
}
//...
],
"integration": "$integration",
"type": "$type"
}
# Setup SCM Plugin for a Project
Configure and enable a plugin for a project.
The request body is expected to contain entries for all of the required
input fields for the plugin.
If a validation error occurs with the configuration, then the response will include detail about the errors.
Request
POST /api/15/project/[PROJECT]/scm/[INTEGRATION]/plugin/[TYPE]/setup
Content:
Content-Type: application/xml
<scmPluginConfig>
<config>
<entry key="key">value</entry>
<entry key="key2">value2</entry>
<!-- ... -->
</config>
</scmPluginConfig>
Content-Type: application/json
{
"config":{
"key":"value",
"key2":"value2..."
}
}
Response
If a validation error occurs, the response will include information about the result.
HTTP/1.1 400 Bad Request
Content-Type: application/xml
:
<scmActionResult>
<message>Some input values were not valid.</message>
<nextAction />
<success>false</success>
<validationErrors>
<entry key="dir">required</entry>
<entry key="url">required</entry>
</validationErrors>
</scmActionResult>
Content-Type: application/json
:
{
"message": "Some input values were not valid.",
"nextAction": null,
"success": false,
"validationErrors": {
"dir": "required",
"url": "required"
}
}
If the result is successful:
HTTP/1.1 200 OK
Content-Type: application/xml
:
<scmActionResult>
<message>$string</message>
<success>true</success>
<nextAction />
<validationErrors/>
</scmActionResult>
Content-Type: application/json
:
{
"message": "$string",
"nextAction": null,
"success": true,
"validationErrors": null
}
If a follow-up Action is expected to be called, the action ID will be identified by the nextAction
value.
# Enable SCM Plugin for a Project
Enable a plugin that was previously configured. (Idempotent)
Request
POST /api/15/project/[PROJECT]/scm/[INTEGRATION]/plugin/[TYPE]/enable
No content body is expected.
Response
Same response as Setup SCM Plugin for a Project.
# Disable SCM Plugin for a Project
Disable a plugin. (Idempotent)
Request
POST /api/15/project/[PROJECT]/scm/[INTEGRATION]/plugin/[TYPE]/disable
No content body is expected.
Response
Same response as Setup SCM Plugin for a Project.
# Get Project SCM Status
Get the SCM plugin status and available actions for the project.
Request
GET /api/15/project/[PROJECT]/scm/[INTEGRATION]/status
Response
If no plugin is configured:
HTTP/1.1 404 Not Found
Otherwise:
HTTP/1.1 200 OK
The plugin status has these properties:
actions
empty, or a list of action ID stringsintegration
the integrationmessage
a string indicating the status messagesynchState
a value indicating the stateproject
project name
Import plugin values for synchState
:
CLEAN
- no changesUNKNOWN
- status unknownREFRESH_NEEDED
- plugin needs to refreshIMPORT_NEEDED
- some changes need to be importedDELETE_NEEDED
- some jobs need to be deleted
Export plugin values for synchState
:
CLEAN
- no changesREFRESH_NEEDED
- plugin needs to refreshEXPORT_NEEDED
- some changes need to be exportedCREATE_NEEDED
- some jobs need to be added to the repo
Content-Type: application/xml
:
<scmProjectStatus>
<actions>
<string>action1</string>
<string>action2</string>
</actions>
<integration>$integration</integration>
<message>$string</message>
<project>$project</project>
<synchState>$state</synchState>
</scmProjectStatus>
Content-Type: application/json
:
{
"actions": ['action1','action2',..],
"integration": "$integration",
"message": null,
"project": "$project",
"synchState": "$state"
}
# Get Project SCM Config
Get the configuration properties for the current plugin.
Request
GET /api/15/project/[PROJECT]/scm/[INTEGRATION]/config
Response
If no plugin for the given integration is configured for the project, a 404
response is sent:
HTTP/1.1 404 Not Found
Otherwise the response contains:
config
a set of key/value pairs for the configurationenabled
true/false if it is enabledintegration
integration nameproject
project nametype
plugin type name
Content-Type: application/xml
:
<scmProjectPluginConfig>
<config>
<entry key="key">value</entry>
<entry key="key2">value2</entry>
<!-- <entry ..>...</entry> -->
</config>
<enabled>$boolean</enabled>
<integration>$integration</integration>
<project>$project</project>
<type>$type</type>
</scmProjectPluginConfig>
Content-Type: application/json
:
{
"config": {
"key": "$string",
"key2": "$string"
},
"enabled": $boolean,
"integration": "$integration",
"project": "$project",
"type": "$type"
}
# Get Project SCM Action Input Fields
Get the input fields and selectable items for a specific action.
Each action may have a set of Input Fields describing user-input values.
Export actions may have a set of scmExportActionItem
s which describe Job changes that can be
included in the action.
Import actions may have a set of scmImportActionItem
s which describe paths from the import repo
which can be selected for the action, they will also be associated with a Job after they are matched.
Request
GET /api/15/project/[PROJECT]/scm/[INTEGRATION]/action/[ACTION_ID]/input
Response
Content-Type: application/xml
:
The content of <scmPluginInputField>
is the same as shown in Get SCM Plugin Input Fields.
scmExportActionItem
values:
itemId
- ID of the repo item, e.g. a file pathjob
- job informationgroupPath
group path, or empty/nulljobId
job IDjobName
job name
deleted
- boolean, whether the job was deleted and requires deleting the associated repo itemrenamed
- boolean if the job was renamedoriginalId
- ID of a repo item if the job was renamed and now is stored at a different repo path, or empty/nullstatus
- file status String, the same value as in the$synchState
of Get Job SCM Status.
scmImportActionItem
values:
itemId
- ID of the repo item, e.g. a file pathjob
- job information, may be empty/nullgroupPath
group path, or emptyjobId
job IDjobName
job name
tracked
- boolean, true if there is an associatedjob
deleted
- boolean, whether the job was deleted on remote and requires to be deletedstatus
- file status String, the same value as in the$synchState
of Get Job SCM Status.
<scmActionInput>
<actionId>$actionId</actionId>
<description />
<fields>
<scmPluginInputField>...</scmPluginInputField>
</fields>
<integration>$integration</integration>
<title>$string</title>
<importItems>
<!-- import only -->
<scmImportActionItem>
<deleted>$boolean</deleted>
<itemId>$string</itemId>
<job>
<!-- job tag may be empty if no associated job-->
<groupPath>$jobgroup</groupPath>
<jobId>$jobid</jobId>
<jobName>$jobname</jobName>
</job>
<tracked>$boolean</tracked>
<status>$string</status>
</scmImportActionItem>
</importItems>
<exportItems>
<!-- export only -->
<scmExportActionItem>
<deleted>$boolean</deleted>
<itemId>$string</itemId>
<job>
<groupPath>$jobgroup</groupPath>
<jobId>$jobid</jobId>
<jobName>$jobname</jobName>
</job>
<originalId>$string</originalId>
<renamed>$boolean</renamed>
<status>$string</status>
</scmExportActionItem>
</exportItems>
</scmActionInput>
Content-Type: application/json
:
The content of "fields"
array is the same as shown in Get SCM Plugin Input Fields.
{
"actionId": "$actionId",
"description": "$string",
"fields": [
{ "name": ...
}
],
"integration": "$integration",
"title": "$string",
"importItems": [
{
"deleted": $boolean,
"itemId": "$string",
"job": {
"groupPath": "$jobgroup",
"jobId": "$jobid",
"jobName": "$jobname"
},
"tracked": $boolean,
"status": "$string"
}
],
"exportItems": [
{
"deleted": $boolean,
"itemId": "$string",
"job": {
"groupPath": "$jobgroup",
"jobId": "$jobid",
"jobName": "$jobname"
},
"originalId": "$string",
"renamed": $boolean,
"status": "$string"
}
]
}
# Perform Project SCM Action
Perform the action for the SCM integration plugin, with a set of input parameters, selected Jobs, or Items, or Items to delete.
Depending on the available Input Fields for the action, the action will
expect a set of input
values.
The set of jobs
and items
to choose from will be included in the Input Fields response,
however where an Item has an associated Job, you can supply either the Job ID, or the Item ID.
When there are items to be deleted on export
integration, you can specify the Item IDs in the deleted
section. However, if the item is associated with a renamed Job, including the Job ID will have the same effect.
When there are items to be deleted on import
integration, you must specify the Job IDs in the deletedJobs
section.
Note: including the Item ID of an associated job, instead of the Job ID, will not automatically delete a renamed item.
Request
POST /api/15/project/[PROJECT]/scm/[INTEGRATION]/action/[ACTION_ID]
Content-Type: application/xml
:
<scmAction>
<input>
<entry key="message">$commitMessage</entry>
</input>
<jobs>
<job jobId="$jobId"/>
</jobs>
<items>
<item itemId="$itemId"/>
</items>
<deleted>
<item itemId="$itemId"/>
</deleted>
<deletedJobs>
<job jobId="$jobId"/>
</deletedJobs>
</scmAction>
Content-Type: application/json
:
{
"input":{
"message":"$commitMessage"
},
"jobs":[
"$jobId"
],
"items":[
"$itemId"
],
"deleted":[
"$itemId"
],
"deletedJobs":[
"$jobId"
]
}
Response
Same response as Setup SCM Plugin for a Project.
# Get Job SCM Status
Request
GET /api/15/job/[ID]/scm/[INTEGRATION]/status
Response
Note: import
status will not include any actions for the job, refer to the Project status to list import actions.
Import plugin values for $synchState
:
CLEAN
- no changesUNKNOWN
- status unknown, e.g. the job was not imported via SCMREFRESH_NEEDED
- plugin needs to refreshIMPORT_NEEDED
- Job changes need to be importedDELETE_NEEDED
- Job need to be deleted
Export plugin values for $synchState
:
CLEAN
- no changesREFRESH_NEEDED
- plugin needs to refreshEXPORT_NEEDED
- job changes need to be exportedCREATE_NEEDED
- Job needs to be added to the repo
Content-Type: application/xml
:
<scmJobStatus>
<actions>
<string>$action</string>
<!--
<string>$action2</string>
-->
</actions>
<commit>
<author>$commitAuthor</author>
<commitId>$commitId</commitId>
<date>$commitDate</date>
<info>
<entry key="key">value</entry>
<!-- <entry key="..">...</entry> -->
</info>
<message>$commitMessage</message>
</commit>
<id>$jobId</id>
<integration>$integration</integration>
<message>$statusMessage</message>
<project>$project</project>
<synchState>$synchState</synchState>
</scmJobStatus>
Content-Type: application/json
:
{
"actions": [
"$action"
],
"commit": {
"author": "$commitAuthor",
"commitId": "$commitId",
"date": "$commitDate",
"info": {
"key": "value.."
},
"message": "$commitMessage"
},
"id": "$jobId",
"integration": "$integration",
"message": "$statusMessage",
"project": "$project",
"synchState": "$synchState"
}
# Get Job SCM Diff
Retrieve the file diff for the Job, if there are changes for the integration.
The format of the diff content depends on the specific plugin. For the Git plugins, a unified diff format is used.
Request
GET /api/15/job/[ID]/scm/[INTEGRATION]/diff
Response
The commit
info will be the same structure as in Get Job SCM Status.
For import
only, incomingCommit
will indicate the to-be-imported change.
For application/xml
, the diffContent
will use a CDATA section to preserve whitespace.
Content-Type: application/xml
:
<scmJobDiff>
<commit>
<!-- commit info -->
</commit>
<diffContent><![CDATA[...]]></diffContent>
<id>$jobId</id>
<incomingCommit>
<!-- import only: incoming commit info -->
</incomingCommit>
<integration>$integration</integration>
<project>$project</project>
</scmJobDiff>
Content-Type: application/json
:
{
"commit": {
...
},
"diffContent": "...",
"id": "$jobId",
"incomingCommit": {
...
},
"integration": "$integration",
"project": "$project"
}
# Get Job SCM Action Input Fields
Get the input fields and selectable items for a specific action for a job.
Each action may have a set of Input Fields describing user-input values.
Export actions will include one scmExportActionItem
for the Job.
Import actions may have a set of scmImportActionItem
for the job.
Request
GET /api/15/job/[ID]/scm/[INTEGRATION]/action/[ACTION_ID]/input
Response
The same response format as in Get Project SCM Action Input Fields.
# Perform Job SCM Action
Request
POST /api/15/job/[ID]/scm/[INTEGRATION]/action/[ACTION_ID]
Request Content is nearly exactly as expected in Perform Project SCM Action,
however the jobIds
do not need to be specified, as the ID
of the job is already specified.
The items
and deleted
sections are not used.
Only the input
values need to be specified:
Content-Type: application/xml
:
<scmAction>
<input>
<entry key="message">$commitMessage</entry>
</input>
</scmAction>
Content-Type: application/json
:
{
"input":{
"message":"$commitMessage"
}
}
Response
Same response as Setup SCM Plugin for a Project.
# Plugins
# List installed plugins
Request
GET /api/33/plugin/list
Response
Content-Type: application/json
:
[
{
"artifactName": "kubernetes-plugin",
"author": "Rundeck",
"builtin": false,
"description": "dispatch the command to the kubernetes pod",
"id": "15712f2421d1",
"name": "Kubernetes-node-executor",
"pluginVersion": "1.0.0",
"service": "NodeExecutor",
"title": "Kubernetes / Pods / Node Executor",
"iconUrl": "...",
"providerMetadata": { }
},
{
"artifactName": "py-winrm-plugin",
"author": "© 2017, Rundeck, Inc.",
"builtin": false,
"description": "Executing Scripts or Commands on remote Windows computer",
"id": "59ed572534b2",
"name": "WinRMPython",
"pluginVersion": "1.0.7",
"service": "NodeExecutor",
"title": "WinRM Node Executor Python",
"iconUrl": "...",
"providerMetadata": { }
},
...
]
iconUrl
- URL to icon file for the plugin if present. since V40providerMetadata
- Map of metadata about the plugin if present. since V40
# Webhooks
# List Project Webhooks
Request
GET /api/V/project/[PROJECT]/webhooks
Response
Content-Type: application/json
:
[
{
"authToken": "Z1vnbhShhQF3B0dQq7UhJTZMnGS92TBl",
"config": {
"argString": "-payload ${raw}",
"jobId": "a54d07a1-033a-499f-9789-19bcacbd6e11"
},
"creator": "admin",
"enabled": true,
"eventPlugin": "webhook-run-job",
"id": 3,
"name": "Webhook Job Runner",
"project": "Webhook",
"roles": "admin,user",
"user": "admin"
},
{
"authToken": "p9ttreh05Zd222g5yBXocEMXmCJ1skOX",
"config": {},
"creator": "admin",
"enabled": true,
"eventPlugin": "log-webhook-event",
"id": 4,
"name": "Log it Hook",
"project": "Webhook",
"roles": "admin,user",
"user": "admin"
}
]
# Get A Webhook
Request
GET /api/V/project/[PROJECT]/webhook/[ID]
Response
Content-Type: application/json
:
{
"authToken": "Z1vnbhShhQF3B0dQq7UhJTZMnGS92TBl",
"config": {
"argString": "-payload ${raw}",
"jobId": "a54d07a1-033a-499f-9789-19bcacbd6e11"
},
"creator": "admin",
"enabled": true,
"eventPlugin": "webhook-run-job",
"id": 3,
"name": "Webhook Job Runner",
"project": "Webhook",
"roles": "admin,user",
"user": "admin"
}
# Update A Webhook
Request
POST /api/V/project/[PROJECT]/webhook/[ID]
Required Fields:
id
project
Along with the required fields you may send only the fields you want to update.
When updating a webhook you may not change the user associated with a webhook,
so suppling the user
field will have no effect. Also, specifying an authToken
field has no effect.
Content-Type: application/json
:
{
"config": {
"argString": "-payload ${raw} -d ${data.one}",
"jobId": "a54d07a1-033a-499f-9789-19bcacbd6e11"
},
"id": 3,
"name": "Webhook Job Runner 1",
"roles": "admin,user,webhook",
"project": "Webhook"
}
Response
Content-Type: application/json
:
{
"msg": "Saved webhook"
}
or error
{
"apiversion": 33,
"error": true,
"errorCode": "api.error.parameter.required",
"message": "parameter \"project\" is required"
}
# Add A Webhook
Request
POST /api/V/project/[PROJECT]/webhook
Required Fields:
project - the project that owns the webhook
name - the name of the webhook
user - string the webhook runs as this user
roles - string containing comma separated list of roles to use for the webhook
eventPlugin - string must be a valid plugin name
config - object containing config values for the specified plugin
enabled - boolean
Do not specify an authToken
or creator
field. They will be ignored.
Content-Type: application/json
:
{
"config": {
"jobId": "a54d07a1-033a-499f-9789-19bcacbd6e11"
},
"enabled": true,
"eventPlugin": "webhook-run-job",
"name": "Add Me",
"project": "Webhook",
"roles": "webhook,admin,user",
"user": "admin"
}
Response
Content-Type: application/json
:
{
"msg": "Saved webhook"
}
# Delete A Webhook
Request
DELETE /api/V/project/[PROJECT]/webhook/[ID]
Response
Content-Type: application/json
:
{
"msg": "Deleted [webhook name] webhook"
}
# Send Webhook Event
Request
POST /api/V/webhook/[AUTH_TOKEN]
You may post whatever data you wish to the webhook endpoint, however the plugin you are using must be able to handle the data you post. If the webhook plugin associated with the webhook can't handle the content type posted you will get an error response.
Response
The webhook plugin will determine the response received. Please see the documentation for the plugin that is configured for the webhook endpoint you are using.
The default response is:
Content-Type: text/plain
:
ok
# Calendars (Enterprise)
Available in Rundeck Enterprise
Incubating: this API or Feature may change in a future release.
Manage System and Project Calendars in Rundeck Enterprise.
# List System Calendars
Get all calendars at system level.
Available in Rundeck Enterprise
Incubating: this API or Feature may change in a future release.
Request:
GET /api/V/incubating/system/calendars
Response: Content-Type: application/json
[
{
"id": [ID],
"name": "[NAME]",
"description": "[DESCRIPTION]",
"calendarType": "[blackout/allowed]",
"level": "system",
"project": null,
"dateType": "[date,range,daily,monthly]",
"dateDefinition": [DATE-DEFINITION],
"enable": [true/false],
"allReference": [true/false],
"recurrent": [true/false],
"objects": [PROJECT_LIST/null]
},
]
# List Project Calendars
Get all calendars at project level
Available in Rundeck Enterprise
Incubating: this API or Feature may change in a future release.
Request:
GET /api/V/incubating/project/[PROJECT]/calendars
Response: Content-Type: application/json
[
{
"id": [ID],
"name": "[NAME]",
"description": "[DESCRIPTION]",
"calendarType": "[blackout/allowed]",
"level": "project",
"project": "[PROJECT]",
"dateType": "[date,range,daily,monthly]",
"dateDefinition": [DATE-DEFINITION],
"enable": [true/false],
"allReference": [true/false],
"recurrent": [true/false],
"objects": [
{
"uuid": "[JOBUUID]",
"name": "[JOBNAME"
}
]
}
]
# Create/Update System Calendar
Create or update a calendar at system level
Available in Rundeck Enterprise
Incubating: this API or Feature may change in a future release.
Request:
POST /api/V/incubating/system/calendars
Request Content:
Content-Type: application/json
{
"id": [ID],
"name": "[NAME]",
"description": "[DESCRIPTION]",
"calendarType": "[blackout/allowed]",
"level": "system",
"dateType": "[date,range,daily,monthly]",
"dateDefinition": [DATE-DEFINITION],
"enable": [true/false],
"allReference": [true/false],
"recurrent": [true/false],
"objects": [
{
"name": "[PROJECTNAME]"
}
]
}
*if the ID exists, it will update the existing calendar, otherwise it will be created it
Example:
{
"id": 1,
"name": "System Calendar",
"description":"description",
"calendarType": "blackout",
"level": "system",
"dateType": "range",
"dateDefinition": [
"2019/11/21",
"2019/11/27"
],
"enable": false,
"allReference": true,
"recurrent": true
}
# Create/Update Project Calendar
Create or update a calendar at project level
Available in Rundeck Enterprise
Incubating: this API or Feature may change in a future release.
Request:
POST /api/V/incubating/project/[PROJECT]/calendars
Request Content:
Content-Type: application/json
{
"id": [ID],
"name": "[NAME]",
"description": "[DESCRIPTION]",
"calendarType": "[blackout/allowed]",
"level": "project",
"project": "[PROJECT]",
"dateType": "[date,range,daily,monthly]",
"dateDefinition": [DATE-DEFINITION],
"enable": [true/false],
"allReference": [true/false],
"recurrent": [true/false],
"objects": [
{
"uuid": "[JOBUUID]",
"name": "[JOBNAME]"
},
{
"uuid": "[JOBUUID]",
"name": "[JOBNAME]"
}
]
}
*if the ID exists, it will update the existing calendar, otherwise it will be created it
Example:
{
"id": 1,
"name": "New Calendar",
"description": "test",
"calendarType": "blackout",
"level": "project",
"project": "Demo",
"dateType": "date",
"dateDefinition": [
"2019/12/07",
"2019/12/14",
"2019/12/31",
"2020/01/01"
],
"enable": true,
"allReference": false,
"recurrent": false,
"objects": [
{
"uuid": "7ca918bd-b463-4948-96d2-796c0619c2bd",
"name": "scheduled/job"
}
]
}
# Delete Project Calendar
Deletes a calendar at project level
Available in Rundeck Enterprise
Incubating: this API or Feature may change in a future release.
Request:
DELETE /api/V/incubating/project/[PROJECT]/calendars/[ID]
Request Content:
NO CONTENT NEEDED
Example:
{
"msg": "Deleted calendar"
}
# Delete System Calendar
Deletes a calendar at system level
Available in Rundeck Enterprise
Incubating: this API or Feature may change in a future release.
Request:
DELETE /api/V/incubating/system/calendars/[ID]
Request Content:
NO CONTENT NEEDED
Example:
{
"msg": "Deleted calendar"
}
# License (Enterprise)
# View License
Available in Rundeck Enterprise
Returns metadata about the current License for Rundeck Enterprise.
Request:
GET /api/V/incubating/enterprise/license
Response:
{
"company": "rundeck.com",
"contactEmail": "support@rundeck.com",
"application": "rundeckpro",
"editions": [
"ENTERPRISE"
],
"applicationVersion": [
"3.3.0"
],
"serverUUIDs": [
"00000000-0000-0000-0000-000000000000"
],
"gracePeriod": 30,
"type": "EVAL",
"issueDate": "2020-06-04T07:00:00Z",
"validUntil": "2020-06-30T07:00:00Z",
"validSince": null,
"graceUntil": "2020-06-30T07:00:00Z",
"licenseId": "00000000-0000-0000-0000-000000000000",
"perpetual": false,
"invalidCode": null,
"remaining": 26,
"state": "ACTIVE",
"active": true,
"shouldWarn": true,
"baseUrl": "http://rundeck/license/index",
"edition": "ENTERPRISE",
"reason": "The License is Valid",
"warning": "The Rundeck License will expire in 26 days"
}
# Set License Key
Available in Rundeck Enterprise
Uploads a license key for Rundeck Enterprise.
Request:
POST /api/V/incubating/enterprise/license
Content-Type: application/x-rundeck-license
Request Content:
The Rundeck Enterprise License key file.
Optional Parameters:
license_agreement
:true
to agree with the Rundeck Enterprise License.
Response:
Content-Type: application/json
{
"message": "OK"
}
# Index
GET
Execution InfoDELETE
Delete an Execution
/api/V/execution/[ID]/output/state
GET
Tailing Output
/api/V/execution/[ID]/output/step/[STEPCTX]
/api/V/execution/[ID]/output/node/[NODE]/step/[STEPCTX]
/api/V/execution/[ID]/output/node/[NODE]
GET
Execution Output
GET
Execution State
POST
Running a JobGET
Getting Executions for a JobDELETE
Delete all Executions for a Job
/api/V/job/[ID]/execution/enable
/api/V/job/[ID]/execution/disable
/api/V/job/[ID]/retry/[EXECID]
/api/V/execution/[ID]/input/files
GET
Get Job Metadata
POST
Running a Job
/api/V/job/[ID]/schedule/enable
/api/V/job/[ID]/schedule/disable
/api/V/job/[ID]/scm/[INTEGRATION]/status
/api/V/job/[ID]/scm/[INTEGRATION]/action/[ACTION_ID]
/api/V/job/[ID]/scm/[INTEGRATION]/action/[ACTION_ID]/input
DELETE
Bulk Job Delete
GET
List Metrics
GET
Metrics Data
GET
Metrics Ping
GET
Metrics Threads
GET
Getting Project InfoDELETE
Project Deletion
/api/V/project/[PROJECT]/acl/*
GET
List Project ACL PoliciesGET
Get a Project ACL PolicyPOST
Create a Project ACL PolicyPUT
Update a Project ACL PolicyDELETE
Delete a Project ACL Policy
/api/V/project/[PROJECT]/config
/api/V/project/[PROJECT]/config/[KEY]
GET
GET Project Configuration KeyPUT
PUT Project Configuration KeyDELETE
DELETE Project Configuration Key
/api/V/project/[PROJECT]/executions
GET
Execution Query
/api/V/project/[PROJECT]/executions/metrics
/api/V/project/[PROJECT]/executions/running
/api/V/project/[PROJECT]/export
/api/V/project/[PROJECT]/export/async
/api/V/project/[PROJECT]/export/status/[TOKEN]
/api/V/project/[PROJECT]/export/download/[TOKEN]
/api/V/project/[PROJECT]/[FILE.md]
GET
GET Readme FilePUT
PUT Readme FileDELETE
DELETE Readme File
/api/V/project/[PROJECT]/history
GET
Listing History
/api/V/project/[PROJECT]/import
GET
Listing Jobs
/api/V/project/[PROJECT]/jobs/export
GET
Exporting Jobs
/api/V/project/[PROJECT]/jobs/import
POST
Importing Jobs
/api/V/project/[PROJECT]/resources
/api/V/project/[PROJECT]/resource/[NAME]
/api/V/project/[PROJECT]/run/command
/api/V/project/[PROJECT]/run/script
/api/V/project/[PROJECT]/run/url
/api/V/project/[PROJECT]/scm/[INTEGRATION]/plugins
/api/V/project/[PROJECT]/scm/[INTEGRATION]/plugin/[TYPE]/input
/api/V/project/[PROJECT]/scm/[INTEGRATION]/plugin/[TYPE]/setup
/api/V/project/[PROJECT]/scm/[INTEGRATION]/plugin/[TYPE]/enable
/api/V/project/[PROJECT]/scm/[INTEGRATION]/plugin/[TYPE]/disable
/api/V/project/[PROJECT]/scm/[INTEGRATION]/status
/api/V/project/[PROJECT]/scm/[INTEGRATION]/config
/api/V/project/[PROJECT]/scm/[INTEGRATION]/action/[ACTION_ID]
/api/V/project/[PROJECT]/scm/[INTEGRATION]/action/[ACTION_ID]/input
/api/V/project/[PROJECT]/sources
/api/V/project/[PROJECT]/source/[INDEX]
/api/V/project/[PROJECT]/source/[INDEX]/resources
GET
Listing ProjectsPOST
Project Creation
/api/V/project/[PROJECT]/webhooks
GET
List Webhooks
/api/V/project/[PROJECT]/webhook/
POST
Add A Webhook
/api/V/project/[PROJECT]/webhook/[ID]
GET
Get A WebhookPOST
Update A WebhookDELETE
Delete A Webhook
/api/V/scheduler/server/[UUID]/jobs
/api/V/storage/keys/[PATH]/[FILE]
PUT
Upload KeysGET
List keysGET
Get Key MetadataGET
Get Key ContentsDELETE
Delete Keys
GET
List System ACL PoliciesGET
Get an ACL PolicyPOST
Create an ACL PolicyPUT
Update an ACL PolicyDELETE
Delete an ACL Policy
/api/V/system/executions/enable
POST
Set Active Mode
/api/V/system/executions/disable
POST
Set Passive Mode
/api/V/system/executions/status
GET
System Info
GET
Log Storage Info
/api/V/system/logstorage/incomplete
/api/V/system/logstorage/incomplete/resume
GET
List TokensPOST
Create a Token
GET
Get a tokenDELETE
Delete a token
GET
List users
GET
Get user profilePOST
Modify user profile
GET
List roles
# Incubating
/api/V/incubating/enterprise/license
GET
View LicensePOST
Set License Key