updated >= 2018-01-05 AND updated <= 2018-01-10 AND assignee in (XYZ) ORDER BY updated ASC, Rank DESC
By using above query, I am fetching out the entries done by "XYZ" user which are update between 5th & 10th of Jan 2018 in ascending order.
Now XYZ has logged his work in the same JIRA id/Entry, which he has created in 2017.
I want to list out individual "log work" that he entered from his dashboard.
foreg: he entered in the same entry as seen in work log:
6th jan - 2h, 7th jan - 1h, 8th -5 h.
I want to export individual Work Log entry for this JIRA entry by this specific user.
is it possible?
It is not possible to do it via JQL. But you could do it using Jira REST API GET /rest/api/2/issue/{issueIdOrKey} . You can find more info here:
https://developer.atlassian.com/cloud/jira/platform/rest/#api-api-2-issue-issueIdOrKey-get
oh ok, Thanks for the reply.
Can you also share how to or how to start/Beginners guide (Step by step) to use REST APIs?
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.