I can’t seem to find documentation on how to update and retrieve Forge custom fields with the collection property
collection: list
I also couldn’t find anything in the Jira REST API docs about updating issue property collection fields.
I can’t seem to find documentation on how to update and retrieve Forge custom fields with the collection property
collection: list
I also couldn’t find anything in the Jira REST API docs about updating issue property collection fields.
Update them in the same way as the none-collection fields, but wrap values into a list.
For example, if your field has type string
and normally you set the value as a string, now set the value as a list of strings, like this:
["string 1", "string 2"]
Hope this helps! Let me know if you have any more questions