Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×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?
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.