All URIs are relative to https://api.odin.io/
Method | HTTP request | Description |
---|---|---|
v1_fields_certificates_category_get | GET /v1/fields/certificates/{category}/ | Get the fields for certificates |
v1_fields_exposed_buckets_get | GET /v1/fields/exposed/buckets/ | Get the fields for exposed |
v1_fields_exposed_files_get | GET /v1/fields/exposed/files/ | Get the fields data |
v1_fields_hosts_category_get | GET /v1/fields/hosts/{category}/ | Get the fields for hosts |
v2_fields_hosts_category_get | GET /v2/fields/hosts/{category}/ | Get the fields for hosts v2 |
InlineResponse20011 v1_fields_certificates_category_get(category)
Get the fields for certificates
Get the list of fields to query upon certificates
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.FieldsApi()
category = 'category_example' # str | get the category
try:
# Get the fields for certificates
api_response = api_instance.v1_fields_certificates_category_get(category)
pprint(api_response)
except ApiException as e:
print("Exception when calling FieldsApi->v1_fields_certificates_category_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
category | str | get the category |
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InlineResponse20012 v1_fields_exposed_buckets_get()
Get the fields for exposed
Get the list of fields that can be used to query on exposed buckets and files
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.FieldsApi()
try:
# Get the fields for exposed
api_response = api_instance.v1_fields_exposed_buckets_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling FieldsApi->v1_fields_exposed_buckets_get: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InlineResponse20012 v1_fields_exposed_files_get()
Get the fields data
Returns the fields data
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.FieldsApi()
try:
# Get the fields data
api_response = api_instance.v1_fields_exposed_files_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling FieldsApi->v1_fields_exposed_files_get: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InlineResponse20011 v1_fields_hosts_category_get(category)
Get the fields for hosts
Get the list of fields to query on host
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.FieldsApi()
category = 'category_example' # str | get the category
try:
# Get the fields for hosts
api_response = api_instance.v1_fields_hosts_category_get(category)
pprint(api_response)
except ApiException as e:
print("Exception when calling FieldsApi->v1_fields_hosts_category_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
category | str | get the category |
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InlineResponse20011 v2_fields_hosts_category_get(category)
Get the fields for hosts v2
Get the list of fields to query on hosts v2
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.FieldsApi()
category = 'category_example' # str | get the category
try:
# Get the fields for hosts v2
api_response = api_instance.v2_fields_hosts_category_get(category)
pprint(api_response)
except ApiException as e:
print("Exception when calling FieldsApi->v2_fields_hosts_category_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
category | str | get the category |
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]