You're enrolled in our new beta rewards program. Join our group to get the inside scoop and share your feedback.
Join groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
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.
Atlassian's marketplace partners have had a very productive start to 2021! Since our last roundup, our developer community has added over 160 new cloud apps to the Atlassian Marketplace to help you...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.