Hi, I'm fetching Jira issue details using a curl command
curl -D- -u username:password -X GET -H 'Content-Type: application/json' https://testdev.atlassian.net/rest/api/2/issue/CGP-231
I used to get the assignee email address from the Json data using
$(jq -r '.fields.assignee.name' "CGP-231_data.json")
but now that field is missing in the assignee object from yesterday.
Is there any other way to find the user's email address?
Thanks,
Amulya
Dear @akota ,
if this is not a temporary issue, you can fetch the user information with
GET /rest/api/2/user?username=tgiorshev
Otherwise have a look at https://status.atlassian.com/ to see if there is an incident.
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.