The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Automate JSON returns bad errors

Dan Bish
July 5, 2019

Greetings all,

I am frustrated with the JSON in this thing.  I validate it before using it, and only "sometimes" does it work, while others throws invalid JSON errors.  In this post I am only really looking at removing labels, but there have been others.  Yes, I know you can do it with the edit issue field list, but you shouldn't have to if you are just bundling it together with other things you are doing.  Let's talk about ways to work out these issues.

Eg. 1 (valid, but not to Automate)

{
    "update":[{
        "labels": {
            "remove": "add_team"
        }
    }],
    "fields": {
         "customfield_14651": "{{issue.parent.customfield_14651}}"
    }
}

Eg. 2 (valid, but not to Automate)

{
    "update":[{
        "labels": {
            "remove": ["add_team","add_teams"]
        }
    }],
    "fields": {
         "customfield_14651": "{{issue.parent.customfield_14651}}"
    }
}

 

And this one really gets me...
jira-automate-invalid-update-operation.PNG

so (because of the message) I change it to (finally valid, but doesn'tremove labels)...:

{
    "remove": {
        "labels": ["add_team","add_teams"]
    },
    "fields": {
        "customfield_14651": "{{issue.parent.customfield_14651}}"
    }
}

and no errors, but it doesn't do anything.

0 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.