Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 1.73 KB

README.md

File metadata and controls

45 lines (28 loc) · 1.73 KB

Ukrainian flag TogglPotato utility for Toggl users

CI

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.

Usage

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.

HTTP request template

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"
}

How to get your Toggl API Token

Please do not give away your Toggl API token to untrustworthy parties, as it would give them full access to your Toggl account.

Hosting

  1. git clone the repo.
  2. dotnet run it or use VS Code or VS 2022 to start it.
  3. 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.

License information