Extension Icon

Timeular

Track time with Timeular
AvatarVitaliy
223 Installs

Timeular

A Raycast extension that lets you control the Timeular tracker.

Screencast example

Configure apiToken

Please provide apiToken in the extension preferences. To create a new client id and secret, do the following:

  1. Go to your account.
  2. Generate API credentials. Timeular will grant you API Key and API Secret. Save them both.
  3. Create API Token with curl:
    curl -X POST \
      -H 'Content-Type: application-json' \
      -d '{ "apiKey": "{{API_KEY}}", "apiSecret": "{{API_SECRET}}" }' \
      https://api.timeular.com/api/v3/developer/sign-in
    
    Place your keys instead of {{API_KEY}} and {{API_SECRET}}.
  4. In response, you will get the API Token. The token now can be used in the extension.

Is something missing? Let us know and create an issue!