All URIs are relative to https://localhost:8080/api/v9
Method | HTTP request | Description |
---|---|---|
get_status | GET /status | Status |
str get_status()
Status
Returns API status.
from __future__ import print_function
import time
import toggl
from toggl.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = toggl.StatusApi()
try:
# Status
api_response = api_instance.get_status()
pprint(api_response)
except ApiException as e:
print("Exception when calling StatusApi->get_status: %s\n" % e)
This endpoint does not need any parameter.
str
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]