This is a small utility to organize your Toggl daily time entries over the daily 24 hour period.
- It supports Daylight saving time (DST), so it should work correctly even when the calendar day is not straight 24 hours.
This is a server ASP.NET Core WebAPI application, so first you should start the server app and second make an HTTP request to it.
POST /api/v1/organize_daily_time_entries HTTP/1.1
Host: example.com
Content-Type: application/json
{
"togglApiKey": "your Toggl API token goes here",
"date": "2023-08-30"
}
Please do not give away your Toggl API token to untrustworthy parties, as it would give them full access to your Toggl account.
git clone
the repo.dotnet run
it or use VS Code or VS 2022 to start it.- Use Postman, cURL or any other HTTP client to make a request using the provided above HTTP request template.
At the moment the app requires a .NET 8 Preview or newer.
- MIT License
- Copyright © 2023 Dima Iholkin.