A simple .Net library for accessing the ClickUp API.
See the ClickUp API reference here.
Basic development workflow:
- Find an API call that you want to implement.
- Copy the response result and translate it into C# classes. (Here's a sample tool for that.)
- Integrate (don't just copy-- use your brain cells) those generated classes into ClickUp Model.
- Create a method on the ClickUpApi class to mimic the Api request. (Make sure to include required and optional parameters.)
- Parse the method parameters into an Http request string and make the call. (See GetTaskComments() for an example.)
- Create a test for the Api call you just implemented.