Hello, How can I update jira tempo plugin information (For example : tempo billing hours or work hours) via tempo api. I found some information about it here: https://tempoplugin.jira.com/wiki/display/TEMPO072/Tempo+Servlet+Manual, but this is not enough for my problem. I can build xml string and post this string via java Apache HTTP client on my jira address :
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
+ "<worklog_updates><worklog_update>"
+ " <worklog_id>10109</worklog_id>"
+ "<billed_hours>11</billed_hours>"
+ "<work_date>2014-04-07</work_date>"
+ "<hash_value>d9a825dc3ce575cafc8fc2f5aa8ab7db0d94f4f8</hash_value>"
+ "</worklog_update>" + "</worklog_updates>";
But this does not work for me, anyone faced with similar?
Use the REST API that Tempo exposes. You can use this REST Browser (https://marketplace.atlassian.com/plugins/com.atlassian.labs.rest-api-browser) to find out what they are.
If I understand you right, via this plugin I can set and update fields in jira tempo plugin?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes. I looked at it before and the some of the REST endpoints support POST/PUT.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try this Jira Windows Client.
It's free and opensource and use both, Tempo and Jira API to be always fast.
https://github.com/luisfgfurtado/jira_time_ctrl
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.