Hi all,
I am working on doing an integration with Jira using the V2 and V3 API's, one of the problems I am facing is that I can not update the current status using the PUT API even though it is documented.
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-put
Sample Payload
https://cloudenrich.atlassian.net/rest/api/2/issue/{IssueKey}/
I can see the comment gets added but the transition doesn't change.
If I use the following API it works for transition only
https://cloudenrich.atlassian.net/rest/api/2/issue/{IssueKey}/transitions/
Use the below API and let me know if it works
curl --request POST \
--url "https://your-site.atlassian.net/rest/api/3/issue/GAP-3/transitions" \
--user 'email:token' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{ "transition": { "id": "tranistion-id" },
"update": { "comment": [ { "add": { "body": { "type": "doc", "version": 1, "content": [
{ "type": "paragraph", "content": [ { "text": "Bug has been fixed", "type": "text" }]}]}}}]}}'
Thanks,
Pramodh
Hi @Pramodh M
Thank you very much for your quick answer
I am able to use the api provided. My goal is to make multiple updates to the jira fields in a Single API call and hence was using the PUT API of the issues instead of transitions API.
Can we say this a bug in JIRA API as the documentation states that the transitions can be handled using the PUT API also
Regards,
Rajesh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I understand, @Rajesh Kumar Ganjikunta
When you make this call, there is no transition parameter to edit an issue
If you need to make a transition and edit the field use it as well, adding to this have the fields that you need to edit in the screen.
Or make two separate calls one with transition and another with the edit.
Thanks,
Pramodh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Rajesh Kumar Ganjikunta Did you find a workaround?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.