Jira REST API integration
Integrate app with Jira REST API
Custom fields of type Multilevel Select are the same as native custom fields like Select or Cascading Select. It means you can use Jira REST API to get the values or create a new issue with Multilevel Select.
How to update our fields on issue? You have to use this endpoint: https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-put and as a payload, put what we have described in Create issue section 👇
Get issue
Below you can see part of the response you get when you get an issue via REST API. Read more about the endpoint at https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-get
Create issue
Below is an example of create issue payload with three options, selected in Multilevel Select. Read more about the endpoint at https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-post
How to get an option ID?
🐾 Steps
Go to the Multilevel Select configuration.
Find an option for which you need an ID.
Click the chevron icon next to this option to expand the block.
In the General configuration tab, you can find option ID. Click on the icon to copy it.
Last updated