You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hey, I want to get the TimeSpent on an Issue from Jira with the API. I read the documentation about it and it shoudld work, but when I convert result to a Object of the type Worklog, every Property has it's default values, but why? Here is my Code:
public async Task<string> GetTimeSpentAsync(string issueKey)
{
var jiraConnection = Jira.CreateRestClient(_jiraSettings.Url, _jiraSettings.UserName,
_jiraSettings.Password, new JiraRestClientSettings() { });
var result = await jiraConnection.RestClient.ExecuteRequestAsync(Method.GET, $"/rest/api/2/issue/{issueKey}/worklog");
var workflow = result.ToObject<Worklog>();
if(workflow != null)
{
return workflow.TimeSpent;
}
throw new NullReferenceException();
}
Here is a Picture of the Propertys in Debug-Mode: