All URIs are relative to https://api.odin.io/
Method | HTTP request | Description |
---|---|---|
v1_ping_get | GET /v1/ping | Health Check |
str v1_ping_get()
Health Check
Returns the pong as response
from __future__ import print_function
import time
import odin
from odin.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = odin.HealthApi()
try:
# Health Check
api_response = api_instance.v1_ping_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling HealthApi->v1_ping_get: %s\n" % e)
This endpoint does not need any parameter.
str
No authorization required
- Content-Type: Not defined
- Accept: text/plain
[Back to top] [Back to API list] [Back to Model list] [Back to README]