SIL routines in Jira Cloud

anikolava January 27, 2020

Hello

I am trying to clone issue by SIL script in Jira Cloud, but I`ve faced several issues:

1) cloneIssue routine doesn`t work in Jira Cloud.

2) create Issue routine always fails with Bad request response from server.

There is SIL script which I try to use:

string OriginalIssue = "***";
string[] fields = getIssueFields(OriginalIssue, true);

date dueDateForClone;

switch (fields["customfield_10033"]) {
case "Day":
dueDateForClone = currentDate()+"1d";
break;
case "Week":
dueDateForClone = currentDate()+"7d";
break;
}

string ClonedIssue = createIssue(fields["project"],
fields["parent"],
fields["issueType"],
fields["summary"],
fields["priority"],
fields["description"],
fields["components"],
dueDateForClone,
fields["security"],
"reporter|***|customfield_10033|"+fields["customfield_10033"]);

Could you advise please, what could cause these issues?

1 answer

0 votes
Alexey Alexey July 31, 2020

Hello @anikolava ,

I tried your code where customfield_10033 is an out of the box datetime picker and it worked just fine.

Make sure that you pass the correct reporter. The true value could be not the one you are thinking it is.

Another problem could be the customfield_10033 field. What type is it? If it is not a standard Jira field, you can have problem with this field.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events