Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.25 KB

File metadata and controls

53 lines (35 loc) · 1.25 KB

liveagent_api.DefaultApi

All URIs are relative to http://localhost/api/v3

Method HTTP request Description
ping GET /ping Check that API is responding

ping

OkResponse ping()

Check that API is responding

Example

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" % e

Parameters

This endpoint does not need any parameter.

Return type

OkResponse

Authorization

privileges

HTTP request headers

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

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