Currently JIRA components presents a feature of Default Assignee for every component, we have created various teams across the atlassian cloud that we use as a value for the custom attribute called Team, so we manually add component and the update the team. We tried automation with custom attiibute and out the values of the Atlassian Team but it was givvng us error:
Team id 'JsonData{data={name=A Team, id=...}}' is not valid. (customfield_11300)
This is the code that I used in JIRA automation for doing so whenever a component change happens and the value of component is update to A the team should be A Team:
Hi @Nikul Vyas, You were almost there, you simply need to pass the id as the value to the Team field as shown below,
{
"fields": {
"customfield_11300": "6b180874-cd67-4bcb-bbb7-0fe505891252"
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.