Skip to content

Latest commit

 

History

History
71 lines (46 loc) · 2 KB

File metadata and controls

71 lines (46 loc) · 2 KB

gooddata_api_client.OptionsApi

All URIs are relative to http://localhost

Method HTTP request Description
get_all_options GET /api/v1/options Links for all configuration options

get_all_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.

Example

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)

Parameters

This endpoint does not need any parameter.

Return type

{str: (bool, date, datetime, dict, float, int, list, str, none_type)}

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

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]