About
This handler uses the Jira Rest API library to create an issue within a Jira project. The handler first puts the data that was inputted into JSON format and then posts that information using a REST call with basic auth. (WARNING: Using this handler without enabling SSL will not be secure). The id, key, and url of the issue will be returned by the handler. Any errors that occur during the process will be caught and re-raised by this handler, or returned as an error message if specified.
Parameters
Name | Description | Sample |
---|---|---|
Error Handling | Determine what to return if an error is encountered. | Error Message |
Project Key | The Key of the project that the issue will be added to. | DEMO |
Issue Type | The name of the issue type (ie. Bug, New Feature, Task, etc). | Bug |
Summary | A summary of the issue. | Something is broken |
Description | An in-depth explanation of the issue. | Specifics about the bug |
Assignee | The username of the person you want to assign this issue to. | joe.user |
Priority | The name of the issue priority (ie. Major, Minor, Critical, etc). | Major |
Due Date | The due date of the issue in the form of YYYY-MM-DD. | 2014-08-22 |
Addtl Fields JSON | A JSON Map of Additional Fields to be included in the fields wrapper of the body. | {'reporter': {'name': 'john.user'}} |
Results
Name | Description |
---|---|
Handler Error Message | Error message if an error was encountered and Error Handling is set to "Error Message". |
id | The id of the issue that was created. |
key | The key of the issue that was created. |
url | The url of the issue that was created. |
Changelog
Jira Issue Create V2 (2018-09-06)
- Added ability to pass in additional fields as json to set in the issue
- Added Error Handling so the handler can return an error message vs throw an error
Jira Issue Create V1 (2014-02-17)
- Initial version. See README for details.
Download
GitHub
On This Page
Looking for a workflow engine?
Learn more about the Kinetic Data Enterprise Workflow Platform.
Check it out
Return to Top