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.
Still thinking about joining us for Team '25 Europe? Early bird has been extended for just one week! Now’s the time to lock in your lowest rate. Use code TEU25COMM-20 to save 20% at checkout. Hurry, this only lasts for 1 more week.
Learn more
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.