Hi
I am trying to pull the list of issues using the JIRA API
http://......./rest/api/2/search?jql=%20updated%20%3E=%20%222018/05/09%22
Now the problem is that in this case when I get the list of issues. In the JSON I am not getting the assignee data for any of the issues.
But when I make this query
http://...../rest/api/2/issue/{IssueId}/
In this case I get the assignee of the corresponding IssueId.
Please help me out for the same.
You can pass the "fields
" param to include "assignee" in a comma separated list of values.
See https://docs.atlassian.com/software/jira/docs/api/REST/7.9.0/#api/2/search-search for more details.
Can you please share an example as I am new to JIRA API and may not be aware about the correct syntax. My requirement is to get the records based on the updated date and it should contain all the fields.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
http://......./rest/api/2/search?jql=YourQuery&fields=key,summary,assignee
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.