Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 1.08 KB

StatusApi.md

File metadata and controls

56 lines (35 loc) · 1.08 KB

toggl.StatusApi

All URIs are relative to https://localhost:8080/api/v9

Method HTTP request Description
get_status GET /status Status

get_status

str get_status()

Status

Returns API status.

Example

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)

Parameters

This endpoint does not need any parameter.

Return type

str

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]