Clockify.Net
Clockify.Net copied to clipboard
Clockify C# Client
Clockify.Net
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
Also check CHANGELOG.
⚠ Breaking changes in version 2.0.0. See CHANGELOG.
If you like this project, give it a star ⭐. It really motives me to work on it.
Usage
1. Add Nuget package from here.
2. Get your Clockify API Key.
See API docs for instruction about how to get Clockify API Key.
3. Create your client.
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();
💻 Development
Do you want to help? Great!
See CONTRIBUTING 👍
Also check our Project tab ✅ and pick a task!
Authors
- Morasiu ([email protected])
License
This project is licensed under the MIT License - see the LICENSE file for details