Skip to content

SaschaHeyer/TempoRestClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TempoRestClient

approved versions
Tempo REST API 8.0.0

Installing

The client is available on NuGet:

Install-Package TempoRestClient -Pre

Using the client

Basic usage

Creating the TempoRestClient

var tempoRestClient = TempoRest.Configure("https://jira.url", "username", "password");

alternative

ITempoAccount account = new TempoAccount
{
    ServerUrl = "https://jira.url",
    User = "username",
    Password = "password"
};

var tempoRestClient = TempoRest.Configure(account);

Get all Worklogs for a specific user

IEnumerable<IWorklog> worklogs = TempoRest.Configure(account)
    .FilterUsername("foo.bar")
    .ExecuteWorklogRequest();

Release Notes

see https://github.com/SaschaHeyer/TempoRestClient/blob/master/ReleaseNotes.md