Contact for Service
catworkx GmbH
Schellerdamm 16
21079 Hamburg
Germany
> Get Support
<
Content
...
A Hash of key => values for Jira, e.g.:
| Code Block | ||||
|---|---|---|---|---|
| ||||
{
project => { key => "ASDF" },
issuetype => { name => "Bug" },
summary => "Title from the Article",
description => "The multi line Body of the Article",
reporter => { name => "Reporter" },
assignee => { name => "Assignee" },
customfield_12345 => "Value",
customfield_12346 => 42,
} |
| Tip |
|---|
A Complete example of a installable OTRS Package (OPM) is available at bitbucket.org/cwx/jirademoplugins. Feel free to explore the examples included therein. |
Strictly speaking you can do anything, even just create a value to be send to Jira for a special field.
| Key | Contents |
|---|---|
call:Douglas::Adams::HHGTTG,answer | cust:answer |
| Code Block | ||||
|---|---|---|---|---|
| ||||
package call:Douglas::Adams;
use strict;
sub answer {
my ($TicketJIRAObj, $fieldmapping, %Ticket) = @_; // ignored in this example anyway
return 42; // this is the only important answer anyway :-)
} |