Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I managed to create an issue (requirement) using perl with SOAP::Lite. The key is to build the request using arrays and defining the types using SOAP::Data->type(). I couldn't fill in the fix version using the 'fixVersions' attribute, but I did it through the custom field 'customfield_10040'. You can use the getItem() call to check which one is used in your case.</p> <pre><code>my $soap = SOAP::Lite-&gt;service($URI); my $token = $soap-&gt;login($USERNAME,$PASSWORD); my $fieldValues = [ SOAP::Data-&gt;type('RemoteCustomFieldValue', {'customfieldId' =&gt; 'customfield_10040', 'values' =&gt; [ SOAP::Data-&gt;type('string', '10051'), SOAP::Data-&gt;type('string', '10052') ] }),]; my $affectedValues = [ SOAP::Data-&gt;type('RemoteVersion', {'name' =&gt; 'FINS 1.16.1', 'id' =&gt; SOAP::Data-&gt;type('string', '10051')}), SOAP::Data-&gt;type('RemoteVersion', {'name' =&gt; 'FINS 1.16.1a', 'id' =&gt; SOAP::Data-&gt;type('string', '10052')}) ]; my $fixedValues = [ SOAP::Data-&gt;type('RemoteVersion', {'name' =&gt; 'FINS 1.16.1', 'id' =&gt; SOAP::Data-&gt;type('string', '10051')}) ]; my $customFields = SOAP::Data-&gt;type('RemoteCustomFieldValue', $fieldValues); my $fixVersion = SOAP::Data-&gt;type('RemoteVersion' , $fixedValues); my $affectedVersion = SOAP::Data-&gt;type('RemoteVersion' , $affectedValues); my $component = SOAP::Data-&gt;type('RemoteComponent', \{'name' =&gt; 'CST', 'id' =&gt; SOAP::Data-&gt;type('string', '10194')}); my $remoteIssueHash = { 'project' =&gt; SOAP::Data-&gt;type('string' =&gt; $PROJECT), 'type' =&gt; SOAP::Data-&gt;type('string' =&gt; 10), 'summary' =&gt; SOAP::Data-&gt;type('string' =&gt; $summary), 'reporter' =&gt; SOAP::Data-&gt;type('string' =&gt; $reporter), 'assignee' =&gt; SOAP::Data-&gt;type('string' =&gt; $assignee), 'customFieldValues' =&gt; SOAP::Data-&gt;type('array' =&gt; $customFields), 'affectsVersions' =&gt; SOAP::Data-&gt;type('array' =&gt; $affectedVersion), 'components' =&gt; SOAP::Data-&gt;type('array' =&gt; $component), 'fixVersions' =&gt; SOAP::Data-&gt;type('array' =&gt; $fixVersion), ## this doesn't do anything 'description' =&gt; SOAP::Data-&gt;type('string' =&gt; $description), 'environment' =&gt; SOAP::Data-&gt;type('string' =&gt; 'Some environment'), }; my $remote_issue = $soap-&gt;call('createIssue', $token, $remoteIssueHash); print Dumper [$remote_issue-&gt;faultcode(), $remote_issue-&gt;faultstring(), $soap-&gt;transport()-&gt;status(), $remote_issue-&gt;result(), $remote_issue ]; exit(); </code></pre> <p>Good luck with that.</p> <p>Daniel</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload