A simple .NET Wrapper for the Bugherd REST-API.
Currently the following Endpoints are covered:
Endpoint |
---|
Organization |
Users |
Projects |
Tasks |
Columns |
Comments |
Attachments |
Webhooks |
In order to use the package it must be installed via NuGet:
Install-Package Drover.Api
First you need to create the connection via the ConnectionFactory
:
var connection = ConnectionFactory.CreateConnection("YourApiKey", "https://www.bugherd.com");
Next the service for the Operation you want to execute has to be created:
var projectService = connection.CreateProjectService();
var projects = await projectService.GetProjects();