im working on creating and editing issues with API, looking for add issue components, what i am doing here passing array with selected component id's.
this is my array
array( 0 => '10000', 1 => '1212', )
but request JSON expecting somthing like this in components section,
{ "fields": { "project": { "id": "10000" }, "summary": "'te'te", "description": "e'reserg", "issuetype": { "id": "1" }, "priority": { "id": "1" }, "components": [{ "id": "10000" }] } }
how can i add my id's to this JSON array?
any help?
thanx in advance
check the sample codes here
your code need to modified something like this
{ "fields": { "project": { "id": "10000" }, "summary": "'te'te", "description": "e'reserg", "issuetype": { "id": "1" }, "priority": { "id": "1" }, "components": [{ "id": "10000" }, { "id": "1212" } ] } }
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline 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.