Contact for Service
catworkx GmbH
Schellerdamm 16
21079 Hamburg
Germany
> Get Support
<
Content
...
| Code Block | ||
|---|---|---|
| ||
my ($TicketJIRAObj, $fieldmapping, %Ticket) = @_; |
...
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,
} |
| Code Block | ||
|---|---|---|
| ||
my ($TicketJIRAObj, $val, $fields, %Ticket) = @_; |
| Tip |
|---|
A Complete example of a installable OTRS Package (OPM) is available at bitbucket.org/cwx/jirademoplugins. This Package actually makes use of additional settings that are defined in an included XML file. Feel free to explore the examples included therein. |
...