Skip to content

.NET Client for Jira Agile REST API's (boards, backlogs, sprints)

Notifications You must be signed in to change notification settings

mikerussellnz/JiraAgile.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

JiraAgile.NET

.NET client for JIRA agile REST API's (Boards, Sprints, Backlogs) (/rest/agile/1.0)

Sample Usage

// Create a connection using basic auth.
var client = new AgileClient("http://server_url/", "username", "password");

// Get the list of boards.
var boards = await agile.Boards.GetBoards();

// Get the list of sprints for a board.
var sprints = await board.Sprints.GetSprints();

// Get the list of issues for a sprint.
var issues = await sprint.Issues.GetIssues();

// Get the list of issues for a board.
var issues = await board.Issues.GetIssues();

// Get the list of backlog issues for a board.
var issues = await board.BacklogIssues.GetIssues();

Todo

  • Implement update / delete support.

About

.NET Client for Jira Agile REST API's (boards, backlogs, sprints)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages