All URIs are relative to /
Method | HTTP request | Description |
---|---|---|
esa_api_v20_config_sdr_categories_get | GET /esa/api/v2.0/config/sdr_categories | get sdr categories |
ConfigSdrCategories esa_api_v20_config_sdr_categories_get(device_type=device_type)
get sdr categories
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: BasicAuth
configuration = swagger_client.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# Configure API key authorization: UserSecurity
configuration = swagger_client.Configuration()
configuration.api_key['jwtToken'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['jwtToken'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.SdrCategoriesApi(swagger_client.ApiClient(configuration))
device_type = 'esa' # str | (optional) (default to esa)
try:
# get sdr categories
api_response = api_instance.esa_api_v20_config_sdr_categories_get(device_type=device_type)
pprint(api_response)
except ApiException as e:
print("Exception when calling SdrCategoriesApi->esa_api_v20_config_sdr_categories_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
device_type | str | [optional] [default to esa] |
- Content-Type: Not defined
- Accept: application/json, text/plain, /
[Back to top] [Back to API list] [Back to Model list] [Back to README]