| Status | ||||
|---|---|---|---|---|
|
Timers provides a fast and easy way to keep track of your time.
...
From the following endpoints you can manage the current user's timers.
| METHOD | ENDPOINT | DESCRIPTION |
|---|---|---|
| PUT/POST | /timers/:id/start | Start a given timer |
| PUT/POST | /timers/:id/cancel | Cancel/Delete a timer |
| PUT/POST | /timers/:id/pause | Pause a timer |
| DELETE | /timers/:id | Alias for /timers/:id/cancel. |
| POST | /timers | Create a new timer for the current user. |
| PUT/POST | /timers/:id | Update an existing timer |
| GET | /timers | List current user's timers |
| GET | /timers/:id | Get a timer's details |
...