Internal
Create a new instance of the service.
Adds a property to a workflow transition. Transition properties are used to change the behavior of a transition. For more information, see Transition properties and Workflow properties.
Permissions required: Administer Jira global permission.
The key of the property being added, also known as the name of the property.
Set this to the same value as the key
defined in the request body.
The ID of the transition. To get the ID, view the workflow in text mode in the Jira admin settings. The ID is shown next to the transition.
Optional
workflowThe workflow status. Set to live for inactive workflows or draft for draft workflows. Active workflows cannot be edited.
The name of the workflow that the transition belongs to.
200 response
example:
{
"key": "jira.i18n.title",
"value": "some.title",
"id": "jira.i18n.title"
}
Deletes a property from a workflow transition. Transition properties are used to change the behavior of a transition. For more information, see Transition properties and Workflow properties.
Permissions required: Administer Jira global permission.
The name of the transition property to delete, also known as the name of the property.
The ID of the transition. To get the ID, view the workflow in text mode in the Jira admin settings. The ID is shown next to the transition.
Optional
workflowThe workflow status. Set to live
for inactive workflows or draft
for draft
workflows. Active workflows cannot be edited.
The name of the workflow that the transition belongs to.
Returns the properties on a workflow transition. Transition properties are used to change the behavior of a transition. For more information, see Transition properties and Workflow properties.
Permissions required: Administer Jira global permission.
Optional
includeSome properties with keys that have the jira. prefix are reserved, which means they are not editable. To include these properties in the results, set this parameter to true.
Optional
key?: stringThe key of the property being returned, also known as the name of the property. If this parameter is not specified, all properties on the transition are returned.
The ID of the transition. To get the ID, view the workflow in text mode in the Jira administration console. The ID is shown next to the transition.
Optional
workflowThe workflow status. Set to live for active and inactive workflows, or draft for draft workflows.
The name of the workflow that the transition belongs to.
200 response
example:
[
{
"id": "jira.i18n.title",
"key": "jira.i18n.title",
"value": "some.title"
},
{
"id": "jira.permission",
"key": "jira.permission",
"value": "createissue"
}
]
Updates a workflow transition by changing the property value. Trying to update a property that does not exist results in a new property being added to the transition. Transition properties are used to change the behavior of a transition. For more information, see Transition properties and Workflow properties.
Permissions required: Administer Jira global permission.
The key of the property being updated, also known as the name of the property.
Set this to the same value as the key
defined in the request body.
The ID of the transition. To get the ID, view the workflow in text mode in the Jira admin settings. The ID is shown next to the transition.
Optional
workflowThe workflow status. Set to live
for inactive workflows or draft
for draft
workflows. Active workflows cannot be edited.
The name of the workflow that the transition belongs to.
200 response
example:
{
"key": "jira.i18n.title",
"value": "some.title",
"id": "jira.i18n.title"
}
Protected
Static
initialize
This resource represents workflow transition properties, which provides for storing custom data against a workflow transition. Use it to get, create, and delete workflow transition properties as well as get a list of property keys for a workflow transition. Workflow transition properties are a type of entity property.
See
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflow-transition-properties