I'm using the Soap API to get issues from jira but I just can't seem to figure out how to get the values use of the timetracking fields.
It's not in the custom fields worklog or the ticket itself.
Can anybody tell me if it's possible to retrieve thevalues of the timetracking fields using the Soap API?
While I searched google and the atlassian website I found a few similar questions and posts that suggested you can't get this info using the Soap APi, but no definitive answer.
Using the Jira Soap API has been a joy, stuff just works. I guess that's the reason I can't believe this seemingly trivial thing isn't supported.
There is no SOAP api support for that. JIRA Command Line Interface uses REST API to retrieve that for getIssue action (outputFormat 2) and similar.
Thanks for the reply,
Any chance this will be added to the Soap API in the near future??
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In REST, I could be got them by getTimeTracking(). For example:
com.atlassian.jira.rest.client.domain.Issue.getTimeTracking().getOriginalEstimateMinutes()
Hope you can get it.
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.
Did you check the customfieldvalues that are returned in the issue object in SOAP? One of them should be orginalEstimate.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes I did check them, but they don't seem to be there. There are 3 customfields I'm not entirely sure of what they are but they have the wrong values and don't change when I set a different estimate.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.