Hi Team I am fetching the jira incident history using python but I can not find any place holder to get the initial assignee name.History inside changelog shows the assignment change history but not the the first assignee whom the ticket was assigned during the creation.Can any one please help me to get it done.
Thanks
Suny
Hey, Suny. Thanks for reaching out to the Atlassian Community!
Upon testing the "GET /rest/api/2/issue/{issueIdOrKey}/changelog" call, I can see that in the returned payload there's an object for the assignee change which has the following information:
"fromString": "Mauricio Karas"
This is the actual value that was before the change in the field, you can see also the "toString" field to know to what value it was changed. You can look for the first assignee field change and check this "fromString" field to know the first assignee. If there are no changes in this field, the assignee should be the same as the one set in the creation.
Kind regards,
Maurício Karas
Thanks Mauricio for the solution.I am able to get the value . If there is already a field for this value that might reduce this additional loop.Thanks again for your valuable response.
Thanks & Regards
Suny Chowdhury
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.