Hi,
I'm doing this Curl and I get back all the possible workflow's transition for an issue
curl --request GET \
--url 'https://xxxxxxxx/rest/api/2/issue/XXX-ZZZ/transitions' \
-H "XXXXXXXXXXXXXXX" \
--header 'Accept: application/json'
It Works.
But my need is to add a Search option or something like this to this Rest API, in the specific case, I need to add a search by name of the transition, like this:
'https://xxxxxxxx/rest/api/2/issue/XXX-ZZZ/transitions/search?name=Transition_Name'
*THIS IS AN EXAMPLE OF WHAT I NEED, IT DOESEN'T WORK*
In this way I want to get back only the information of the transition with the specific name
Is that possible? I don't find anything on the jira documentation, there is a way to do what I write?
Thanks
P.S: I'm using Jira cloud, premium version
You can add transition id as the query parameter
'https://xxxxxxxx/rest/api/2/issue/XXX-ZZZ/transitions?transitionId=your_transition_id"
Okay thanks, only the transition id I can check? no the transition name?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yeah, only transition id
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online 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.