Forums

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

Add multiple componet to particular project

srinivasan radhakrishnan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 25, 2013

Hi Committe,

I have added one componet to the particular project by using the below json file,

{
"name": "Component 1",
"description": "This is a JIRA component",
"leadUserName": "fred",
"assigneeType": "PROJECT_LEAD",
"isAssigneeTypeValid": false,
"project": "PXA"
}
I need to add 3 commponents like "componet 2","component 3","component 4" in by using the same json file.
i have tried this below,
{
"name": ["Component 2","component 3","component 4"],
"description": "This is a JIRA component",
"leadUserName": "fred",
"assigneeType": "PROJECT_LEAD",
"isAssigneeTypeValid": false,
"project": "PXA"
}
and i got the below issue,
How to solve this issue, please correct my json file structure.

3 answers

1 accepted

0 votes
Answer accepted
Colin Goudie
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 25, 2013

Ah sorry, I see what you mean. If you're POSTing to that end point you need to POST 3 times. With different data. 1 POST = 1 Component

0 votes
Colin Goudie
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 25, 2013

It would be more like

[{
"name": "Component 1",
"description": "This is a JIRA component",
"leadUserName": "fred",
"assigneeType": "PROJECT_LEAD",
"isAssigneeTypeValid": false,
"project": "PXA"
},
{
"name": "Component 2",
"description": "This is a JIRA component 2",
"leadUserName": "fred",
"assigneeType": "PROJECT_LEAD",
"isAssigneeTypeValid": false,
"project": "PXA"
},
{
"name": "Component 3",
"description": "This is a JIRA component 3",
"leadUserName": "fred",
"assigneeType": "PROJECT_LEAD",
"isAssigneeTypeValid": false,
"project": "PXA"
}
]

srinivasan radhakrishnan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 25, 2013

Hi Colin Goudie,

I have used the given json file

[{
"name": "Component 1",
"description": "This is a JIRA component",
"leadUserName": "fred",
"assigneeType": "PROJECT_LEAD",
"isAssigneeTypeValid": false,
"project": "PXA"
},
{
"name": "Component 2",
"description": "This is a JIRA component 2",
"leadUserName": "fred",
"assigneeType": "PROJECT_LEAD",
"isAssigneeTypeValid": false,
"project": "PXA"
},
{
"name": "Component 3",
"description": "This is a JIRA component 3",
"leadUserName": "fred",
"assigneeType": "PROJECT_LEAD",
"isAssigneeTypeValid": false,
"project": "PXA"
}
]

but i got this issue,

{"errorMessages":["Can not deserialize instance of com.atlassian.jira.rest.v2.issue.component.ComponentBean out of START_ARRAY token\n at [Source: org.apache.catalina.connector.CoyoteInputStream@188f899; line: 1, column: 1]"]}

0 votes
Chaithra N
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 25, 2013

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events