I am using Jira service desk , and I have assigned issues to user name "XYZ" through rest api. How should I get the issues assigned to that user through Rest api? I am using api/3 version.
Hello,
You should use the search rest call and to pass to this rest call a JQL like this:
assignee = XYZ
You can read more about the search rest call here:
Thank you! It works, One more question how can I see custom fields and to add some values to it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Add &fields=*all to your search rest call.
You can update values with PUT /rest/api/2/issue/{issueIdOrKey}
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.