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.
×We're using a MS form to collect Ideas, and these ideas or the form responses will be created as an issue in a jira project.
We're using Power automate to achieve this. We're able to successfully create JIRA issues and populate the Component field in Jira from the form response. However, when the user selects multiple responses in the form, which is mapped to the components in jira, the components are sent as a single object which is comma separated.
The components are already available in jira.
Few screen shots for your reference
The JSON which is sent to jira with value
This is how it is shown in JIRA
In jira it is treated as a single component. I want this to be three separate components which are already available in JIRA.
Thanks in advance!
Components in Jira REST API are set like this
"components": [
{
"name": "TSM"
},
{
"name": "SA"
},
{
"name": "SYE"
}
],
Hope it helps
Alex
Hi Arun,
Try this:
{
"update": {
"components":[{"add":{"name":"TSM"}},{"add":{"name":"SA"}},{"add":{"name":"SYE"}}]
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@John Funk | @Trudy Claspill Any suggestions? TIA
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.