Skip to content
This repository was archived by the owner on Sep 17, 2021. It is now read-only.

Latest commit

 

History

History
12 lines (10 loc) · 572 Bytes

File metadata and controls

12 lines (10 loc) · 572 Bytes

AwareGroup.ProjectWorks

The Refit API definitions and models were automatically generated using a PowerShell script and committed into this repository. The script will continue to be run as further updates are pushed out for the ProjectWorks API services.

Example

//get api client
var pw = ProjectWorksApiFactory.GetApiClient<IProjectWorksV1Api>(apiBaseUrl, apiUsername, apiPassword);

//test api
var tasks = await pw.GetTasksAsync();
tasks.ForEach(t => Console.WriteLine(t.TaskName));