For a given task I want to know what was the planned due date and the actual date the task was completed. Does REST API give me that information?
For a given issue?
Sure just search for the issue with a GET at for example:
[DOMAIN]/rest/api/2/search?jql=key=DEVK-28&fields=duedate,resolutiondate
latest issue works as well like Lady Di stated, if you want to have less fields then use the same technique with fields added, simply skipping the jql part.
[DOMAIN]/rest/api/latest/issue/DEVK-28?fields=duedate,resolutiondate
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, of course. Any information on the custom fields you can get on request:
https://yourjiraurl/rest/api/latest/issue/ISSUE-123
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.