Hello dear community -
I did an automation in JSON to automate the Jira Status Transition:
{ "update": { "labels": [ { "add": "clone" } ], "issuelinks": [ { "add": { "type": { "name": "Cloners" }, "outwardIssue": { "key": "{{issue.key}}" } } } ] }, "fields": { "customfield_10032": { "value": "{{triggerIssue.customfield_10032.value}}" } }, "transition": { "id": "42" } }
The problem that this status transition doesnt work.
Any ideas why?
Thanks a lot in advance!
BR
Tim
Hi @Timur -- Welcome to the Atlassian Community!
Even though the Create Issue endpoint supports immediately transitioning, I recall my experimentation last year showed the automation rule actions for Create and Clone do not support this in the manner they use the endpoint. Instead they always fail with invalid JSON errors.
Instead, you can use the Send Web Request action to call the endpoint and supply your fields. For a short example, this JSON works:
{
"fields": {
"project": {
"id": "12345"
},
"summary": "create issue in a different status using send web request",
"issuetype": {
"id": "10001"
}
},
"transition" : {
"id": "31"
}
}
Kind regards,
Bill
Hello @Timur
Welcome to the Atlassian community.
Is this in the context of an Automation Rule? If so, when asking for help with an Automation Rule it will enable us to help you more effectively if you provide:
1. Screen images that show your entire Automation Rule,
2. Screen images showing the details of the step(s) that are not yielding the results you expect,
3. Screen images that show the complete audit log output from the execution of the automation rule.
Can you provide a link to the source material that states you can transition an issue through the JSON code? I don't believe that is actual possible, but would be happy to be proven wrong by seeing reliable documentation that states it can be done.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Trudy Claspill -
Thanks a lot!
Here ist a screenshot:
Here the corresponding code:
{
"update": {
"labels": [
{
"add": "clone"
}
],
"issuelinks": [
{
"add": {
"type": {
"name": "Cloners"
},
"outwardIssue": {
"key": "{{issue.key}}"
}
}
}
]
},
"fields": {
"customfield_10032": {
"value": "{{triggerIssue.customfield_10032.value}}"
}
},
"transition": {
"id": "42"
}
}
Here the corresponding code:
{
"update": {
"comment": [
{
"add": {
"body": "Thanks for raising {{issue.key}}."
}
}
]
},
"fields": {
"resolution": {
"name": "Fixed"
}
}
}
In the audits is everything correct..
Looking forward to your answer!
BR
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for those screen images.
Can you provide a link to the source material that states you can transition an issue through the JSON code?
I don't believe that is actual possible, but would be happy to be proven wrong by seeing reliable documentation that states it can be done.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"Can you provide a link to the source material that states you can transition an issue through the JSON code? "
We did not find any code, we just wrote it using your guides...
So you mean that it is not possible via automation to change the Transition an Issue + Category? We need it to create automatically new yearly events after we put them to DONE.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Timur,
I have not found a document provided by Atlassian that provides an example of
If you have found such a document, I am asking you to please provide a link to it.
I don't think that the lines of code I marked as bold will work in such a context. I don't think that including "transition" is valid in the JSON code in this context.
"update" and "fields" are the only valid sections according to the documentation for Advanced Editing using JSON in Automation Rules.
{
"update": {
"labels": [
{
"add": "clone"
}
],
"issuelinks": [
{
"add": {
"type": {
"name": "Cloners"
},
"outwardIssue": {
"key": "{{issue.key}}"
}
}
}
]
},
"fields": {
"customfield_10032": {
"value": "{{triggerIssue.customfield_10032.value}}"
}
},
"transition": {
"id": "42"
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could execute a transition of the newly cloned issue by adding the steps shown below:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us to learn how your team can stay fully engaged in meetings without worrying about writing everything down. Dive into Loom's newest feature, Loom AI for meetings, which automatically takes notes and tracks action items.
Register today!Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.