https://github.com/panoramicdata/autotask.api
AutoTask API
https://github.com/panoramicdata/autotask.api
Last synced: about 1 year ago
JSON representation
AutoTask API
- Host: GitHub
- URL: https://github.com/panoramicdata/autotask.api
- Owner: panoramicdata
- License: mit
- Created: 2019-03-28T21:57:22.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-23T11:19:24.000Z (over 1 year ago)
- Last Synced: 2025-04-09T16:49:11.711Z (about 1 year ago)
- Language: C#
- Size: 186 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# 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!