All URIs are relative to http://localhost/api/v3
| Method | HTTP request | Description |
|---|---|---|
| ping | GET /ping | Check that API is responding |
OkResponse ping()
Check that API is responding
import time
import liveagent_api
from liveagent_api.rest import ApiException
from pprint import pprint
# Configure OAuth2 access token for authorization: privileges
liveagent_api.configuration.access_token = 'YOUR_ACCESS_TOKEN'
# create an instance of the API class
api_instance = liveagent_api.DefaultApi()
try:
# Check that API is responding
api_response = api_instance.ping()
pprint(api_response)
except ApiException as e:
print "Exception when calling DefaultApi->ping: %s\n" % eThis endpoint does not need any parameter.
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]