All URIs are relative to /api/v1
Method | HTTP request | Description |
---|---|---|
v1_jwt_decoded | GET /jwt_decoded | Jwt Decoded |
v1_test_error_report | GET /test/report | Test Error Report |
v1_version | GET /version | Version |
JWTAccessTokenResp v1_jwt_decoded()
Jwt Decoded
from __future__ import print_function
import time
import joj.horse_client
from joj.horse_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = joj.horse_client.MiscellaneousApi(joj.horse_client.ApiClient(configuration))
try:
# Jwt Decoded
api_response = api_instance.v1_jwt_decoded()
pprint(api_response)
except ApiException as e:
print("Exception when calling MiscellaneousApi->v1_jwt_decoded: %s\n" % e)
This endpoint does not need any parameter.
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EmptyResp v1_test_error_report()
Test Error Report
from __future__ import print_function
import time
import joj.horse_client
from joj.horse_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = joj.horse_client.MiscellaneousApi()
try:
# Test Error Report
api_response = api_instance.v1_test_error_report()
pprint(api_response)
except ApiException as e:
print("Exception when calling MiscellaneousApi->v1_test_error_report: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Version v1_version()
Version
from __future__ import print_function
import time
import joj.horse_client
from joj.horse_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = joj.horse_client.MiscellaneousApi()
try:
# Version
api_response = api_instance.v1_version()
pprint(api_response)
except ApiException as e:
print("Exception when calling MiscellaneousApi->v1_version: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]