All URIs are relative to http://log.ano.yumimobi.com/api
Method | HTTP request | Description |
---|---|---|
overview | GET /api-docs | Get API documentation |
route | GET /api-docs/{route: .+} | Get detailed API documentation of a single resource |
overview()
Get API documentation
import time
import graylog
from graylog.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = graylog.ApidocsApi()
try:
# Get API documentation
api_instance.overview()
except ApiException as e:
print "Exception when calling ApidocsApi->overview: %s\n" % e
This endpoint does not need any parameter.
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
route(route)
Get detailed API documentation of a single resource
import time
import graylog
from graylog.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = graylog.ApidocsApi()
route = graylog.Object() # Object | Route to fetch. For example /system
try:
# Get detailed API documentation of a single resource
api_instance.route(route)
except ApiException as e:
print "Exception when calling ApidocsApi->route: %s\n" % e
Name | Type | Description | Notes |
---|---|---|---|
route | Object | Route to fetch. For example /system |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]