All URIs are relative to http://localhost
Method | HTTP request | Description |
---|---|---|
get_all_options | GET /api/v1/options | Links for all configuration options |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_all_options()
Links for all configuration options
Retrieves links for all options for different configurations.
import time
import gooddata_api_client
from gooddata_api_client.api import options_api
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = gooddata_api_client.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with gooddata_api_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = options_api.OptionsApi(api_client)
# example, this endpoint has no required or optional parameters
try:
# Links for all configuration options
api_response = api_instance.get_all_options()
pprint(api_response)
except gooddata_api_client.ApiException as e:
print("Exception when calling OptionsApi->get_all_options: %s\n" % e)
This endpoint does not need any parameter.
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Links for all configuration options. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]