Clockify C# Client.
Made as .Net Standard 2.0 library.
Stable API docs:
Every endpoint from that url is implemented.
https://clockify.me/developers-api
EXPERIMENTAL API
https://clockify.github.io/clockify_api_docs/
Also check CHANGELOG.
If you like this project, give it a star ⭐. It really motives me to work on it.
1. Add Nuget package from here.
See API docs for instruction about how to get Clockify API Key.
Recommended:
// This will use environment variable CAPI_KEY as your API key input.
var clockify = new ClockifyClient();
var response = await clockify.GetWorkspacesAsync();
or much simpler
var clockify = new ClockifyClient("myClockifyApiKey");
var response = await clockify.GetWorkspacesAsync();
Do you want to help? Great!
See CONTRIBUTING 👍
Also check our Project tab ✅ and pick a task!
- Morasiu ([email protected])
This project is licensed under the MIT License - see the LICENSE file for details