Get workflow transition rule configurations
GET
/rest/api/3/workflow/rule/config
Workflow transition rules
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://jira.local:8080/jira/rest//rest/api/3/workflow/rule/config?types='
Response Response Example
200 - Success
{
"maxResults": 10,
"startAt": 0,
"total": 1,
"isLast": true,
"values": [
{
"workflowId": {
"name": "My Workflow name",
"draft": false
},
"postFunctions": [
{
"id": "b4d6cbdc-59f5-11e9-8647-d663bd873d93",
"key": "postfunction-key",
"configuration": {
"value": "{ \"color\": \"red\" }",
"disabled": false
},
"transition": {
"id": 1,
"name": "Open"
}
}
],
"conditions": [
{
"id": "d663bd873d93-59f5-11e9-8647-b4d6cbdc",
"key": "condition-key",
"configuration": {
"value": "{ \"size\": \"medium\" }",
"disabled": false
},
"transition": {
"id": 1,
"name": "Open"
}
}
],
"validators": [
{
"id": "11e9-59f5-b4d6cbdc-8647-d663bd873d93",
"key": "validator-key",
"configuration": {
"value": "\"{ \\\"shape\\\": \\\"square\\\" }\"",
"disabled": false
},
"transition": {
"id": 1,
"name": "Open"
}
}
]
}
]
}
Request
Query Params
startAt
integerÂ
optional
maxResults
integerÂ
optional
types
array[string]
required
keys
array[string]
optional
workflowNames
array[string]
optional
withTags
array[string]
optional
tags
to filter by.draft
stringÂ
optional
expand
stringÂ
optional
transition
, which, for each rule, returns information about the transition the rule is assigned to.Responses
Modified at 2023-07-13 03:27:27