Skip to content

Latest commit

 

History

History
81 lines (51 loc) · 1.82 KB

dashboard.md

File metadata and controls

81 lines (51 loc) · 1.82 KB

Dashboard

dashboard_controller = client.dashboard

Class Name

DashboardController

Methods

Get Configuration Pages

Gets the configuration pages.

def get_configuration_pages(self,
                           enable_in_main_menu=None)

Parameters

Parameter Type Tags Description
enable_in_main_menu bool Query, Optional Whether to enable in the main menu.

Response Type

List of ConfigurationPageInfo

Example Usage

result = dashboard_controller.get_configuration_pages()

Errors

HTTP Status Code Error Description Exception Class
401 Unauthorized APIException
403 Forbidden APIException
404 Server still loading. ProblemDetailsException

Get Dashboard Configuration Page

Gets a dashboard configuration page.

def get_dashboard_configuration_page(self,
                                    name=None)

Parameters

Parameter Type Tags Description
name string Query, Optional The name of the page.

Response Type

binary

Example Usage

result = dashboard_controller.get_dashboard_configuration_page()

Errors

HTTP Status Code Error Description Exception Class
404 Plugin configuration page not found. ProblemDetailsException