An open API service indexing awesome lists of open source software.

https://github.com/panoramicdata/autotask.api

AutoTask API
https://github.com/panoramicdata/autotask.api

Last synced: about 1 year ago
JSON representation

AutoTask API

Awesome Lists containing this project

README

          

# AutoTask.Api

[![Nuget](https://img.shields.io/nuget/v/AutoTask.Api)](https://www.nuget.org/packages/AutoTask.Api/)

To install the AutoTask API in your project, add the nuget package:

AutoTask.Api

To execute a query using the [AutoTask query language](https://ww4.autotask.net/help/Content/LinkedDOCUMENTS/WSAPI/T_WebServicesAPIv1_5.pdf), use code as follows:

```C#
var client = new Client(autoTaskCredentials.Username, autoTaskCredentials.Password);

var version = await client.GetVersion();

var result = await client
.ExecuteQueryAsync("Accountid0")
.ConfigureAwait(false);
```
Contributions welcome!