Skip to content

Latest commit

 

History

History

README.md

gooddata-api-client

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: v0
  • Package version: 1.67.0
  • Build package: org.openapitools.codegen.languages.PythonPriorClientCodegen

Requirements.

Python >=3.6

Installation & Usage

pip install

If the python package is hosted on a repository, you can install directly using:

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import gooddata_api_client

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import gooddata_api_client

Getting Started

Please follow the installation procedure and then run the following:

import time
import gooddata_api_client
from pprint import pprint
from gooddata_api_client.api import ai_api
from gooddata_api_client.model.entity_search_body import EntitySearchBody
from gooddata_api_client.model.json_api_knowledge_recommendation_in_document import JsonApiKnowledgeRecommendationInDocument
from gooddata_api_client.model.json_api_knowledge_recommendation_out_document import JsonApiKnowledgeRecommendationOutDocument
from gooddata_api_client.model.json_api_knowledge_recommendation_out_list import JsonApiKnowledgeRecommendationOutList
from gooddata_api_client.model.json_api_knowledge_recommendation_patch_document import JsonApiKnowledgeRecommendationPatchDocument
from gooddata_api_client.model.json_api_knowledge_recommendation_post_optional_id_document import JsonApiKnowledgeRecommendationPostOptionalIdDocument
from gooddata_api_client.model.json_api_memory_item_in_document import JsonApiMemoryItemInDocument
from gooddata_api_client.model.json_api_memory_item_out_document import JsonApiMemoryItemOutDocument
from gooddata_api_client.model.json_api_memory_item_out_list import JsonApiMemoryItemOutList
from gooddata_api_client.model.json_api_memory_item_patch_document import JsonApiMemoryItemPatchDocument
from gooddata_api_client.model.json_api_memory_item_post_optional_id_document import JsonApiMemoryItemPostOptionalIdDocument
# 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(configuration) as api_client:
    # Create an instance of the API class
    api_instance = ai_api.AIApi(api_client)
    workspace_id = "workspaceId_example" # str | 
    json_api_knowledge_recommendation_post_optional_id_document = JsonApiKnowledgeRecommendationPostOptionalIdDocument(
        data=JsonApiKnowledgeRecommendationPostOptionalId(
            attributes=JsonApiKnowledgeRecommendationInAttributes(
                analytical_dashboard_title="Portfolio Health Insights",
                analyzed_period="2023-07",
                analyzed_value=None,
                are_relations_valid=True,
                comparison_type="MONTH",
                confidence=None,
                description="description_example",
                direction="DECREASED",
                metric_title="Revenue",
                recommendations={},
                reference_period="2023-06",
                reference_value=None,
                source_count=2,
                tags=[
                    "tags_example",
                ],
                title="title_example",
                widget_id="widget-123",
                widget_name="Revenue Trend",
            ),
            id="id1",
            relationships=JsonApiKnowledgeRecommendationInRelationships(
                analytical_dashboard=JsonApiAutomationInRelationshipsAnalyticalDashboard(
                    data=JsonApiAnalyticalDashboardToOneLinkage(None),
                ),
                metric=JsonApiKnowledgeRecommendationInRelationshipsMetric(
                    data=JsonApiMetricToOneLinkage(None),
                ),
            ),
            type="knowledgeRecommendation",
        ),
    ) # JsonApiKnowledgeRecommendationPostOptionalIdDocument | 
    include = [
        "metric,analyticalDashboard",
    ] # [str] | Array of included collections or individual relationships. Includes are separated by commas (e.g. include=entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \"ALL\" is present, all possible includes are used (include=ALL).  __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together. (optional)
    meta_include = [
        "metaInclude=origin,all",
    ] # [str] | Include Meta objects. (optional)

    try:
        # Post Knowledge Recommendations
        api_response = api_instance.create_entity_knowledge_recommendations(workspace_id, json_api_knowledge_recommendation_post_optional_id_document, include=include, meta_include=meta_include)
        pprint(api_response)
    except gooddata_api_client.ApiException as e:
        print("Exception when calling AIApi->create_entity_knowledge_recommendations: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
AIApi create_entity_knowledge_recommendations POST /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations Post Knowledge Recommendations
AIApi create_entity_memory_items POST /api/v1/entities/workspaces/{workspaceId}/memoryItems Post Memory Items
AIApi delete_entity_knowledge_recommendations DELETE /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Delete a Knowledge Recommendation
AIApi delete_entity_memory_items DELETE /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Delete a Memory Item
AIApi get_all_entities_knowledge_recommendations GET /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations Get all Knowledge Recommendations
AIApi get_all_entities_memory_items GET /api/v1/entities/workspaces/{workspaceId}/memoryItems Get all Memory Items
AIApi get_entity_knowledge_recommendations GET /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Get a Knowledge Recommendation
AIApi get_entity_memory_items GET /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Get a Memory Item
AIApi metadata_sync POST /api/v1/actions/workspaces/{workspaceId}/metadataSync (BETA) Sync Metadata to other services
AIApi metadata_sync_organization POST /api/v1/actions/organization/metadataSync (BETA) Sync organization scope Metadata to other services
AIApi patch_entity_knowledge_recommendations PATCH /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Patch a Knowledge Recommendation
AIApi patch_entity_memory_items PATCH /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Patch a Memory Item
AIApi search_entities_knowledge_recommendations POST /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/search The search endpoint (beta)
AIApi search_entities_memory_items POST /api/v1/entities/workspaces/{workspaceId}/memoryItems/search The search endpoint (beta)
AIApi update_entity_knowledge_recommendations PUT /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Put a Knowledge Recommendation
AIApi update_entity_memory_items PUT /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Put a Memory Item
AIAgentsApi create_entity_agents POST /api/v1/entities/agents Post Agent entities
AIAgentsApi delete_entity_agents DELETE /api/v1/entities/agents/{id} Delete Agent entity
AIAgentsApi get_all_entities_agents GET /api/v1/entities/agents Get all Agent entities
AIAgentsApi get_entity_agents GET /api/v1/entities/agents/{id} Get Agent entity
AIAgentsApi patch_entity_agents PATCH /api/v1/entities/agents/{id} Patch Agent entity
AIAgentsApi update_entity_agents PUT /api/v1/entities/agents/{id} Put Agent entity
AILakeApi add_ai_lake_database_data_source POST /api/v1/ailake/database/instances/{instanceId}/dataSources (BETA) Add a data source to an AILake Database instance
AILakeApi analyze_statistics POST /api/v1/ailake/database/instances/{instanceId}/analyzeStatistics (BETA) Run ANALYZE TABLE for tables in a database instance
AILakeApi create_ai_lake_pipe_table POST /api/v1/ailake/database/instances/{instanceId}/pipeTables (BETA) Create a new AI Lake pipe table
AILakeApi delete_ai_lake_pipe_table DELETE /api/v1/ailake/database/instances/{instanceId}/pipeTables/{tableName} (BETA) Delete an AI Lake pipe table
AILakeApi deprovision_ai_lake_database_instance DELETE /api/v1/ailake/database/instances/{instanceId} (BETA) Delete an existing AILake Database instance
AILakeApi get_ai_lake_database_instance GET /api/v1/ailake/database/instances/{instanceId} (BETA) Get the specified AILake Database instance
AILakeApi get_ai_lake_operation GET /api/v1/ailake/operations/{operationId} (BETA) Get Long Running Operation details
AILakeApi get_ai_lake_pipe_table GET /api/v1/ailake/database/instances/{instanceId}/pipeTables/{tableName} (BETA) Get an AI Lake pipe table
AILakeApi get_ai_lake_service_status GET /api/v1/ailake/services/{serviceId}/status (BETA) Get AI Lake service status
AILakeApi list_ai_lake_database_data_sources GET /api/v1/ailake/database/instances/{instanceId}/dataSources (BETA) List data sources of an AILake Database instance
AILakeApi list_ai_lake_database_instances GET /api/v1/ailake/database/instances (BETA) List AI Lake Database instances
AILakeApi list_ai_lake_object_storages GET /api/v1/ailake/objectStorages (BETA) List registered AI Lake ObjectStorages
AILakeApi list_ai_lake_pipe_tables GET /api/v1/ailake/database/instances/{instanceId}/pipeTables (BETA) List AI Lake pipe tables
AILakeApi list_ai_lake_services GET /api/v1/ailake/services (BETA) List AI Lake services
AILakeApi provision_ai_lake_database_instance POST /api/v1/ailake/database/instances (BETA) Create a new AILake Database instance
AILakeApi refresh_ai_lake_pipe_table_partition POST /api/v1/ailake/database/instances/{instanceId}/pipeTables/{tableName}/refresh (BETA) Refresh a pipe table partition
AILakeApi remove_ai_lake_database_data_source DELETE /api/v1/ailake/database/instances/{instanceId}/dataSources/{dataSourceId} (BETA) Remove a data source from an AILake Database instance
AILakeApi run_ai_lake_service_command POST /api/v1/ailake/services/{serviceId}/commands/{commandName}/run (BETA) Run an AI Lake services command
AILakeApi update_ai_lake_database_data_source PATCH /api/v1/ailake/database/instances/{instanceId}/dataSource (BETA) Update the data source of an AILake Database instance
AILakeDatabasesApi add_ai_lake_database_data_source POST /api/v1/ailake/database/instances/{instanceId}/dataSources (BETA) Add a data source to an AILake Database instance
AILakeDatabasesApi deprovision_ai_lake_database_instance DELETE /api/v1/ailake/database/instances/{instanceId} (BETA) Delete an existing AILake Database instance
AILakeDatabasesApi get_ai_lake_database_instance GET /api/v1/ailake/database/instances/{instanceId} (BETA) Get the specified AILake Database instance
AILakeDatabasesApi list_ai_lake_database_data_sources GET /api/v1/ailake/database/instances/{instanceId}/dataSources (BETA) List data sources of an AILake Database instance
AILakeDatabasesApi list_ai_lake_database_instances GET /api/v1/ailake/database/instances (BETA) List AI Lake Database instances
AILakeDatabasesApi list_ai_lake_object_storages GET /api/v1/ailake/objectStorages (BETA) List registered AI Lake ObjectStorages
AILakeDatabasesApi provision_ai_lake_database_instance POST /api/v1/ailake/database/instances (BETA) Create a new AILake Database instance
AILakeDatabasesApi remove_ai_lake_database_data_source DELETE /api/v1/ailake/database/instances/{instanceId}/dataSources/{dataSourceId} (BETA) Remove a data source from an AILake Database instance
AILakeDatabasesApi update_ai_lake_database_data_source PATCH /api/v1/ailake/database/instances/{instanceId}/dataSource (BETA) Update the data source of an AILake Database instance
AILakePipeTablesApi analyze_statistics POST /api/v1/ailake/database/instances/{instanceId}/analyzeStatistics (BETA) Run ANALYZE TABLE for tables in a database instance
AILakePipeTablesApi create_ai_lake_pipe_table POST /api/v1/ailake/database/instances/{instanceId}/pipeTables (BETA) Create a new AI Lake pipe table
AILakePipeTablesApi delete_ai_lake_pipe_table DELETE /api/v1/ailake/database/instances/{instanceId}/pipeTables/{tableName} (BETA) Delete an AI Lake pipe table
AILakePipeTablesApi get_ai_lake_pipe_table GET /api/v1/ailake/database/instances/{instanceId}/pipeTables/{tableName} (BETA) Get an AI Lake pipe table
AILakePipeTablesApi list_ai_lake_pipe_tables GET /api/v1/ailake/database/instances/{instanceId}/pipeTables (BETA) List AI Lake pipe tables
AILakePipeTablesApi refresh_ai_lake_pipe_table_partition POST /api/v1/ailake/database/instances/{instanceId}/pipeTables/{tableName}/refresh (BETA) Refresh a pipe table partition
AILakeServicesOperationsApi get_ai_lake_operation GET /api/v1/ailake/operations/{operationId} (BETA) Get Long Running Operation details
AILakeServicesOperationsApi get_ai_lake_service_status GET /api/v1/ailake/services/{serviceId}/status (BETA) Get AI Lake service status
AILakeServicesOperationsApi list_ai_lake_services GET /api/v1/ailake/services (BETA) List AI Lake services
AILakeServicesOperationsApi run_ai_lake_service_command POST /api/v1/ailake/services/{serviceId}/commands/{commandName}/run (BETA) Run an AI Lake services command
APITokensApi create_entity_api_tokens POST /api/v1/entities/users/{userId}/apiTokens Post a new API token for the user
APITokensApi delete_entity_api_tokens DELETE /api/v1/entities/users/{userId}/apiTokens/{id} Delete an API Token for a user
APITokensApi get_all_entities_api_tokens GET /api/v1/entities/users/{userId}/apiTokens List all api tokens for a user
APITokensApi get_entity_api_tokens GET /api/v1/entities/users/{userId}/apiTokens/{id} Get an API Token for a user
AnalyticsModelApi get_analytics_model GET /api/v1/layout/workspaces/{workspaceId}/analyticsModel Get analytics model
AnalyticsModelApi set_analytics_model PUT /api/v1/layout/workspaces/{workspaceId}/analyticsModel Set analytics model
AppearanceApi create_entity_color_palettes POST /api/v1/entities/colorPalettes Post Color Pallettes
AppearanceApi create_entity_themes POST /api/v1/entities/themes Post Theming
AppearanceApi delete_entity_color_palettes DELETE /api/v1/entities/colorPalettes/{id} Delete a Color Pallette
AppearanceApi delete_entity_themes DELETE /api/v1/entities/themes/{id} Delete Theming
AppearanceApi get_all_entities_color_palettes GET /api/v1/entities/colorPalettes Get all Color Pallettes
AppearanceApi get_all_entities_themes GET /api/v1/entities/themes Get all Theming entities
AppearanceApi get_entity_color_palettes GET /api/v1/entities/colorPalettes/{id} Get Color Pallette
AppearanceApi get_entity_themes GET /api/v1/entities/themes/{id} Get Theming
AppearanceApi patch_entity_color_palettes PATCH /api/v1/entities/colorPalettes/{id} Patch Color Pallette
AppearanceApi patch_entity_themes PATCH /api/v1/entities/themes/{id} Patch Theming
AppearanceApi update_entity_color_palettes PUT /api/v1/entities/colorPalettes/{id} Put Color Pallette
AppearanceApi update_entity_themes PUT /api/v1/entities/themes/{id} Put Theming
AttributeHierarchiesApi create_entity_attribute_hierarchies POST /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies Post Attribute Hierarchies
AttributeHierarchiesApi delete_entity_attribute_hierarchies DELETE /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Delete an Attribute Hierarchy
AttributeHierarchiesApi get_all_entities_attribute_hierarchies GET /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies Get all Attribute Hierarchies
AttributeHierarchiesApi get_entity_attribute_hierarchies GET /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Get an Attribute Hierarchy
AttributeHierarchiesApi patch_entity_attribute_hierarchies PATCH /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Patch an Attribute Hierarchy
AttributeHierarchiesApi search_entities_attribute_hierarchies POST /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/search The search endpoint (beta)
AttributeHierarchiesApi update_entity_attribute_hierarchies PUT /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Put an Attribute Hierarchy
AttributesApi get_all_entities_attributes GET /api/v1/entities/workspaces/{workspaceId}/attributes Get all Attributes
AttributesApi get_entity_attributes GET /api/v1/entities/workspaces/{workspaceId}/attributes/{objectId} Get an Attribute
AttributesApi patch_entity_attributes PATCH /api/v1/entities/workspaces/{workspaceId}/attributes/{objectId} Patch an Attribute (beta)
AttributesApi search_entities_attributes POST /api/v1/entities/workspaces/{workspaceId}/attributes/search The search endpoint (beta)
AutomationsApi create_entity_automations POST /api/v1/entities/workspaces/{workspaceId}/automations Post Automations
AutomationsApi delete_entity_automations DELETE /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Delete an Automation
AutomationsApi delete_organization_automations POST /api/v1/actions/organization/automations/delete Delete selected automations across all workspaces
AutomationsApi delete_workspace_automations POST /api/v1/actions/workspaces/{workspaceId}/automations/delete Delete selected automations in the workspace
AutomationsApi get_all_automations_workspace_automations GET /api/v1/entities/organization/workspaceAutomations Get all Automations across all Workspaces
AutomationsApi get_all_entities_automations GET /api/v1/entities/workspaces/{workspaceId}/automations Get all Automations
AutomationsApi get_automations GET /api/v1/layout/workspaces/{workspaceId}/automations Get automations
AutomationsApi get_entity_automations GET /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Get an Automation
AutomationsApi patch_entity_automations PATCH /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Patch an Automation
AutomationsApi pause_organization_automations POST /api/v1/actions/organization/automations/pause Pause selected automations across all workspaces
AutomationsApi pause_workspace_automations POST /api/v1/actions/workspaces/{workspaceId}/automations/pause Pause selected automations in the workspace
AutomationsApi search_entities_automation_results POST /api/v1/entities/workspaces/{workspaceId}/automationResults/search The search endpoint (beta)
AutomationsApi search_entities_automations POST /api/v1/entities/workspaces/{workspaceId}/automations/search The search endpoint (beta)
AutomationsApi set_automations PUT /api/v1/layout/workspaces/{workspaceId}/automations Set automations
AutomationsApi trigger_automation POST /api/v1/actions/workspaces/{workspaceId}/automations/trigger Trigger automation.
AutomationsApi trigger_existing_automation POST /api/v1/actions/workspaces/{workspaceId}/automations/{automationId}/trigger Trigger existing automation.
AutomationsApi unpause_organization_automations POST /api/v1/actions/organization/automations/unpause Unpause selected automations across all workspaces
AutomationsApi unpause_workspace_automations POST /api/v1/actions/workspaces/{workspaceId}/automations/unpause Unpause selected automations in the workspace
AutomationsApi unsubscribe_all_automations DELETE /api/v1/actions/organization/automations/unsubscribe Unsubscribe from all automations in all workspaces
AutomationsApi unsubscribe_automation DELETE /api/v1/actions/workspaces/{workspaceId}/automations/{automationId}/unsubscribe Unsubscribe from an automation
AutomationsApi unsubscribe_organization_automations POST /api/v1/actions/organization/automations/unsubscribe Unsubscribe from selected automations across all workspaces
AutomationsApi unsubscribe_selected_workspace_automations POST /api/v1/actions/workspaces/{workspaceId}/automations/unsubscribe Unsubscribe from selected automations in the workspace
AutomationsApi unsubscribe_workspace_automations DELETE /api/v1/actions/workspaces/{workspaceId}/automations/unsubscribe Unsubscribe from all automations in the workspace
AutomationsApi update_entity_automations PUT /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Put an Automation
AvailableDriversApi get_data_source_drivers GET /api/v1/options/availableDrivers Get all available data source drivers
CSPDirectivesApi create_entity_csp_directives POST /api/v1/entities/cspDirectives Post CSP Directives
CSPDirectivesApi delete_entity_csp_directives DELETE /api/v1/entities/cspDirectives/{id} Delete CSP Directives
CSPDirectivesApi get_all_entities_csp_directives GET /api/v1/entities/cspDirectives Get CSP Directives
CSPDirectivesApi get_entity_csp_directives GET /api/v1/entities/cspDirectives/{id} Get CSP Directives
CSPDirectivesApi patch_entity_csp_directives PATCH /api/v1/entities/cspDirectives/{id} Patch CSP Directives
CSPDirectivesApi update_entity_csp_directives PUT /api/v1/entities/cspDirectives/{id} Put CSP Directives
CacheUsageApi collect_cache_usage GET /api/v1/actions/collectCacheUsage Collect data about the current cache usage
CertificationApi set_certification POST /api/v1/actions/workspaces/{workspaceId}/setCertification Set Certification
ComputationApi cancel_executions POST /api/v1/actions/workspaces/{workspaceId}/execution/afm/cancel Applies all the given cancel tokens.
ComputationApi change_analysis POST /api/v1/actions/workspaces/{workspaceId}/execution/computeChangeAnalysis Compute change analysis
ComputationApi change_analysis_result GET /api/v1/actions/workspaces/{workspaceId}/execution/computeChangeAnalysis/result/{resultId} Get change analysis result
ComputationApi column_statistics POST /api/v1/actions/dataSources/{dataSourceId}/computeColumnStatistics (EXPERIMENTAL) Compute column statistics
ComputationApi compute_label_elements_post POST /api/v1/actions/workspaces/{workspaceId}/execution/collectLabelElements Listing of label values. The resulting data are limited by the static platform limit to the maximum of 10000 rows.
ComputationApi compute_report POST /api/v1/actions/workspaces/{workspaceId}/execution/afm/execute Executes analytical request and returns link to the result
ComputationApi compute_report_for_visualization_object POST /api/v1/actions/workspaces/{workspaceId}/execution/visualization/{visualizationObjectId}/execute (BETA) Executes a visualization object and returns link to the result
ComputationApi compute_valid_descendants POST /api/v1/actions/workspaces/{workspaceId}/execution/afm/computeValidDescendants (BETA) Valid descendants
ComputationApi compute_valid_objects POST /api/v1/actions/workspaces/{workspaceId}/execution/afm/computeValidObjects Valid objects
ComputationApi explain_afm POST /api/v1/actions/workspaces/{workspaceId}/execution/afm/explain AFM explain resource.
ComputationApi key_driver_analysis POST /api/v1/actions/workspaces/{workspaceId}/execution/computeKeyDrivers (EXPERIMENTAL) Compute key driver analysis
ComputationApi key_driver_analysis_result GET /api/v1/actions/workspaces/{workspaceId}/execution/computeKeyDrivers/result/{resultId} (EXPERIMENTAL) Get key driver analysis result
ComputationApi outlier_detection POST /api/v1/actions/workspaces/{workspaceId}/execution/detectOutliers (BETA) Outlier Detection
ComputationApi outlier_detection_result GET /api/v1/actions/workspaces/{workspaceId}/execution/detectOutliers/result/{resultId} (BETA) Outlier Detection Result
ComputationApi retrieve_execution_metadata GET /api/v1/actions/workspaces/{workspaceId}/execution/afm/execute/result/{resultId}/metadata Get a single execution result's metadata.
ComputationApi retrieve_result GET /api/v1/actions/workspaces/{workspaceId}/execution/afm/execute/result/{resultId} Get a single execution result
ComputationApi retrieve_result_binary GET /api/v1/actions/workspaces/{workspaceId}/execution/afm/execute/result/{resultId}/binary (BETA) Get a single execution result in Apache Arrow File or Stream format
CookieSecurityConfigurationApi get_entity_cookie_security_configurations GET /api/v1/entities/admin/cookieSecurityConfigurations/{id} Get CookieSecurityConfiguration
CookieSecurityConfigurationApi patch_entity_cookie_security_configurations PATCH /api/v1/entities/admin/cookieSecurityConfigurations/{id} Patch CookieSecurityConfiguration
CookieSecurityConfigurationApi update_entity_cookie_security_configurations PUT /api/v1/entities/admin/cookieSecurityConfigurations/{id} Put CookieSecurityConfiguration
DashboardsApi create_entity_analytical_dashboards POST /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards Post Dashboards
DashboardsApi delete_entity_analytical_dashboards DELETE /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Delete a Dashboard
DashboardsApi get_all_entities_analytical_dashboards GET /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards Get all Dashboards
DashboardsApi get_entity_analytical_dashboards GET /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Get a Dashboard
DashboardsApi patch_entity_analytical_dashboards PATCH /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Patch a Dashboard
DashboardsApi search_entities_analytical_dashboards POST /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/search The search endpoint (beta)
DashboardsApi update_entity_analytical_dashboards PUT /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Put Dashboards
DataFiltersApi create_entity_user_data_filters POST /api/v1/entities/workspaces/{workspaceId}/userDataFilters Post User Data Filters
DataFiltersApi create_entity_workspace_data_filter_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings Post Settings for Workspace Data Filters
DataFiltersApi create_entity_workspace_data_filters POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters Post Workspace Data Filters
DataFiltersApi delete_entity_user_data_filters DELETE /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Delete a User Data Filter
DataFiltersApi delete_entity_workspace_data_filter_settings DELETE /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Delete a Settings for Workspace Data Filter
DataFiltersApi delete_entity_workspace_data_filters DELETE /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Delete a Workspace Data Filter
DataFiltersApi get_all_entities_user_data_filters GET /api/v1/entities/workspaces/{workspaceId}/userDataFilters Get all User Data Filters
DataFiltersApi get_all_entities_workspace_data_filter_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings Get all Settings for Workspace Data Filters
DataFiltersApi get_all_entities_workspace_data_filters GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters Get all Workspace Data Filters
DataFiltersApi get_entity_user_data_filters GET /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Get a User Data Filter
DataFiltersApi get_entity_workspace_data_filter_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Get a Setting for Workspace Data Filter
DataFiltersApi get_entity_workspace_data_filters GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Get a Workspace Data Filter
DataFiltersApi get_workspace_data_filters_layout GET /api/v1/layout/workspaceDataFilters Get workspace data filters for all workspaces
DataFiltersApi patch_entity_user_data_filters PATCH /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Patch a User Data Filter
DataFiltersApi patch_entity_workspace_data_filter_settings PATCH /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Patch a Settings for Workspace Data Filter
DataFiltersApi patch_entity_workspace_data_filters PATCH /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Patch a Workspace Data Filter
DataFiltersApi search_entities_user_data_filters POST /api/v1/entities/workspaces/{workspaceId}/userDataFilters/search The search endpoint (beta)
DataFiltersApi search_entities_workspace_data_filter_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/search The search endpoint (beta)
DataFiltersApi search_entities_workspace_data_filters POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/search The search endpoint (beta)
DataFiltersApi set_workspace_data_filters_layout PUT /api/v1/layout/workspaceDataFilters Set all workspace data filters
DataFiltersApi update_entity_user_data_filters PUT /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Put a User Data Filter
DataFiltersApi update_entity_workspace_data_filter_settings PUT /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Put a Settings for Workspace Data Filter
DataFiltersApi update_entity_workspace_data_filters PUT /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Put a Workspace Data Filter
DataSourceDeclarativeAPIsApi get_data_sources_layout GET /api/v1/layout/dataSources Get all data sources
DataSourceDeclarativeAPIsApi put_data_sources_layout PUT /api/v1/layout/dataSources Put all data sources
DataSourceEntityAPIsApi create_entity_data_sources POST /api/v1/entities/dataSources Post Data Sources
DataSourceEntityAPIsApi delete_entity_data_sources DELETE /api/v1/entities/dataSources/{id} Delete Data Source entity
DataSourceEntityAPIsApi get_all_entities_data_source_identifiers GET /api/v1/entities/dataSourceIdentifiers Get all Data Source Identifiers
DataSourceEntityAPIsApi get_all_entities_data_sources GET /api/v1/entities/dataSources Get Data Source entities
DataSourceEntityAPIsApi get_entity_data_source_identifiers GET /api/v1/entities/dataSourceIdentifiers/{id} Get Data Source Identifier
DataSourceEntityAPIsApi get_entity_data_sources GET /api/v1/entities/dataSources/{id} Get Data Source entity
DataSourceEntityAPIsApi patch_entity_data_sources PATCH /api/v1/entities/dataSources/{id} Patch Data Source entity
DataSourceEntityAPIsApi update_entity_data_sources PUT /api/v1/entities/dataSources/{id} Put Data Source entity
DataSourceStatisticsApi delete_data_source_statistics DELETE /api/v1/layout/dataSources/{dataSourceId}/statistics (BETA) Delete stored physical statistics for a data source
DataSourceStatisticsApi get_data_source_statistics GET /api/v1/layout/dataSources/{dataSourceId}/statistics (BETA) Retrieve stored physical statistics for a data source
DataSourceStatisticsApi put_data_source_statistics PUT /api/v1/layout/dataSources/{dataSourceId}/statistics (BETA) Store physical table and column statistics for a data source
DataSourceStatisticsApi scan_statistics POST /api/v1/actions/dataSources/{dataSourceId}/scanStatistics (BETA) Collect physical table and column statistics from a StarRocks data source
DataSourceFilesAnalysisApi analyze_csv POST /api/v1/actions/fileStorage/staging/analyzeCsv Analyze CSV
DataSourceFilesDeletionApi delete_files POST /api/v1/actions/fileStorage/dataSources/{dataSourceId}/deleteFiles Delete datasource files
DataSourceFilesImportApi import_csv POST /api/v1/actions/fileStorage/dataSources/{dataSourceId}/importCsv Import CSV
DataSourceFilesListingApi list_files POST /api/v1/actions/fileStorage/dataSources/{dataSourceId}/listFiles List datasource files
DataSourceFilesManifestReadApi read_csv_file_manifests POST /api/v1/actions/fileStorage/dataSources/{dataSourceId}/readCsvFileManifests Read CSV file manifests
DataSourceStagingLocationApi staging_upload POST /api/v1/actions/fileStorage/staging/upload Upload a file to the staging area
DatasetsApi get_all_entities_datasets GET /api/v1/entities/workspaces/{workspaceId}/datasets Get all Datasets
DatasetsApi get_entity_datasets GET /api/v1/entities/workspaces/{workspaceId}/datasets/{objectId} Get a Dataset
DatasetsApi patch_entity_datasets PATCH /api/v1/entities/workspaces/{workspaceId}/datasets/{objectId} Patch a Dataset (beta)
DatasetsApi search_entities_datasets POST /api/v1/entities/workspaces/{workspaceId}/datasets/search The search endpoint (beta)
DependencyGraphApi get_dependent_entities_graph GET /api/v1/actions/workspaces/{workspaceId}/dependentEntitiesGraph Computes the dependent entities graph
DependencyGraphApi get_dependent_entities_graph_from_entry_points POST /api/v1/actions/workspaces/{workspaceId}/dependentEntitiesGraph Computes the dependent entities graph from given entry points
EntitlementApi get_all_entities_entitlements GET /api/v1/entities/entitlements Get Entitlements
EntitlementApi get_entity_entitlements GET /api/v1/entities/entitlements/{id} Get Entitlement entity
EntitlementApi resolve_all_entitlements GET /api/v1/actions/resolveEntitlements Values for all public entitlements.
EntitlementApi resolve_requested_entitlements POST /api/v1/actions/resolveEntitlements Values for requested public entitlements.
ExportDefinitionsApi create_entity_export_definitions POST /api/v1/entities/workspaces/{workspaceId}/exportDefinitions Post Export Definitions
ExportDefinitionsApi delete_entity_export_definitions DELETE /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Delete an Export Definition
ExportDefinitionsApi get_all_entities_export_definitions GET /api/v1/entities/workspaces/{workspaceId}/exportDefinitions Get all Export Definitions
ExportDefinitionsApi get_entity_export_definitions GET /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Get an Export Definition
ExportDefinitionsApi patch_entity_export_definitions PATCH /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Patch an Export Definition
ExportDefinitionsApi search_entities_export_definitions POST /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/search The search endpoint (beta)
ExportDefinitionsApi update_entity_export_definitions PUT /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Put an Export Definition
ExportTemplatesApi create_entity_export_templates POST /api/v1/entities/exportTemplates Post Export Template entities
ExportTemplatesApi delete_entity_export_templates DELETE /api/v1/entities/exportTemplates/{id} Delete Export Template entity
ExportTemplatesApi get_all_entities_export_templates GET /api/v1/entities/exportTemplates GET all Export Template entities
ExportTemplatesApi get_entity_export_templates GET /api/v1/entities/exportTemplates/{id} GET Export Template entity
ExportTemplatesApi patch_entity_export_templates PATCH /api/v1/entities/exportTemplates/{id} Patch Export Template entity
ExportTemplatesApi update_entity_export_templates PUT /api/v1/entities/exportTemplates/{id} PUT Export Template entity
FactsApi get_all_entities_aggregated_facts GET /api/v1/entities/workspaces/{workspaceId}/aggregatedFacts Get all Aggregated Facts
FactsApi get_all_entities_facts GET /api/v1/entities/workspaces/{workspaceId}/facts Get all Facts
FactsApi get_entity_aggregated_facts GET /api/v1/entities/workspaces/{workspaceId}/aggregatedFacts/{objectId} Get an Aggregated Fact
FactsApi get_entity_facts GET /api/v1/entities/workspaces/{workspaceId}/facts/{objectId} Get a Fact
FactsApi patch_entity_facts PATCH /api/v1/entities/workspaces/{workspaceId}/facts/{objectId} Patch a Fact (beta)
FactsApi search_entities_aggregated_facts POST /api/v1/entities/workspaces/{workspaceId}/aggregatedFacts/search The search endpoint (beta)
FactsApi search_entities_facts POST /api/v1/entities/workspaces/{workspaceId}/facts/search The search endpoint (beta)
FilterContextApi create_entity_filter_contexts POST /api/v1/entities/workspaces/{workspaceId}/filterContexts Post Filter Context
FilterContextApi delete_entity_filter_contexts DELETE /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Delete a Filter Context
FilterContextApi get_all_entities_filter_contexts GET /api/v1/entities/workspaces/{workspaceId}/filterContexts Get all Filter Context
FilterContextApi get_entity_filter_contexts GET /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Get a Filter Context
FilterContextApi patch_entity_filter_contexts PATCH /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Patch a Filter Context
FilterContextApi search_entities_filter_contexts POST /api/v1/entities/workspaces/{workspaceId}/filterContexts/search The search endpoint (beta)
FilterContextApi update_entity_filter_contexts PUT /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Put a Filter Context
FilterViewsApi create_entity_filter_views POST /api/v1/entities/workspaces/{workspaceId}/filterViews Post Filter views
FilterViewsApi delete_entity_filter_views DELETE /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Delete Filter view
FilterViewsApi get_all_entities_filter_views GET /api/v1/entities/workspaces/{workspaceId}/filterViews Get all Filter views
FilterViewsApi get_entity_filter_views GET /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Get Filter view
FilterViewsApi get_filter_views GET /api/v1/layout/workspaces/{workspaceId}/filterViews Get filter views
FilterViewsApi patch_entity_filter_views PATCH /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Patch Filter view
FilterViewsApi search_entities_filter_views POST /api/v1/entities/workspaces/{workspaceId}/filterViews/search The search endpoint (beta)
FilterViewsApi set_filter_views PUT /api/v1/layout/workspaces/{workspaceId}/filterViews Set filter views
FilterViewsApi update_entity_filter_views PUT /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Put Filter views
GenerateLogicalDataModelApi generate_logical_model POST /api/v1/actions/dataSources/{dataSourceId}/generateLogicalModel Generate logical data model (LDM) from physical data model (PDM)
GeographicDataApi create_entity_custom_geo_collections POST /api/v1/entities/customGeoCollections Post Custom Geo Collections
GeographicDataApi delete_entity_custom_geo_collections DELETE /api/v1/entities/customGeoCollections/{id} Delete Custom Geo Collection
GeographicDataApi get_all_entities_custom_geo_collections GET /api/v1/entities/customGeoCollections Get all Custom Geo Collections
GeographicDataApi get_entity_custom_geo_collections GET /api/v1/entities/customGeoCollections/{id} Get Custom Geo Collection
GeographicDataApi patch_entity_custom_geo_collections PATCH /api/v1/entities/customGeoCollections/{id} Patch Custom Geo Collection
GeographicDataApi update_entity_custom_geo_collections PUT /api/v1/entities/customGeoCollections/{id} Put Custom Geo Collection
HierarchyApi check_entity_overrides POST /api/v1/actions/workspaces/{workspaceId}/checkEntityOverrides Finds entities with given ID in hierarchy.
HierarchyApi inherited_entity_conflicts GET /api/v1/actions/workspaces/{workspaceId}/inheritedEntityConflicts Finds identifier conflicts in workspace hierarchy.
HierarchyApi inherited_entity_prefixes GET /api/v1/actions/workspaces/{workspaceId}/inheritedEntityPrefixes Get used entity prefixes in hierarchy
HierarchyApi overridden_child_entities GET /api/v1/actions/workspaces/{workspaceId}/overriddenChildEntities Finds identifier overrides in workspace hierarchy.
IdentityProvidersApi create_entity_identity_providers POST /api/v1/entities/identityProviders Post Identity Providers
IdentityProvidersApi delete_entity_identity_providers DELETE /api/v1/entities/identityProviders/{id} Delete Identity Provider
IdentityProvidersApi get_all_entities_identity_providers GET /api/v1/entities/identityProviders Get all Identity Providers
IdentityProvidersApi get_entity_identity_providers GET /api/v1/entities/identityProviders/{id} Get Identity Provider
IdentityProvidersApi get_identity_providers_layout GET /api/v1/layout/identityProviders Get all identity providers layout
IdentityProvidersApi patch_entity_identity_providers PATCH /api/v1/entities/identityProviders/{id} Patch Identity Provider
IdentityProvidersApi set_identity_providers PUT /api/v1/layout/identityProviders Set all identity providers
IdentityProvidersApi switch_active_identity_provider POST /api/v1/actions/organization/switchActiveIdentityProvider Switch Active Identity Provider
IdentityProvidersApi update_entity_identity_providers PUT /api/v1/entities/identityProviders/{id} Put Identity Provider
ImageExportApi create_image_export POST /api/v1/actions/workspaces/{workspaceId}/export/image (EXPERIMENTAL) Create image export request
ImageExportApi get_image_export GET /api/v1/actions/workspaces/{workspaceId}/export/image/{exportId} (EXPERIMENTAL) Retrieve exported files
ImageExportApi get_image_export_metadata GET /api/v1/actions/workspaces/{workspaceId}/export/image/{exportId}/metadata (EXPERIMENTAL) Retrieve metadata context
InvalidateCacheApi register_upload_notification POST /api/v1/actions/dataSources/{dataSourceId}/uploadNotification Register an upload notification
InvalidateCacheApi register_workspace_upload_notification POST /api/v1/actions/workspaces/{workspaceId}/uploadNotification Register an upload notification
JWKSApi create_entity_jwks POST /api/v1/entities/jwks Post Jwks
JWKSApi delete_entity_jwks DELETE /api/v1/entities/jwks/{id} Delete Jwk
JWKSApi get_all_entities_jwks GET /api/v1/entities/jwks Get all Jwks
JWKSApi get_entity_jwks GET /api/v1/entities/jwks/{id} Get Jwk
JWKSApi patch_entity_jwks PATCH /api/v1/entities/jwks/{id} Patch Jwk
JWKSApi update_entity_jwks PUT /api/v1/entities/jwks/{id} Put Jwk
LDMDeclarativeAPIsApi get_logical_model GET /api/v1/layout/workspaces/{workspaceId}/logicalModel Get logical model
LDMDeclarativeAPIsApi set_logical_model PUT /api/v1/layout/workspaces/{workspaceId}/logicalModel Set logical model
LLMEndpointsApi create_entity POST /api/v1/entities/llmEndpoints Post LLM endpoint entities (Removed)
LLMEndpointsApi delete_entity DELETE /api/v1/entities/llmEndpoints/{id} Delete LLM endpoint entity (Removed)
LLMEndpointsApi get_all_entities GET /api/v1/entities/llmEndpoints Get all LLM endpoint entities (Removed)
LLMEndpointsApi get_entity GET /api/v1/entities/llmEndpoints/{id} Get LLM endpoint entity (Removed)
LLMEndpointsApi patch_entity PATCH /api/v1/entities/llmEndpoints/{id} Patch LLM endpoint entity (Removed)
LLMEndpointsApi update_entity PUT /api/v1/entities/llmEndpoints/{id} PUT LLM endpoint entity (Removed)
LLMProvidersApi create_entity_llm_providers POST /api/v1/entities/llmProviders Post LLM Provider entities
LLMProvidersApi delete_entity_llm_providers DELETE /api/v1/entities/llmProviders/{id} Delete LLM Provider entity
LLMProvidersApi get_all_entities_llm_providers GET /api/v1/entities/llmProviders Get all LLM Provider entities
LLMProvidersApi get_entity_llm_providers GET /api/v1/entities/llmProviders/{id} Get LLM Provider entity
LLMProvidersApi patch_entity_llm_providers PATCH /api/v1/entities/llmProviders/{id} Patch LLM Provider entity
LLMProvidersApi update_entity_llm_providers PUT /api/v1/entities/llmProviders/{id} PUT LLM Provider entity
LabelsApi get_all_entities_labels GET /api/v1/entities/workspaces/{workspaceId}/labels Get all Labels
LabelsApi get_entity_labels GET /api/v1/entities/workspaces/{workspaceId}/labels/{objectId} Get a Label
LabelsApi patch_entity_labels PATCH /api/v1/entities/workspaces/{workspaceId}/labels/{objectId} Patch a Label (beta)
LabelsApi search_entities_labels POST /api/v1/entities/workspaces/{workspaceId}/labels/search The search endpoint (beta)
ManagePermissionsApi get_data_source_permissions GET /api/v1/layout/dataSources/{dataSourceId}/permissions Get permissions for the data source
ManagePermissionsApi manage_data_source_permissions POST /api/v1/actions/dataSources/{dataSourceId}/managePermissions Manage Permissions for a Data Source
ManagePermissionsApi set_data_source_permissions PUT /api/v1/layout/dataSources/{dataSourceId}/permissions Set data source permissions.
MetadataSyncApi metadata_sync POST /api/v1/actions/workspaces/{workspaceId}/metadataSync (BETA) Sync Metadata to other services
MetadataSyncApi metadata_sync_organization POST /api/v1/actions/organization/metadataSync (BETA) Sync organization scope Metadata to other services
MetricsApi create_entity_metrics POST /api/v1/entities/workspaces/{workspaceId}/metrics Post Metrics
MetricsApi delete_entity_metrics DELETE /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Delete a Metric
MetricsApi get_all_entities_metrics GET /api/v1/entities/workspaces/{workspaceId}/metrics Get all Metrics
MetricsApi get_entity_metrics GET /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Get a Metric
MetricsApi patch_entity_metrics PATCH /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Patch a Metric
MetricsApi search_entities_metrics POST /api/v1/entities/workspaces/{workspaceId}/metrics/search The search endpoint (beta)
MetricsApi update_entity_metrics PUT /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Put a Metric
NotificationChannelsApi create_entity_notification_channels POST /api/v1/entities/notificationChannels Post Notification Channel entities
NotificationChannelsApi delete_entity_notification_channels DELETE /api/v1/entities/notificationChannels/{id} Delete Notification Channel entity
NotificationChannelsApi get_all_entities_notification_channel_identifiers GET /api/v1/entities/notificationChannelIdentifiers Get all Notification Channel Identifier entities
NotificationChannelsApi get_all_entities_notification_channels GET /api/v1/entities/notificationChannels Get all Notification Channel entities
NotificationChannelsApi get_entity_notification_channel_identifiers GET /api/v1/entities/notificationChannelIdentifiers/{id} Get Notification Channel Identifier entity
NotificationChannelsApi get_entity_notification_channels GET /api/v1/entities/notificationChannels/{id} Get Notification Channel entity
NotificationChannelsApi get_export_templates_layout GET /api/v1/layout/exportTemplates Get all export templates layout
NotificationChannelsApi get_notification_channels_layout GET /api/v1/layout/notificationChannels Get all notification channels layout
NotificationChannelsApi get_notifications GET /api/v1/actions/notifications Get latest notifications.
NotificationChannelsApi mark_as_read_notification POST /api/v1/actions/notifications/{notificationId}/markAsRead Mark notification as read.
NotificationChannelsApi mark_as_read_notification_all POST /api/v1/actions/notifications/markAsRead Mark all notifications as read.
NotificationChannelsApi patch_entity_notification_channels PATCH /api/v1/entities/notificationChannels/{id} Patch Notification Channel entity
NotificationChannelsApi set_export_templates PUT /api/v1/layout/exportTemplates Set all export templates
NotificationChannelsApi set_notification_channels PUT /api/v1/layout/notificationChannels Set all notification channels
NotificationChannelsApi test_existing_notification_channel POST /api/v1/actions/notificationChannels/{notificationChannelId}/test Test existing notification channel.
NotificationChannelsApi test_notification_channel POST /api/v1/actions/notificationChannels/test Test notification channel.
NotificationChannelsApi update_entity_notification_channels PUT /api/v1/entities/notificationChannels/{id} Put Notification Channel entity
OGCAPIFeaturesApi get_collection_items GET /api/v1/location/collections/{collectionId}/items Get collection features
OGCAPIFeaturesApi get_custom_collection_items GET /api/v1/location/custom/collections/{collectionId}/items Get custom collection features
OptionsApi get_all_options GET /api/v1/options Links for all configuration options
OrganizationDeclarativeAPIsApi get_agents_layout GET /api/v1/layout/agents Get all AI agent configurations layout
OrganizationDeclarativeAPIsApi get_custom_geo_collections_layout GET /api/v1/layout/customGeoCollections Get all custom geo collections layout
OrganizationDeclarativeAPIsApi get_organization_layout GET /api/v1/layout/organization Get organization layout
OrganizationDeclarativeAPIsApi set_agents_layout PUT /api/v1/layout/agents Set all AI agent configurations
OrganizationDeclarativeAPIsApi set_custom_geo_collections PUT /api/v1/layout/customGeoCollections Set all custom geo collections
OrganizationDeclarativeAPIsApi set_organization_layout PUT /api/v1/layout/organization Set organization layout
OrganizationEntityAPIsApi add_targets POST /api/v1/actions/ipAllowlistPolicies/{id}/addTargets Add targets to IP allowlist policy
OrganizationEntityAPIsApi create_entity_ip_allowlist_policies POST /api/v1/entities/ipAllowlistPolicies Post IpAllowlistPolicy entities
OrganizationEntityAPIsApi create_entity_organization_settings POST /api/v1/entities/organizationSettings Post Organization Setting entities
OrganizationEntityAPIsApi delete_entity_ip_allowlist_policies DELETE /api/v1/entities/ipAllowlistPolicies/{id} Delete IpAllowlistPolicy entity
OrganizationEntityAPIsApi delete_entity_organization_settings DELETE /api/v1/entities/organizationSettings/{id} Delete Organization Setting entity
OrganizationEntityAPIsApi get_all_entities_ip_allowlist_policies GET /api/v1/entities/ipAllowlistPolicies Get all IpAllowlistPolicy entities
OrganizationEntityAPIsApi get_all_entities_organization_settings GET /api/v1/entities/organizationSettings Get Organization Setting entities
OrganizationEntityAPIsApi get_entity_ip_allowlist_policies GET /api/v1/entities/ipAllowlistPolicies/{id} Get IpAllowlistPolicy entity
OrganizationEntityAPIsApi get_entity_organization_settings GET /api/v1/entities/organizationSettings/{id} Get Organization Setting entity
OrganizationEntityAPIsApi get_entity_organizations GET /api/v1/entities/admin/organizations/{id} Get Organizations
OrganizationEntityAPIsApi get_organization GET /api/v1/entities/organization Get current organization info
OrganizationEntityAPIsApi patch_entity_organization_settings PATCH /api/v1/entities/organizationSettings/{id} Patch Organization Setting entity
OrganizationEntityAPIsApi patch_entity_organizations PATCH /api/v1/entities/admin/organizations/{id} Patch Organization
OrganizationEntityAPIsApi remove_targets POST /api/v1/actions/ipAllowlistPolicies/{id}/removeTargets Remove targets from IP allowlist policy
OrganizationEntityAPIsApi update_entity_ip_allowlist_policies PUT /api/v1/entities/ipAllowlistPolicies/{id} Put IpAllowlistPolicy entity
OrganizationEntityAPIsApi update_entity_organization_settings PUT /api/v1/entities/organizationSettings/{id} Put Organization Setting entity
OrganizationEntityAPIsApi update_entity_organizations PUT /api/v1/entities/admin/organizations/{id} Put Organization
ParametersApi create_entity_parameters POST /api/v1/entities/workspaces/{workspaceId}/parameters Post Parameters
ParametersApi delete_entity_parameters DELETE /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Delete a Parameter
ParametersApi get_all_entities_parameters GET /api/v1/entities/workspaces/{workspaceId}/parameters Get all Parameters
ParametersApi get_entity_parameters GET /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Get a Parameter
ParametersApi patch_entity_parameters PATCH /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Patch a Parameter
ParametersApi search_entities_parameters POST /api/v1/entities/workspaces/{workspaceId}/parameters/search The search endpoint (beta)
ParametersApi update_entity_parameters PUT /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Put a Parameter
PermissionsApi attribute_permissions GET /api/v1/actions/workspaces/{workspaceId}/attributes/{attributeId}/permissions Get Attribute Permissions
PermissionsApi available_assignees GET /api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/availableAssignees Get Available Assignees
PermissionsApi dashboard_permissions GET /api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/permissions Get Dashboard Permissions
PermissionsApi fact_permissions GET /api/v1/actions/workspaces/{workspaceId}/facts/{factId}/permissions Get Fact Permissions
PermissionsApi get_organization_permissions GET /api/v1/layout/organization/permissions Get organization permissions
PermissionsApi get_user_group_permissions GET /api/v1/layout/userGroups/{userGroupId}/permissions Get permissions for the user-group
PermissionsApi get_user_permissions GET /api/v1/layout/users/{userId}/permissions Get permissions for the user
PermissionsApi get_workspace_permissions GET /api/v1/layout/workspaces/{workspaceId}/permissions Get permissions for the workspace
PermissionsApi label_permissions GET /api/v1/actions/workspaces/{workspaceId}/labels/{labelId}/permissions Get Label Permissions
PermissionsApi manage_attribute_permissions POST /api/v1/actions/workspaces/{workspaceId}/attributes/{attributeId}/managePermissions Manage Permissions for an Attribute
PermissionsApi manage_dashboard_permissions POST /api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/managePermissions Manage Permissions for a Dashboard
PermissionsApi manage_data_source_permissions POST /api/v1/actions/dataSources/{dataSourceId}/managePermissions Manage Permissions for a Data Source
PermissionsApi manage_fact_permissions POST /api/v1/actions/workspaces/{workspaceId}/facts/{factId}/managePermissions Manage Permissions for a Fact
PermissionsApi manage_label_permissions POST /api/v1/actions/workspaces/{workspaceId}/labels/{labelId}/managePermissions Manage Permissions for a Label
PermissionsApi manage_organization_permissions POST /api/v1/actions/organization/managePermissions Manage Permissions for a Organization
PermissionsApi manage_workspace_permissions POST /api/v1/actions/workspaces/{workspaceId}/managePermissions Manage Permissions for a Workspace
PermissionsApi set_organization_permissions PUT /api/v1/layout/organization/permissions Set organization permissions
PermissionsApi set_user_group_permissions PUT /api/v1/layout/userGroups/{userGroupId}/permissions Set permissions for the user-group
PermissionsApi set_user_permissions PUT /api/v1/layout/users/{userId}/permissions Set permissions for the user
PermissionsApi set_workspace_permissions PUT /api/v1/layout/workspaces/{workspaceId}/permissions Set permissions for the workspace
PluginsApi create_entity_dashboard_plugins POST /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins Post Plugins
PluginsApi delete_entity_dashboard_plugins DELETE /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Delete a Plugin
PluginsApi get_all_entities_dashboard_plugins GET /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins Get all Plugins
PluginsApi get_entity_dashboard_plugins GET /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Get a Plugin
PluginsApi patch_entity_dashboard_plugins PATCH /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Patch a Plugin
PluginsApi search_entities_dashboard_plugins POST /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/search The search endpoint (beta)
PluginsApi update_entity_dashboard_plugins PUT /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Put a Plugin
RawExportApi create_raw_export POST /api/v1/actions/workspaces/{workspaceId}/export/raw (EXPERIMENTAL) Create raw export request
RawExportApi get_raw_export GET /api/v1/actions/workspaces/{workspaceId}/export/raw/{exportId} (EXPERIMENTAL) Retrieve exported files
ReportingSettingsApi resolve_all_settings_without_workspace GET /api/v1/actions/resolveSettings Values for all settings without workspace.
ReportingSettingsApi resolve_settings_without_workspace POST /api/v1/actions/resolveSettings Values for selected settings without workspace.
ScanningApi get_data_source_schemata GET /api/v1/actions/dataSources/{dataSourceId}/scanSchemata Get a list of schema names of a database
ScanningApi scan_data_source POST /api/v1/actions/dataSources/{dataSourceId}/scan Scan a database to get a physical data model (PDM)
ScanningApi scan_sql POST /api/v1/actions/dataSources/{dataSourceId}/scanSql Collect metadata about SQL query
SlidesExportApi create_slides_export POST /api/v1/actions/workspaces/{workspaceId}/export/slides (EXPERIMENTAL) Create slides export request
SlidesExportApi get_slides_export GET /api/v1/actions/workspaces/{workspaceId}/export/slides/{exportId} (EXPERIMENTAL) Retrieve exported files
SlidesExportApi get_slides_export_metadata GET /api/v1/actions/workspaces/{workspaceId}/export/slides/{exportId}/metadata (EXPERIMENTAL) Retrieve metadata context
SmartFunctionsApi ai_chat POST /api/v1/actions/workspaces/{workspaceId}/ai/chat (BETA) Chat with AI
SmartFunctionsApi ai_chat_history POST /api/v1/actions/workspaces/{workspaceId}/ai/chatHistory (BETA) Get Chat History
SmartFunctionsApi ai_chat_stream POST /api/v1/actions/workspaces/{workspaceId}/ai/chatStream (BETA) Chat with AI
SmartFunctionsApi ai_chat_usage GET /api/v1/actions/workspaces/{workspaceId}/ai/chatUsage Get Chat Usage
SmartFunctionsApi ai_search POST /api/v1/actions/workspaces/{workspaceId}/ai/search (BETA) Semantic Search in Metadata
SmartFunctionsApi anomaly_detection POST /api/v1/actions/workspaces/{workspaceId}/execution/functions/anomalyDetection/{resultId} (EXPERIMENTAL) Smart functions - Anomaly Detection
SmartFunctionsApi anomaly_detection_result GET /api/v1/actions/workspaces/{workspaceId}/execution/functions/anomalyDetection/result/{resultId} (EXPERIMENTAL) Smart functions - Anomaly Detection Result
SmartFunctionsApi clustering POST /api/v1/actions/workspaces/{workspaceId}/execution/functions/clustering/{resultId} (EXPERIMENTAL) Smart functions - Clustering
SmartFunctionsApi clustering_result GET /api/v1/actions/workspaces/{workspaceId}/execution/functions/clustering/result/{resultId} (EXPERIMENTAL) Smart functions - Clustering Result
SmartFunctionsApi created_by GET /api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy Get Analytics Catalog CreatedBy Users
SmartFunctionsApi forecast POST /api/v1/actions/workspaces/{workspaceId}/execution/functions/forecast/{resultId} (BETA) Smart functions - Forecast
SmartFunctionsApi forecast_result GET /api/v1/actions/workspaces/{workspaceId}/execution/functions/forecast/result/{resultId} (BETA) Smart functions - Forecast Result
SmartFunctionsApi generate_description POST /api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/generateDescription Generate Description for Analytics Object
SmartFunctionsApi generate_title POST /api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/generateTitle Generate Title for Analytics Object
SmartFunctionsApi get_quality_issues GET /api/v1/actions/workspaces/{workspaceId}/ai/issues Get Quality Issues
SmartFunctionsApi get_quality_issues_calculation_status GET /api/v1/actions/workspaces/{workspaceId}/ai/issues/status/{processId} Get Quality Issues Calculation Status
SmartFunctionsApi list_llm_provider_models POST /api/v1/actions/ai/llmProvider/listModels List LLM Provider Models
SmartFunctionsApi list_llm_provider_models_by_id POST /api/v1/actions/ai/llmProvider/{llmProviderId}/listModels List LLM Provider Models By Id
SmartFunctionsApi memory_created_by_users GET /api/v1/actions/workspaces/{workspaceId}/ai/memory/createdBy Get AI Memory CreatedBy Users
SmartFunctionsApi resolve_llm_endpoints GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmEndpoints Get Active LLM Endpoints for this workspace (Removed)
SmartFunctionsApi resolve_llm_providers GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders Get Active LLM configuration for this workspace
SmartFunctionsApi tags GET /api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/tags Get Analytics Catalog Tags
SmartFunctionsApi test_llm_provider POST /api/v1/actions/ai/llmProvider/test Test LLM Provider
SmartFunctionsApi test_llm_provider_by_id POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test Test LLM Provider By Id
SmartFunctionsApi trending_objects GET /api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/trendingObjects Get Trending Analytics Catalog Objects
SmartFunctionsApi trigger_quality_issues_calculation POST /api/v1/actions/workspaces/{workspaceId}/ai/issues/triggerCheck Trigger Quality Issues Calculation
SmartFunctionsApi validate_llm_endpoint POST /api/v1/actions/ai/llmEndpoint/test Validate LLM Endpoint (Removed)
SmartFunctionsApi validate_llm_endpoint_by_id POST /api/v1/actions/ai/llmEndpoint/{llmEndpointId}/test Validate LLM Endpoint By Id (Removed)
TabularExportApi create_dashboard_export_request POST /api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/export/tabular (EXPERIMENTAL) Create dashboard tabular export request
TabularExportApi create_tabular_export POST /api/v1/actions/workspaces/{workspaceId}/export/tabular Create tabular export request
TabularExportApi get_tabular_export GET /api/v1/actions/workspaces/{workspaceId}/export/tabular/{exportId} Retrieve exported files
TestConnectionApi test_data_source POST /api/v1/actions/dataSources/{dataSourceId}/test Test data source connection by data source id
TestConnectionApi test_data_source_definition POST /api/v1/actions/dataSource/test Test connection by data source definition
TranslationsApi clean_translations POST /api/v1/actions/workspaces/{workspaceId}/translations/clean Cleans up translations.
TranslationsApi get_translation_tags GET /api/v1/actions/workspaces/{workspaceId}/translations Get translation tags.
TranslationsApi retrieve_translations POST /api/v1/actions/workspaces/{workspaceId}/translations/retrieve Retrieve translations for entities.
TranslationsApi set_translations POST /api/v1/actions/workspaces/{workspaceId}/translations/set Set translations for entities.
UsageApi all_platform_usage GET /api/v1/actions/collectUsage Info about the platform usage.
UsageApi particular_platform_usage POST /api/v1/actions/collectUsage Info about the platform usage for particular items.
UserGroupsDeclarativeAPIsApi get_user_groups_layout GET /api/v1/layout/userGroups Get all user groups
UserGroupsDeclarativeAPIsApi get_users_user_groups_layout GET /api/v1/layout/usersAndUserGroups Get all users and user groups
UserGroupsDeclarativeAPIsApi put_user_groups_layout PUT /api/v1/layout/userGroups Put all user groups
UserGroupsDeclarativeAPIsApi put_users_user_groups_layout PUT /api/v1/layout/usersAndUserGroups Put all users and user groups
UserGroupsEntityAPIsApi create_entity_user_groups POST /api/v1/entities/userGroups Post User Group entities
UserGroupsEntityAPIsApi delete_entity_user_groups DELETE /api/v1/entities/userGroups/{id} Delete UserGroup entity
UserGroupsEntityAPIsApi get_all_entities_user_groups GET /api/v1/entities/userGroups Get UserGroup entities
UserGroupsEntityAPIsApi get_entity_user_groups GET /api/v1/entities/userGroups/{id} Get UserGroup entity
UserGroupsEntityAPIsApi patch_entity_user_groups PATCH /api/v1/entities/userGroups/{id} Patch UserGroup entity
UserGroupsEntityAPIsApi update_entity_user_groups PUT /api/v1/entities/userGroups/{id} Put UserGroup entity
UserAuthorizationApi get_profile GET /api/v1/profile Get Profile
UserDataFiltersApi get_user_data_filters GET /api/v1/layout/workspaces/{workspaceId}/userDataFilters Get user data filters
UserDataFiltersApi set_user_data_filters PUT /api/v1/layout/workspaces/{workspaceId}/userDataFilters Set user data filters
UserIdentifiersApi get_all_entities_user_identifiers GET /api/v1/entities/userIdentifiers Get UserIdentifier entities
UserIdentifiersApi get_entity_user_identifiers GET /api/v1/entities/userIdentifiers/{id} Get UserIdentifier entity
UserSettingsApi create_entity_custom_user_application_settings POST /api/v1/entities/users/{userId}/customUserApplicationSettings Post a new custom application setting for the user
UserSettingsApi create_entity_user_settings POST /api/v1/entities/users/{userId}/userSettings Post new user settings for the user
UserSettingsApi delete_entity_custom_user_application_settings DELETE /api/v1/entities/users/{userId}/customUserApplicationSettings/{id} Delete a custom application setting for a user
UserSettingsApi delete_entity_user_settings DELETE /api/v1/entities/users/{userId}/userSettings/{id} Delete a setting for a user
UserSettingsApi get_all_entities_custom_user_application_settings GET /api/v1/entities/users/{userId}/customUserApplicationSettings List all custom application settings for a user
UserSettingsApi get_all_entities_user_settings GET /api/v1/entities/users/{userId}/userSettings List all settings for a user
UserSettingsApi get_entity_custom_user_application_settings GET /api/v1/entities/users/{userId}/customUserApplicationSettings/{id} Get a custom application setting for a user
UserSettingsApi get_entity_user_settings GET /api/v1/entities/users/{userId}/userSettings/{id} Get a setting for a user
UserSettingsApi update_entity_custom_user_application_settings PUT /api/v1/entities/users/{userId}/customUserApplicationSettings/{id} Put a custom application setting for the user
UserSettingsApi update_entity_user_settings PUT /api/v1/entities/users/{userId}/userSettings/{id} Put new user settings for the user
UserManagementApi add_group_members POST /api/v1/actions/userManagement/userGroups/{userGroupId}/addMembers
UserManagementApi assign_permissions POST /api/v1/actions/userManagement/assignPermissions
UserManagementApi get_group_members GET /api/v1/actions/userManagement/userGroups/{userGroupId}/members
UserManagementApi list_permissions_for_user GET /api/v1/actions/userManagement/users/{userId}/permissions
UserManagementApi list_permissions_for_user_group GET /api/v1/actions/userManagement/userGroups/{userGroupId}/permissions
UserManagementApi list_user_groups GET /api/v1/actions/userManagement/userGroups
UserManagementApi list_users GET /api/v1/actions/userManagement/users
UserManagementApi list_workspace_user_groups GET /api/v1/actions/workspaces/{workspaceId}/userGroups
UserManagementApi list_workspace_users GET /api/v1/actions/workspaces/{workspaceId}/users
UserManagementApi manage_permissions_for_user POST /api/v1/actions/userManagement/users/{userId}/permissions
UserManagementApi manage_permissions_for_user_group POST /api/v1/actions/userManagement/userGroups/{userGroupId}/permissions
UserManagementApi remove_group_members POST /api/v1/actions/userManagement/userGroups/{userGroupId}/removeMembers
UserManagementApi remove_users_user_groups POST /api/v1/actions/userManagement/removeUsersUserGroups
UserManagementApi revoke_permissions POST /api/v1/actions/userManagement/revokePermissions
UsersDeclarativeAPIsApi get_users_layout GET /api/v1/layout/users Get all users
UsersDeclarativeAPIsApi put_users_layout PUT /api/v1/layout/users Put all users
UsersEntityAPIsApi create_entity_users POST /api/v1/entities/users Post User entities
UsersEntityAPIsApi delete_entity_users DELETE /api/v1/entities/users/{id} Delete User entity
UsersEntityAPIsApi get_all_entities_users GET /api/v1/entities/users Get User entities
UsersEntityAPIsApi get_entity_users GET /api/v1/entities/users/{id} Get User entity
UsersEntityAPIsApi patch_entity_users PATCH /api/v1/entities/users/{id} Patch User entity
UsersEntityAPIsApi update_entity_users PUT /api/v1/entities/users/{id} Put User entity
VisualExportApi create_pdf_export POST /api/v1/actions/workspaces/{workspaceId}/export/visual Create visual - pdf export request
VisualExportApi get_exported_file GET /api/v1/actions/workspaces/{workspaceId}/export/visual/{exportId} Retrieve exported files
VisualExportApi get_metadata GET /api/v1/actions/workspaces/{workspaceId}/export/visual/{exportId}/metadata Retrieve metadata context
VisualizationObjectApi create_entity_visualization_objects POST /api/v1/entities/workspaces/{workspaceId}/visualizationObjects Post Visualization Objects
VisualizationObjectApi delete_entity_visualization_objects DELETE /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Delete a Visualization Object
VisualizationObjectApi get_all_entities_visualization_objects GET /api/v1/entities/workspaces/{workspaceId}/visualizationObjects Get all Visualization Objects
VisualizationObjectApi get_entity_visualization_objects GET /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Get a Visualization Object
VisualizationObjectApi patch_entity_visualization_objects PATCH /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Patch a Visualization Object
VisualizationObjectApi search_entities_visualization_objects POST /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/search The search endpoint (beta)
VisualizationObjectApi update_entity_visualization_objects PUT /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Put a Visualization Object
WorkspacesDeclarativeAPIsApi get_workspace_layout GET /api/v1/layout/workspaces/{workspaceId} Get workspace layout
WorkspacesDeclarativeAPIsApi get_workspaces_layout GET /api/v1/layout/workspaces Get all workspaces layout
WorkspacesDeclarativeAPIsApi put_workspace_layout PUT /api/v1/layout/workspaces/{workspaceId} Set workspace layout
WorkspacesDeclarativeAPIsApi set_workspaces_layout PUT /api/v1/layout/workspaces Set all workspaces layout
WorkspacesEntityAPIsApi create_entity_workspaces POST /api/v1/entities/workspaces Post Workspace entities
WorkspacesEntityAPIsApi delete_entity_workspaces DELETE /api/v1/entities/workspaces/{id} Delete Workspace entity
WorkspacesEntityAPIsApi get_all_entities_workspaces GET /api/v1/entities/workspaces Get Workspace entities
WorkspacesEntityAPIsApi get_entity_workspaces GET /api/v1/entities/workspaces/{id} Get Workspace entity
WorkspacesEntityAPIsApi patch_entity_workspaces PATCH /api/v1/entities/workspaces/{id} Patch Workspace entity
WorkspacesEntityAPIsApi update_entity_workspaces PUT /api/v1/entities/workspaces/{id} Put Workspace entity
WorkspacesSettingsApi create_entity_custom_application_settings POST /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings Post Custom Application Settings
WorkspacesSettingsApi create_entity_workspace_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceSettings Post Settings for Workspaces
WorkspacesSettingsApi delete_entity_custom_application_settings DELETE /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Delete a Custom Application Setting
WorkspacesSettingsApi delete_entity_workspace_settings DELETE /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Delete a Setting for Workspace
WorkspacesSettingsApi get_all_entities_custom_application_settings GET /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings Get all Custom Application Settings
WorkspacesSettingsApi get_all_entities_workspace_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceSettings Get all Setting for Workspaces
WorkspacesSettingsApi get_entity_custom_application_settings GET /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Get a Custom Application Setting
WorkspacesSettingsApi get_entity_workspace_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Get a Setting for Workspace
WorkspacesSettingsApi patch_entity_custom_application_settings PATCH /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Patch a Custom Application Setting
WorkspacesSettingsApi patch_entity_workspace_settings PATCH /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Patch a Setting for Workspace
WorkspacesSettingsApi search_entities_custom_application_settings POST /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/search The search endpoint (beta)
WorkspacesSettingsApi search_entities_workspace_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/search The search endpoint (beta)
WorkspacesSettingsApi update_entity_custom_application_settings PUT /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Put a Custom Application Setting
WorkspacesSettingsApi update_entity_workspace_settings PUT /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Put a Setting for a Workspace
WorkspacesSettingsApi workspace_resolve_all_settings GET /api/v1/actions/workspaces/{workspaceId}/resolveSettings Values for all settings.
WorkspacesSettingsApi workspace_resolve_settings POST /api/v1/actions/workspaces/{workspaceId}/resolveSettings Values for selected settings.
ActionsApi add_targets POST /api/v1/actions/ipAllowlistPolicies/{id}/addTargets Add targets to IP allowlist policy
ActionsApi ai_chat POST /api/v1/actions/workspaces/{workspaceId}/ai/chat (BETA) Chat with AI
ActionsApi ai_chat_history POST /api/v1/actions/workspaces/{workspaceId}/ai/chatHistory (BETA) Get Chat History
ActionsApi ai_chat_stream POST /api/v1/actions/workspaces/{workspaceId}/ai/chatStream (BETA) Chat with AI
ActionsApi ai_chat_usage GET /api/v1/actions/workspaces/{workspaceId}/ai/chatUsage Get Chat Usage
ActionsApi ai_search POST /api/v1/actions/workspaces/{workspaceId}/ai/search (BETA) Semantic Search in Metadata
ActionsApi all_platform_usage GET /api/v1/actions/collectUsage Info about the platform usage.
ActionsApi analyze_csv POST /api/v1/actions/fileStorage/staging/analyzeCsv Analyze CSV
ActionsApi anomaly_detection POST /api/v1/actions/workspaces/{workspaceId}/execution/functions/anomalyDetection/{resultId} (EXPERIMENTAL) Smart functions - Anomaly Detection
ActionsApi anomaly_detection_result GET /api/v1/actions/workspaces/{workspaceId}/execution/functions/anomalyDetection/result/{resultId} (EXPERIMENTAL) Smart functions - Anomaly Detection Result
ActionsApi attribute_permissions GET /api/v1/actions/workspaces/{workspaceId}/attributes/{attributeId}/permissions Get Attribute Permissions
ActionsApi available_assignees GET /api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/availableAssignees Get Available Assignees
ActionsApi cancel_executions POST /api/v1/actions/workspaces/{workspaceId}/execution/afm/cancel Applies all the given cancel tokens.
ActionsApi cancel_workflow POST /api/v1/actions/workspaces/{workspaceId}/ai/workflow/{runId}/cancel
ActionsApi change_analysis POST /api/v1/actions/workspaces/{workspaceId}/execution/computeChangeAnalysis Compute change analysis
ActionsApi change_analysis_result GET /api/v1/actions/workspaces/{workspaceId}/execution/computeChangeAnalysis/result/{resultId} Get change analysis result
ActionsApi check_entity_overrides POST /api/v1/actions/workspaces/{workspaceId}/checkEntityOverrides Finds entities with given ID in hierarchy.
ActionsApi clean_translations POST /api/v1/actions/workspaces/{workspaceId}/translations/clean Cleans up translations.
ActionsApi clustering POST /api/v1/actions/workspaces/{workspaceId}/execution/functions/clustering/{resultId} (EXPERIMENTAL) Smart functions - Clustering
ActionsApi clustering_result GET /api/v1/actions/workspaces/{workspaceId}/execution/functions/clustering/result/{resultId} (EXPERIMENTAL) Smart functions - Clustering Result
ActionsApi collect_cache_usage GET /api/v1/actions/collectCacheUsage Collect data about the current cache usage
ActionsApi column_statistics POST /api/v1/actions/dataSources/{dataSourceId}/computeColumnStatistics (EXPERIMENTAL) Compute column statistics
ActionsApi compute_label_elements_post POST /api/v1/actions/workspaces/{workspaceId}/execution/collectLabelElements Listing of label values. The resulting data are limited by the static platform limit to the maximum of 10000 rows.
ActionsApi compute_report POST /api/v1/actions/workspaces/{workspaceId}/execution/afm/execute Executes analytical request and returns link to the result
ActionsApi compute_report_for_visualization_object POST /api/v1/actions/workspaces/{workspaceId}/execution/visualization/{visualizationObjectId}/execute (BETA) Executes a visualization object and returns link to the result
ActionsApi compute_valid_descendants POST /api/v1/actions/workspaces/{workspaceId}/execution/afm/computeValidDescendants (BETA) Valid descendants
ActionsApi compute_valid_objects POST /api/v1/actions/workspaces/{workspaceId}/execution/afm/computeValidObjects Valid objects
ActionsApi convert_geo_file POST /api/v1/actions/customGeoCollection/convert Convert a geo file to GeoParquet format
ActionsApi create_dashboard_export_request POST /api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/export/tabular (EXPERIMENTAL) Create dashboard tabular export request
ActionsApi create_image_export POST /api/v1/actions/workspaces/{workspaceId}/export/image (EXPERIMENTAL) Create image export request
ActionsApi create_pdf_export POST /api/v1/actions/workspaces/{workspaceId}/export/visual Create visual - pdf export request
ActionsApi create_raw_export POST /api/v1/actions/workspaces/{workspaceId}/export/raw (EXPERIMENTAL) Create raw export request
ActionsApi create_slides_export POST /api/v1/actions/workspaces/{workspaceId}/export/slides (EXPERIMENTAL) Create slides export request
ActionsApi create_tabular_export POST /api/v1/actions/workspaces/{workspaceId}/export/tabular Create tabular export request
ActionsApi created_by GET /api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy Get Analytics Catalog CreatedBy Users
ActionsApi custom_geo_collection_staging_upload POST /api/v1/actions/customGeoCollection/staging/upload Upload a geo collection file to the staging area
ActionsApi dashboard_permissions GET /api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/permissions Get Dashboard Permissions
ActionsApi delete_files POST /api/v1/actions/fileStorage/dataSources/{dataSourceId}/deleteFiles Delete datasource files
ActionsApi delete_organization_automations POST /api/v1/actions/organization/automations/delete Delete selected automations across all workspaces
ActionsApi delete_workspace_automations POST /api/v1/actions/workspaces/{workspaceId}/automations/delete Delete selected automations in the workspace
ActionsApi explain_afm POST /api/v1/actions/workspaces/{workspaceId}/execution/afm/explain AFM explain resource.
ActionsApi fact_permissions GET /api/v1/actions/workspaces/{workspaceId}/facts/{factId}/permissions Get Fact Permissions
ActionsApi forecast POST /api/v1/actions/workspaces/{workspaceId}/execution/functions/forecast/{resultId} (BETA) Smart functions - Forecast
ActionsApi forecast_result GET /api/v1/actions/workspaces/{workspaceId}/execution/functions/forecast/result/{resultId} (BETA) Smart functions - Forecast Result
ActionsApi generate_dashboard_summary POST /api/v1/actions/workspaces/{workspaceId}/ai/workflow/dashboardSummary
ActionsApi generate_description POST /api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/generateDescription Generate Description for Analytics Object
ActionsApi generate_logical_model POST /api/v1/actions/dataSources/{dataSourceId}/generateLogicalModel Generate logical data model (LDM) from physical data model (PDM)
ActionsApi generate_title POST /api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/generateTitle Generate Title for Analytics Object
ActionsApi get_data_source_schemata GET /api/v1/actions/dataSources/{dataSourceId}/scanSchemata Get a list of schema names of a database
ActionsApi get_dependent_entities_graph GET /api/v1/actions/workspaces/{workspaceId}/dependentEntitiesGraph Computes the dependent entities graph
ActionsApi get_dependent_entities_graph_from_entry_points POST /api/v1/actions/workspaces/{workspaceId}/dependentEntitiesGraph Computes the dependent entities graph from given entry points
ActionsApi get_exported_file GET /api/v1/actions/workspaces/{workspaceId}/export/visual/{exportId} Retrieve exported files
ActionsApi get_image_export GET /api/v1/actions/workspaces/{workspaceId}/export/image/{exportId} (EXPERIMENTAL) Retrieve exported files
ActionsApi get_image_export_metadata GET /api/v1/actions/workspaces/{workspaceId}/export/image/{exportId}/metadata (EXPERIMENTAL) Retrieve metadata context
ActionsApi get_metadata GET /api/v1/actions/workspaces/{workspaceId}/export/visual/{exportId}/metadata Retrieve metadata context
ActionsApi get_notifications GET /api/v1/actions/notifications Get latest notifications.
ActionsApi get_quality_issues GET /api/v1/actions/workspaces/{workspaceId}/ai/issues Get Quality Issues
ActionsApi get_quality_issues_calculation_status GET /api/v1/actions/workspaces/{workspaceId}/ai/issues/status/{processId} Get Quality Issues Calculation Status
ActionsApi get_raw_export GET /api/v1/actions/workspaces/{workspaceId}/export/raw/{exportId} (EXPERIMENTAL) Retrieve exported files
ActionsApi get_slides_export GET /api/v1/actions/workspaces/{workspaceId}/export/slides/{exportId} (EXPERIMENTAL) Retrieve exported files
ActionsApi get_slides_export_metadata GET /api/v1/actions/workspaces/{workspaceId}/export/slides/{exportId}/metadata (EXPERIMENTAL) Retrieve metadata context
ActionsApi get_tabular_export GET /api/v1/actions/workspaces/{workspaceId}/export/tabular/{exportId} Retrieve exported files
ActionsApi get_translation_tags GET /api/v1/actions/workspaces/{workspaceId}/translations Get translation tags.
ActionsApi get_workflow_status GET /api/v1/actions/workspaces/{workspaceId}/ai/workflow/{runId}/status
ActionsApi import_csv POST /api/v1/actions/fileStorage/dataSources/{dataSourceId}/importCsv Import CSV
ActionsApi import_custom_geo_collection POST /api/v1/actions/customGeoCollection/{collectionId}/import Import custom geo collection
ActionsApi inherited_entity_conflicts GET /api/v1/actions/workspaces/{workspaceId}/inheritedEntityConflicts Finds identifier conflicts in workspace hierarchy.
ActionsApi inherited_entity_prefixes GET /api/v1/actions/workspaces/{workspaceId}/inheritedEntityPrefixes Get used entity prefixes in hierarchy
ActionsApi key_driver_analysis POST /api/v1/actions/workspaces/{workspaceId}/execution/computeKeyDrivers (EXPERIMENTAL) Compute key driver analysis
ActionsApi key_driver_analysis_result GET /api/v1/actions/workspaces/{workspaceId}/execution/computeKeyDrivers/result/{resultId} (EXPERIMENTAL) Get key driver analysis result
ActionsApi label_permissions GET /api/v1/actions/workspaces/{workspaceId}/labels/{labelId}/permissions Get Label Permissions
ActionsApi list_files POST /api/v1/actions/fileStorage/dataSources/{dataSourceId}/listFiles List datasource files
ActionsApi list_llm_provider_models POST /api/v1/actions/ai/llmProvider/listModels List LLM Provider Models
ActionsApi list_llm_provider_models_by_id POST /api/v1/actions/ai/llmProvider/{llmProviderId}/listModels List LLM Provider Models By Id
ActionsApi list_workspace_user_groups GET /api/v1/actions/workspaces/{workspaceId}/userGroups
ActionsApi list_workspace_users GET /api/v1/actions/workspaces/{workspaceId}/users
ActionsApi manage_attribute_permissions POST /api/v1/actions/workspaces/{workspaceId}/attributes/{attributeId}/managePermissions Manage Permissions for an Attribute
ActionsApi manage_dashboard_permissions POST /api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/managePermissions Manage Permissions for a Dashboard
ActionsApi manage_data_source_permissions POST /api/v1/actions/dataSources/{dataSourceId}/managePermissions Manage Permissions for a Data Source
ActionsApi manage_fact_permissions POST /api/v1/actions/workspaces/{workspaceId}/facts/{factId}/managePermissions Manage Permissions for a Fact
ActionsApi manage_label_permissions POST /api/v1/actions/workspaces/{workspaceId}/labels/{labelId}/managePermissions Manage Permissions for a Label
ActionsApi manage_organization_permissions POST /api/v1/actions/organization/managePermissions Manage Permissions for a Organization
ActionsApi manage_workspace_permissions POST /api/v1/actions/workspaces/{workspaceId}/managePermissions Manage Permissions for a Workspace
ActionsApi mark_as_read_notification POST /api/v1/actions/notifications/{notificationId}/markAsRead Mark notification as read.
ActionsApi mark_as_read_notification_all POST /api/v1/actions/notifications/markAsRead Mark all notifications as read.
ActionsApi memory_created_by_users GET /api/v1/actions/workspaces/{workspaceId}/ai/memory/createdBy Get AI Memory CreatedBy Users
ActionsApi metadata_sync POST /api/v1/actions/workspaces/{workspaceId}/metadataSync (BETA) Sync Metadata to other services
ActionsApi metadata_sync_organization POST /api/v1/actions/organization/metadataSync (BETA) Sync organization scope Metadata to other services
ActionsApi outlier_detection POST /api/v1/actions/workspaces/{workspaceId}/execution/detectOutliers (BETA) Outlier Detection
ActionsApi outlier_detection_result GET /api/v1/actions/workspaces/{workspaceId}/execution/detectOutliers/result/{resultId} (BETA) Outlier Detection Result
ActionsApi overridden_child_entities GET /api/v1/actions/workspaces/{workspaceId}/overriddenChildEntities Finds identifier overrides in workspace hierarchy.
ActionsApi particular_platform_usage POST /api/v1/actions/collectUsage Info about the platform usage for particular items.
ActionsApi pause_organization_automations POST /api/v1/actions/organization/automations/pause Pause selected automations across all workspaces
ActionsApi pause_workspace_automations POST /api/v1/actions/workspaces/{workspaceId}/automations/pause Pause selected automations in the workspace
ActionsApi read_csv_file_manifests POST /api/v1/actions/fileStorage/dataSources/{dataSourceId}/readCsvFileManifests Read CSV file manifests
ActionsApi register_upload_notification POST /api/v1/actions/dataSources/{dataSourceId}/uploadNotification Register an upload notification
ActionsApi register_workspace_upload_notification POST /api/v1/actions/workspaces/{workspaceId}/uploadNotification Register an upload notification
ActionsApi remove_targets POST /api/v1/actions/ipAllowlistPolicies/{id}/removeTargets Remove targets from IP allowlist policy
ActionsApi resolve_all_entitlements GET /api/v1/actions/resolveEntitlements Values for all public entitlements.
ActionsApi resolve_all_settings_without_workspace GET /api/v1/actions/resolveSettings Values for all settings without workspace.
ActionsApi resolve_llm_endpoints GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmEndpoints Get Active LLM Endpoints for this workspace (Removed)
ActionsApi resolve_llm_providers GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders Get Active LLM configuration for this workspace
ActionsApi resolve_requested_entitlements POST /api/v1/actions/resolveEntitlements Values for requested public entitlements.
ActionsApi resolve_settings_without_workspace POST /api/v1/actions/resolveSettings Values for selected settings without workspace.
ActionsApi retrieve_execution_metadata GET /api/v1/actions/workspaces/{workspaceId}/execution/afm/execute/result/{resultId}/metadata Get a single execution result's metadata.
ActionsApi retrieve_result GET /api/v1/actions/workspaces/{workspaceId}/execution/afm/execute/result/{resultId} Get a single execution result
ActionsApi retrieve_result_binary GET /api/v1/actions/workspaces/{workspaceId}/execution/afm/execute/result/{resultId}/binary (BETA) Get a single execution result in Apache Arrow File or Stream format
ActionsApi retrieve_translations POST /api/v1/actions/workspaces/{workspaceId}/translations/retrieve Retrieve translations for entities.
ActionsApi scan_data_source POST /api/v1/actions/dataSources/{dataSourceId}/scan Scan a database to get a physical data model (PDM)
ActionsApi scan_sql POST /api/v1/actions/dataSources/{dataSourceId}/scanSql Collect metadata about SQL query
ActionsApi scan_statistics POST /api/v1/actions/dataSources/{dataSourceId}/scanStatistics (BETA) Collect physical table and column statistics from a StarRocks data source
ActionsApi set_certification POST /api/v1/actions/workspaces/{workspaceId}/setCertification Set Certification
ActionsApi set_translations POST /api/v1/actions/workspaces/{workspaceId}/translations/set Set translations for entities.
ActionsApi staging_upload POST /api/v1/actions/fileStorage/staging/upload Upload a file to the staging area
ActionsApi switch_active_identity_provider POST /api/v1/actions/organization/switchActiveIdentityProvider Switch Active Identity Provider
ActionsApi tags GET /api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/tags Get Analytics Catalog Tags
ActionsApi test_data_source POST /api/v1/actions/dataSources/{dataSourceId}/test Test data source connection by data source id
ActionsApi test_data_source_definition POST /api/v1/actions/dataSource/test Test connection by data source definition
ActionsApi test_existing_notification_channel POST /api/v1/actions/notificationChannels/{notificationChannelId}/test Test existing notification channel.
ActionsApi test_llm_provider POST /api/v1/actions/ai/llmProvider/test Test LLM Provider
ActionsApi test_llm_provider_by_id POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test Test LLM Provider By Id
ActionsApi test_notification_channel POST /api/v1/actions/notificationChannels/test Test notification channel.
ActionsApi trending_objects GET /api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/trendingObjects Get Trending Analytics Catalog Objects
ActionsApi trigger_automation POST /api/v1/actions/workspaces/{workspaceId}/automations/trigger Trigger automation.
ActionsApi trigger_existing_automation POST /api/v1/actions/workspaces/{workspaceId}/automations/{automationId}/trigger Trigger existing automation.
ActionsApi trigger_quality_issues_calculation POST /api/v1/actions/workspaces/{workspaceId}/ai/issues/triggerCheck Trigger Quality Issues Calculation
ActionsApi unpause_organization_automations POST /api/v1/actions/organization/automations/unpause Unpause selected automations across all workspaces
ActionsApi unpause_workspace_automations POST /api/v1/actions/workspaces/{workspaceId}/automations/unpause Unpause selected automations in the workspace
ActionsApi unsubscribe_all_automations DELETE /api/v1/actions/organization/automations/unsubscribe Unsubscribe from all automations in all workspaces
ActionsApi unsubscribe_automation DELETE /api/v1/actions/workspaces/{workspaceId}/automations/{automationId}/unsubscribe Unsubscribe from an automation
ActionsApi unsubscribe_organization_automations POST /api/v1/actions/organization/automations/unsubscribe Unsubscribe from selected automations across all workspaces
ActionsApi unsubscribe_selected_workspace_automations POST /api/v1/actions/workspaces/{workspaceId}/automations/unsubscribe Unsubscribe from selected automations in the workspace
ActionsApi unsubscribe_workspace_automations DELETE /api/v1/actions/workspaces/{workspaceId}/automations/unsubscribe Unsubscribe from all automations in the workspace
ActionsApi validate_llm_endpoint POST /api/v1/actions/ai/llmEndpoint/test Validate LLM Endpoint (Removed)
ActionsApi validate_llm_endpoint_by_id POST /api/v1/actions/ai/llmEndpoint/{llmEndpointId}/test Validate LLM Endpoint By Id (Removed)
ActionsApi workspace_resolve_all_settings GET /api/v1/actions/workspaces/{workspaceId}/resolveSettings Values for all settings.
ActionsApi workspace_resolve_settings POST /api/v1/actions/workspaces/{workspaceId}/resolveSettings Values for selected settings.
AgentControllerApi create_entity_agents POST /api/v1/entities/agents Post Agent entities
AgentControllerApi delete_entity_agents DELETE /api/v1/entities/agents/{id} Delete Agent entity
AgentControllerApi get_all_entities_agents GET /api/v1/entities/agents Get all Agent entities
AgentControllerApi get_entity_agents GET /api/v1/entities/agents/{id} Get Agent entity
AgentControllerApi patch_entity_agents PATCH /api/v1/entities/agents/{id} Patch Agent entity
AgentControllerApi update_entity_agents PUT /api/v1/entities/agents/{id} Put Agent entity
AggregatedFactControllerApi get_all_entities_aggregated_facts GET /api/v1/entities/workspaces/{workspaceId}/aggregatedFacts Get all Aggregated Facts
AggregatedFactControllerApi get_entity_aggregated_facts GET /api/v1/entities/workspaces/{workspaceId}/aggregatedFacts/{objectId} Get an Aggregated Fact
AggregatedFactControllerApi search_entities_aggregated_facts POST /api/v1/entities/workspaces/{workspaceId}/aggregatedFacts/search The search endpoint (beta)
AnalyticalDashboardControllerApi create_entity_analytical_dashboards POST /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards Post Dashboards
AnalyticalDashboardControllerApi delete_entity_analytical_dashboards DELETE /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Delete a Dashboard
AnalyticalDashboardControllerApi get_all_entities_analytical_dashboards GET /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards Get all Dashboards
AnalyticalDashboardControllerApi get_entity_analytical_dashboards GET /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Get a Dashboard
AnalyticalDashboardControllerApi patch_entity_analytical_dashboards PATCH /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Patch a Dashboard
AnalyticalDashboardControllerApi search_entities_analytical_dashboards POST /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/search The search endpoint (beta)
AnalyticalDashboardControllerApi update_entity_analytical_dashboards PUT /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Put Dashboards
ApiTokenControllerApi create_entity_api_tokens POST /api/v1/entities/users/{userId}/apiTokens Post a new API token for the user
ApiTokenControllerApi delete_entity_api_tokens DELETE /api/v1/entities/users/{userId}/apiTokens/{id} Delete an API Token for a user
ApiTokenControllerApi get_all_entities_api_tokens GET /api/v1/entities/users/{userId}/apiTokens List all api tokens for a user
ApiTokenControllerApi get_entity_api_tokens GET /api/v1/entities/users/{userId}/apiTokens/{id} Get an API Token for a user
AttributeControllerApi get_all_entities_attributes GET /api/v1/entities/workspaces/{workspaceId}/attributes Get all Attributes
AttributeControllerApi get_entity_attributes GET /api/v1/entities/workspaces/{workspaceId}/attributes/{objectId} Get an Attribute
AttributeControllerApi patch_entity_attributes PATCH /api/v1/entities/workspaces/{workspaceId}/attributes/{objectId} Patch an Attribute (beta)
AttributeControllerApi search_entities_attributes POST /api/v1/entities/workspaces/{workspaceId}/attributes/search The search endpoint (beta)
AttributeHierarchyControllerApi create_entity_attribute_hierarchies POST /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies Post Attribute Hierarchies
AttributeHierarchyControllerApi delete_entity_attribute_hierarchies DELETE /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Delete an Attribute Hierarchy
AttributeHierarchyControllerApi get_all_entities_attribute_hierarchies GET /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies Get all Attribute Hierarchies
AttributeHierarchyControllerApi get_entity_attribute_hierarchies GET /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Get an Attribute Hierarchy
AttributeHierarchyControllerApi patch_entity_attribute_hierarchies PATCH /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Patch an Attribute Hierarchy
AttributeHierarchyControllerApi search_entities_attribute_hierarchies POST /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/search The search endpoint (beta)
AttributeHierarchyControllerApi update_entity_attribute_hierarchies PUT /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Put an Attribute Hierarchy
AuthenticationApi get_profile GET /api/v1/profile Get Profile
AutomationControllerApi create_entity_automations POST /api/v1/entities/workspaces/{workspaceId}/automations Post Automations
AutomationControllerApi delete_entity_automations DELETE /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Delete an Automation
AutomationControllerApi get_all_entities_automations GET /api/v1/entities/workspaces/{workspaceId}/automations Get all Automations
AutomationControllerApi get_entity_automations GET /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Get an Automation
AutomationControllerApi patch_entity_automations PATCH /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Patch an Automation
AutomationControllerApi search_entities_automations POST /api/v1/entities/workspaces/{workspaceId}/automations/search The search endpoint (beta)
AutomationControllerApi update_entity_automations PUT /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Put an Automation
AutomationOrganizationViewControllerApi get_all_automations_workspace_automations GET /api/v1/entities/organization/workspaceAutomations Get all Automations across all Workspaces
AutomationResultControllerApi search_entities_automation_results POST /api/v1/entities/workspaces/{workspaceId}/automationResults/search The search endpoint (beta)
ColorPaletteControllerApi create_entity_color_palettes POST /api/v1/entities/colorPalettes Post Color Pallettes
ColorPaletteControllerApi delete_entity_color_palettes DELETE /api/v1/entities/colorPalettes/{id} Delete a Color Pallette
ColorPaletteControllerApi get_all_entities_color_palettes GET /api/v1/entities/colorPalettes Get all Color Pallettes
ColorPaletteControllerApi get_entity_color_palettes GET /api/v1/entities/colorPalettes/{id} Get Color Pallette
ColorPaletteControllerApi patch_entity_color_palettes PATCH /api/v1/entities/colorPalettes/{id} Patch Color Pallette
ColorPaletteControllerApi update_entity_color_palettes PUT /api/v1/entities/colorPalettes/{id} Put Color Pallette
CookieSecurityConfigurationControllerApi get_entity_cookie_security_configurations GET /api/v1/entities/admin/cookieSecurityConfigurations/{id} Get CookieSecurityConfiguration
CookieSecurityConfigurationControllerApi patch_entity_cookie_security_configurations PATCH /api/v1/entities/admin/cookieSecurityConfigurations/{id} Patch CookieSecurityConfiguration
CookieSecurityConfigurationControllerApi update_entity_cookie_security_configurations PUT /api/v1/entities/admin/cookieSecurityConfigurations/{id} Put CookieSecurityConfiguration
CspDirectiveControllerApi create_entity_csp_directives POST /api/v1/entities/cspDirectives Post CSP Directives
CspDirectiveControllerApi delete_entity_csp_directives DELETE /api/v1/entities/cspDirectives/{id} Delete CSP Directives
CspDirectiveControllerApi get_all_entities_csp_directives GET /api/v1/entities/cspDirectives Get CSP Directives
CspDirectiveControllerApi get_entity_csp_directives GET /api/v1/entities/cspDirectives/{id} Get CSP Directives
CspDirectiveControllerApi patch_entity_csp_directives PATCH /api/v1/entities/cspDirectives/{id} Patch CSP Directives
CspDirectiveControllerApi update_entity_csp_directives PUT /api/v1/entities/cspDirectives/{id} Put CSP Directives
CustomApplicationSettingControllerApi create_entity_custom_application_settings POST /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings Post Custom Application Settings
CustomApplicationSettingControllerApi delete_entity_custom_application_settings DELETE /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Delete a Custom Application Setting
CustomApplicationSettingControllerApi get_all_entities_custom_application_settings GET /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings Get all Custom Application Settings
CustomApplicationSettingControllerApi get_entity_custom_application_settings GET /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Get a Custom Application Setting
CustomApplicationSettingControllerApi patch_entity_custom_application_settings PATCH /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Patch a Custom Application Setting
CustomApplicationSettingControllerApi search_entities_custom_application_settings POST /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/search The search endpoint (beta)
CustomApplicationSettingControllerApi update_entity_custom_application_settings PUT /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Put a Custom Application Setting
CustomGeoCollectionControllerApi create_entity_custom_geo_collections POST /api/v1/entities/customGeoCollections Post Custom Geo Collections
CustomGeoCollectionControllerApi delete_entity_custom_geo_collections DELETE /api/v1/entities/customGeoCollections/{id} Delete Custom Geo Collection
CustomGeoCollectionControllerApi get_all_entities_custom_geo_collections GET /api/v1/entities/customGeoCollections Get all Custom Geo Collections
CustomGeoCollectionControllerApi get_entity_custom_geo_collections GET /api/v1/entities/customGeoCollections/{id} Get Custom Geo Collection
CustomGeoCollectionControllerApi patch_entity_custom_geo_collections PATCH /api/v1/entities/customGeoCollections/{id} Patch Custom Geo Collection
CustomGeoCollectionControllerApi update_entity_custom_geo_collections PUT /api/v1/entities/customGeoCollections/{id} Put Custom Geo Collection
CustomUserApplicationSettingControllerApi create_entity_custom_user_application_settings POST /api/v1/entities/users/{userId}/customUserApplicationSettings Post a new custom application setting for the user
CustomUserApplicationSettingControllerApi delete_entity_custom_user_application_settings DELETE /api/v1/entities/users/{userId}/customUserApplicationSettings/{id} Delete a custom application setting for a user
CustomUserApplicationSettingControllerApi get_all_entities_custom_user_application_settings GET /api/v1/entities/users/{userId}/customUserApplicationSettings List all custom application settings for a user
CustomUserApplicationSettingControllerApi get_entity_custom_user_application_settings GET /api/v1/entities/users/{userId}/customUserApplicationSettings/{id} Get a custom application setting for a user
CustomUserApplicationSettingControllerApi update_entity_custom_user_application_settings PUT /api/v1/entities/users/{userId}/customUserApplicationSettings/{id} Put a custom application setting for the user
DashboardPluginControllerApi create_entity_dashboard_plugins POST /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins Post Plugins
DashboardPluginControllerApi delete_entity_dashboard_plugins DELETE /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Delete a Plugin
DashboardPluginControllerApi get_all_entities_dashboard_plugins GET /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins Get all Plugins
DashboardPluginControllerApi get_entity_dashboard_plugins GET /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Get a Plugin
DashboardPluginControllerApi patch_entity_dashboard_plugins PATCH /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Patch a Plugin
DashboardPluginControllerApi search_entities_dashboard_plugins POST /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/search The search endpoint (beta)
DashboardPluginControllerApi update_entity_dashboard_plugins PUT /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Put a Plugin
DataSourceControllerApi create_entity_data_sources POST /api/v1/entities/dataSources Post Data Sources
DataSourceControllerApi delete_entity_data_sources DELETE /api/v1/entities/dataSources/{id} Delete Data Source entity
DataSourceControllerApi get_all_entities_data_sources GET /api/v1/entities/dataSources Get Data Source entities
DataSourceControllerApi get_entity_data_sources GET /api/v1/entities/dataSources/{id} Get Data Source entity
DataSourceControllerApi patch_entity_data_sources PATCH /api/v1/entities/dataSources/{id} Patch Data Source entity
DataSourceControllerApi update_entity_data_sources PUT /api/v1/entities/dataSources/{id} Put Data Source entity
DataSourceIdentifierControllerApi get_all_entities_data_source_identifiers GET /api/v1/entities/dataSourceIdentifiers Get all Data Source Identifiers
DataSourceIdentifierControllerApi get_entity_data_source_identifiers GET /api/v1/entities/dataSourceIdentifiers/{id} Get Data Source Identifier
DatasetControllerApi get_all_entities_datasets GET /api/v1/entities/workspaces/{workspaceId}/datasets Get all Datasets
DatasetControllerApi get_entity_datasets GET /api/v1/entities/workspaces/{workspaceId}/datasets/{objectId} Get a Dataset
DatasetControllerApi patch_entity_datasets PATCH /api/v1/entities/workspaces/{workspaceId}/datasets/{objectId} Patch a Dataset (beta)
DatasetControllerApi search_entities_datasets POST /api/v1/entities/workspaces/{workspaceId}/datasets/search The search endpoint (beta)
EntitiesApi create_entity POST /api/v1/entities/llmEndpoints Post LLM endpoint entities (Removed)
EntitiesApi create_entity_agents POST /api/v1/entities/agents Post Agent entities
EntitiesApi create_entity_analytical_dashboards POST /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards Post Dashboards
EntitiesApi create_entity_api_tokens POST /api/v1/entities/users/{userId}/apiTokens Post a new API token for the user
EntitiesApi create_entity_attribute_hierarchies POST /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies Post Attribute Hierarchies
EntitiesApi create_entity_automations POST /api/v1/entities/workspaces/{workspaceId}/automations Post Automations
EntitiesApi create_entity_color_palettes POST /api/v1/entities/colorPalettes Post Color Pallettes
EntitiesApi create_entity_csp_directives POST /api/v1/entities/cspDirectives Post CSP Directives
EntitiesApi create_entity_custom_application_settings POST /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings Post Custom Application Settings
EntitiesApi create_entity_custom_geo_collections POST /api/v1/entities/customGeoCollections Post Custom Geo Collections
EntitiesApi create_entity_custom_user_application_settings POST /api/v1/entities/users/{userId}/customUserApplicationSettings Post a new custom application setting for the user
EntitiesApi create_entity_dashboard_plugins POST /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins Post Plugins
EntitiesApi create_entity_data_sources POST /api/v1/entities/dataSources Post Data Sources
EntitiesApi create_entity_export_definitions POST /api/v1/entities/workspaces/{workspaceId}/exportDefinitions Post Export Definitions
EntitiesApi create_entity_export_templates POST /api/v1/entities/exportTemplates Post Export Template entities
EntitiesApi create_entity_filter_contexts POST /api/v1/entities/workspaces/{workspaceId}/filterContexts Post Filter Context
EntitiesApi create_entity_filter_views POST /api/v1/entities/workspaces/{workspaceId}/filterViews Post Filter views
EntitiesApi create_entity_identity_providers POST /api/v1/entities/identityProviders Post Identity Providers
EntitiesApi create_entity_ip_allowlist_policies POST /api/v1/entities/ipAllowlistPolicies Post IpAllowlistPolicy entities
EntitiesApi create_entity_jwks POST /api/v1/entities/jwks Post Jwks
EntitiesApi create_entity_knowledge_recommendations POST /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations Post Knowledge Recommendations
EntitiesApi create_entity_llm_providers POST /api/v1/entities/llmProviders Post LLM Provider entities
EntitiesApi create_entity_memory_items POST /api/v1/entities/workspaces/{workspaceId}/memoryItems Post Memory Items
EntitiesApi create_entity_metrics POST /api/v1/entities/workspaces/{workspaceId}/metrics Post Metrics
EntitiesApi create_entity_notification_channels POST /api/v1/entities/notificationChannels Post Notification Channel entities
EntitiesApi create_entity_organization_settings POST /api/v1/entities/organizationSettings Post Organization Setting entities
EntitiesApi create_entity_parameters POST /api/v1/entities/workspaces/{workspaceId}/parameters Post Parameters
EntitiesApi create_entity_themes POST /api/v1/entities/themes Post Theming
EntitiesApi create_entity_user_data_filters POST /api/v1/entities/workspaces/{workspaceId}/userDataFilters Post User Data Filters
EntitiesApi create_entity_user_groups POST /api/v1/entities/userGroups Post User Group entities
EntitiesApi create_entity_user_settings POST /api/v1/entities/users/{userId}/userSettings Post new user settings for the user
EntitiesApi create_entity_users POST /api/v1/entities/users Post User entities
EntitiesApi create_entity_visualization_objects POST /api/v1/entities/workspaces/{workspaceId}/visualizationObjects Post Visualization Objects
EntitiesApi create_entity_workspace_data_filter_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings Post Settings for Workspace Data Filters
EntitiesApi create_entity_workspace_data_filters POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters Post Workspace Data Filters
EntitiesApi create_entity_workspace_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceSettings Post Settings for Workspaces
EntitiesApi create_entity_workspaces POST /api/v1/entities/workspaces Post Workspace entities
EntitiesApi delete_entity DELETE /api/v1/entities/llmEndpoints/{id} Delete LLM endpoint entity (Removed)
EntitiesApi delete_entity_agents DELETE /api/v1/entities/agents/{id} Delete Agent entity
EntitiesApi delete_entity_analytical_dashboards DELETE /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Delete a Dashboard
EntitiesApi delete_entity_api_tokens DELETE /api/v1/entities/users/{userId}/apiTokens/{id} Delete an API Token for a user
EntitiesApi delete_entity_attribute_hierarchies DELETE /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Delete an Attribute Hierarchy
EntitiesApi delete_entity_automations DELETE /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Delete an Automation
EntitiesApi delete_entity_color_palettes DELETE /api/v1/entities/colorPalettes/{id} Delete a Color Pallette
EntitiesApi delete_entity_csp_directives DELETE /api/v1/entities/cspDirectives/{id} Delete CSP Directives
EntitiesApi delete_entity_custom_application_settings DELETE /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Delete a Custom Application Setting
EntitiesApi delete_entity_custom_geo_collections DELETE /api/v1/entities/customGeoCollections/{id} Delete Custom Geo Collection
EntitiesApi delete_entity_custom_user_application_settings DELETE /api/v1/entities/users/{userId}/customUserApplicationSettings/{id} Delete a custom application setting for a user
EntitiesApi delete_entity_dashboard_plugins DELETE /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Delete a Plugin
EntitiesApi delete_entity_data_sources DELETE /api/v1/entities/dataSources/{id} Delete Data Source entity
EntitiesApi delete_entity_export_definitions DELETE /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Delete an Export Definition
EntitiesApi delete_entity_export_templates DELETE /api/v1/entities/exportTemplates/{id} Delete Export Template entity
EntitiesApi delete_entity_filter_contexts DELETE /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Delete a Filter Context
EntitiesApi delete_entity_filter_views DELETE /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Delete Filter view
EntitiesApi delete_entity_identity_providers DELETE /api/v1/entities/identityProviders/{id} Delete Identity Provider
EntitiesApi delete_entity_ip_allowlist_policies DELETE /api/v1/entities/ipAllowlistPolicies/{id} Delete IpAllowlistPolicy entity
EntitiesApi delete_entity_jwks DELETE /api/v1/entities/jwks/{id} Delete Jwk
EntitiesApi delete_entity_knowledge_recommendations DELETE /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Delete a Knowledge Recommendation
EntitiesApi delete_entity_llm_providers DELETE /api/v1/entities/llmProviders/{id} Delete LLM Provider entity
EntitiesApi delete_entity_memory_items DELETE /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Delete a Memory Item
EntitiesApi delete_entity_metrics DELETE /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Delete a Metric
EntitiesApi delete_entity_notification_channels DELETE /api/v1/entities/notificationChannels/{id} Delete Notification Channel entity
EntitiesApi delete_entity_organization_settings DELETE /api/v1/entities/organizationSettings/{id} Delete Organization Setting entity
EntitiesApi delete_entity_parameters DELETE /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Delete a Parameter
EntitiesApi delete_entity_themes DELETE /api/v1/entities/themes/{id} Delete Theming
EntitiesApi delete_entity_user_data_filters DELETE /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Delete a User Data Filter
EntitiesApi delete_entity_user_groups DELETE /api/v1/entities/userGroups/{id} Delete UserGroup entity
EntitiesApi delete_entity_user_settings DELETE /api/v1/entities/users/{userId}/userSettings/{id} Delete a setting for a user
EntitiesApi delete_entity_users DELETE /api/v1/entities/users/{id} Delete User entity
EntitiesApi delete_entity_visualization_objects DELETE /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Delete a Visualization Object
EntitiesApi delete_entity_workspace_data_filter_settings DELETE /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Delete a Settings for Workspace Data Filter
EntitiesApi delete_entity_workspace_data_filters DELETE /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Delete a Workspace Data Filter
EntitiesApi delete_entity_workspace_settings DELETE /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Delete a Setting for Workspace
EntitiesApi delete_entity_workspaces DELETE /api/v1/entities/workspaces/{id} Delete Workspace entity
EntitiesApi get_all_automations_workspace_automations GET /api/v1/entities/organization/workspaceAutomations Get all Automations across all Workspaces
EntitiesApi get_all_entities GET /api/v1/entities/llmEndpoints Get all LLM endpoint entities (Removed)
EntitiesApi get_all_entities_agents GET /api/v1/entities/agents Get all Agent entities
EntitiesApi get_all_entities_aggregated_facts GET /api/v1/entities/workspaces/{workspaceId}/aggregatedFacts Get all Aggregated Facts
EntitiesApi get_all_entities_analytical_dashboards GET /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards Get all Dashboards
EntitiesApi get_all_entities_api_tokens GET /api/v1/entities/users/{userId}/apiTokens List all api tokens for a user
EntitiesApi get_all_entities_attribute_hierarchies GET /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies Get all Attribute Hierarchies
EntitiesApi get_all_entities_attributes GET /api/v1/entities/workspaces/{workspaceId}/attributes Get all Attributes
EntitiesApi get_all_entities_automations GET /api/v1/entities/workspaces/{workspaceId}/automations Get all Automations
EntitiesApi get_all_entities_color_palettes GET /api/v1/entities/colorPalettes Get all Color Pallettes
EntitiesApi get_all_entities_csp_directives GET /api/v1/entities/cspDirectives Get CSP Directives
EntitiesApi get_all_entities_custom_application_settings GET /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings Get all Custom Application Settings
EntitiesApi get_all_entities_custom_geo_collections GET /api/v1/entities/customGeoCollections Get all Custom Geo Collections
EntitiesApi get_all_entities_custom_user_application_settings GET /api/v1/entities/users/{userId}/customUserApplicationSettings List all custom application settings for a user
EntitiesApi get_all_entities_dashboard_plugins GET /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins Get all Plugins
EntitiesApi get_all_entities_data_source_identifiers GET /api/v1/entities/dataSourceIdentifiers Get all Data Source Identifiers
EntitiesApi get_all_entities_data_sources GET /api/v1/entities/dataSources Get Data Source entities
EntitiesApi get_all_entities_datasets GET /api/v1/entities/workspaces/{workspaceId}/datasets Get all Datasets
EntitiesApi get_all_entities_entitlements GET /api/v1/entities/entitlements Get Entitlements
EntitiesApi get_all_entities_export_definitions GET /api/v1/entities/workspaces/{workspaceId}/exportDefinitions Get all Export Definitions
EntitiesApi get_all_entities_export_templates GET /api/v1/entities/exportTemplates GET all Export Template entities
EntitiesApi get_all_entities_facts GET /api/v1/entities/workspaces/{workspaceId}/facts Get all Facts
EntitiesApi get_all_entities_filter_contexts GET /api/v1/entities/workspaces/{workspaceId}/filterContexts Get all Filter Context
EntitiesApi get_all_entities_filter_views GET /api/v1/entities/workspaces/{workspaceId}/filterViews Get all Filter views
EntitiesApi get_all_entities_identity_providers GET /api/v1/entities/identityProviders Get all Identity Providers
EntitiesApi get_all_entities_ip_allowlist_policies GET /api/v1/entities/ipAllowlistPolicies Get all IpAllowlistPolicy entities
EntitiesApi get_all_entities_jwks GET /api/v1/entities/jwks Get all Jwks
EntitiesApi get_all_entities_knowledge_recommendations GET /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations Get all Knowledge Recommendations
EntitiesApi get_all_entities_labels GET /api/v1/entities/workspaces/{workspaceId}/labels Get all Labels
EntitiesApi get_all_entities_llm_providers GET /api/v1/entities/llmProviders Get all LLM Provider entities
EntitiesApi get_all_entities_memory_items GET /api/v1/entities/workspaces/{workspaceId}/memoryItems Get all Memory Items
EntitiesApi get_all_entities_metrics GET /api/v1/entities/workspaces/{workspaceId}/metrics Get all Metrics
EntitiesApi get_all_entities_notification_channel_identifiers GET /api/v1/entities/notificationChannelIdentifiers Get all Notification Channel Identifier entities
EntitiesApi get_all_entities_notification_channels GET /api/v1/entities/notificationChannels Get all Notification Channel entities
EntitiesApi get_all_entities_organization_settings GET /api/v1/entities/organizationSettings Get Organization Setting entities
EntitiesApi get_all_entities_parameters GET /api/v1/entities/workspaces/{workspaceId}/parameters Get all Parameters
EntitiesApi get_all_entities_themes GET /api/v1/entities/themes Get all Theming entities
EntitiesApi get_all_entities_user_data_filters GET /api/v1/entities/workspaces/{workspaceId}/userDataFilters Get all User Data Filters
EntitiesApi get_all_entities_user_groups GET /api/v1/entities/userGroups Get UserGroup entities
EntitiesApi get_all_entities_user_identifiers GET /api/v1/entities/userIdentifiers Get UserIdentifier entities
EntitiesApi get_all_entities_user_settings GET /api/v1/entities/users/{userId}/userSettings List all settings for a user
EntitiesApi get_all_entities_users GET /api/v1/entities/users Get User entities
EntitiesApi get_all_entities_visualization_objects GET /api/v1/entities/workspaces/{workspaceId}/visualizationObjects Get all Visualization Objects
EntitiesApi get_all_entities_workspace_data_filter_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings Get all Settings for Workspace Data Filters
EntitiesApi get_all_entities_workspace_data_filters GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters Get all Workspace Data Filters
EntitiesApi get_all_entities_workspace_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceSettings Get all Setting for Workspaces
EntitiesApi get_all_entities_workspaces GET /api/v1/entities/workspaces Get Workspace entities
EntitiesApi get_all_options GET /api/v1/options Links for all configuration options
EntitiesApi get_data_source_drivers GET /api/v1/options/availableDrivers Get all available data source drivers
EntitiesApi get_entity GET /api/v1/entities/llmEndpoints/{id} Get LLM endpoint entity (Removed)
EntitiesApi get_entity_agents GET /api/v1/entities/agents/{id} Get Agent entity
EntitiesApi get_entity_aggregated_facts GET /api/v1/entities/workspaces/{workspaceId}/aggregatedFacts/{objectId} Get an Aggregated Fact
EntitiesApi get_entity_analytical_dashboards GET /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Get a Dashboard
EntitiesApi get_entity_api_tokens GET /api/v1/entities/users/{userId}/apiTokens/{id} Get an API Token for a user
EntitiesApi get_entity_attribute_hierarchies GET /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Get an Attribute Hierarchy
EntitiesApi get_entity_attributes GET /api/v1/entities/workspaces/{workspaceId}/attributes/{objectId} Get an Attribute
EntitiesApi get_entity_automations GET /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Get an Automation
EntitiesApi get_entity_color_palettes GET /api/v1/entities/colorPalettes/{id} Get Color Pallette
EntitiesApi get_entity_cookie_security_configurations GET /api/v1/entities/admin/cookieSecurityConfigurations/{id} Get CookieSecurityConfiguration
EntitiesApi get_entity_csp_directives GET /api/v1/entities/cspDirectives/{id} Get CSP Directives
EntitiesApi get_entity_custom_application_settings GET /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Get a Custom Application Setting
EntitiesApi get_entity_custom_geo_collections GET /api/v1/entities/customGeoCollections/{id} Get Custom Geo Collection
EntitiesApi get_entity_custom_user_application_settings GET /api/v1/entities/users/{userId}/customUserApplicationSettings/{id} Get a custom application setting for a user
EntitiesApi get_entity_dashboard_plugins GET /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Get a Plugin
EntitiesApi get_entity_data_source_identifiers GET /api/v1/entities/dataSourceIdentifiers/{id} Get Data Source Identifier
EntitiesApi get_entity_data_sources GET /api/v1/entities/dataSources/{id} Get Data Source entity
EntitiesApi get_entity_datasets GET /api/v1/entities/workspaces/{workspaceId}/datasets/{objectId} Get a Dataset
EntitiesApi get_entity_entitlements GET /api/v1/entities/entitlements/{id} Get Entitlement entity
EntitiesApi get_entity_export_definitions GET /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Get an Export Definition
EntitiesApi get_entity_export_templates GET /api/v1/entities/exportTemplates/{id} GET Export Template entity
EntitiesApi get_entity_facts GET /api/v1/entities/workspaces/{workspaceId}/facts/{objectId} Get a Fact
EntitiesApi get_entity_filter_contexts GET /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Get a Filter Context
EntitiesApi get_entity_filter_views GET /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Get Filter view
EntitiesApi get_entity_identity_providers GET /api/v1/entities/identityProviders/{id} Get Identity Provider
EntitiesApi get_entity_ip_allowlist_policies GET /api/v1/entities/ipAllowlistPolicies/{id} Get IpAllowlistPolicy entity
EntitiesApi get_entity_jwks GET /api/v1/entities/jwks/{id} Get Jwk
EntitiesApi get_entity_knowledge_recommendations GET /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Get a Knowledge Recommendation
EntitiesApi get_entity_labels GET /api/v1/entities/workspaces/{workspaceId}/labels/{objectId} Get a Label
EntitiesApi get_entity_llm_providers GET /api/v1/entities/llmProviders/{id} Get LLM Provider entity
EntitiesApi get_entity_memory_items GET /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Get a Memory Item
EntitiesApi get_entity_metrics GET /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Get a Metric
EntitiesApi get_entity_notification_channel_identifiers GET /api/v1/entities/notificationChannelIdentifiers/{id} Get Notification Channel Identifier entity
EntitiesApi get_entity_notification_channels GET /api/v1/entities/notificationChannels/{id} Get Notification Channel entity
EntitiesApi get_entity_organization_settings GET /api/v1/entities/organizationSettings/{id} Get Organization Setting entity
EntitiesApi get_entity_organizations GET /api/v1/entities/admin/organizations/{id} Get Organizations
EntitiesApi get_entity_parameters GET /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Get a Parameter
EntitiesApi get_entity_themes GET /api/v1/entities/themes/{id} Get Theming
EntitiesApi get_entity_user_data_filters GET /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Get a User Data Filter
EntitiesApi get_entity_user_groups GET /api/v1/entities/userGroups/{id} Get UserGroup entity
EntitiesApi get_entity_user_identifiers GET /api/v1/entities/userIdentifiers/{id} Get UserIdentifier entity
EntitiesApi get_entity_user_settings GET /api/v1/entities/users/{userId}/userSettings/{id} Get a setting for a user
EntitiesApi get_entity_users GET /api/v1/entities/users/{id} Get User entity
EntitiesApi get_entity_visualization_objects GET /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Get a Visualization Object
EntitiesApi get_entity_workspace_data_filter_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Get a Setting for Workspace Data Filter
EntitiesApi get_entity_workspace_data_filters GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Get a Workspace Data Filter
EntitiesApi get_entity_workspace_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Get a Setting for Workspace
EntitiesApi get_entity_workspaces GET /api/v1/entities/workspaces/{id} Get Workspace entity
EntitiesApi get_organization GET /api/v1/entities/organization Get current organization info
EntitiesApi patch_entity PATCH /api/v1/entities/llmEndpoints/{id} Patch LLM endpoint entity (Removed)
EntitiesApi patch_entity_agents PATCH /api/v1/entities/agents/{id} Patch Agent entity
EntitiesApi patch_entity_analytical_dashboards PATCH /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Patch a Dashboard
EntitiesApi patch_entity_attribute_hierarchies PATCH /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Patch an Attribute Hierarchy
EntitiesApi patch_entity_attributes PATCH /api/v1/entities/workspaces/{workspaceId}/attributes/{objectId} Patch an Attribute (beta)
EntitiesApi patch_entity_automations PATCH /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Patch an Automation
EntitiesApi patch_entity_color_palettes PATCH /api/v1/entities/colorPalettes/{id} Patch Color Pallette
EntitiesApi patch_entity_cookie_security_configurations PATCH /api/v1/entities/admin/cookieSecurityConfigurations/{id} Patch CookieSecurityConfiguration
EntitiesApi patch_entity_csp_directives PATCH /api/v1/entities/cspDirectives/{id} Patch CSP Directives
EntitiesApi patch_entity_custom_application_settings PATCH /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Patch a Custom Application Setting
EntitiesApi patch_entity_custom_geo_collections PATCH /api/v1/entities/customGeoCollections/{id} Patch Custom Geo Collection
EntitiesApi patch_entity_dashboard_plugins PATCH /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Patch a Plugin
EntitiesApi patch_entity_data_sources PATCH /api/v1/entities/dataSources/{id} Patch Data Source entity
EntitiesApi patch_entity_datasets PATCH /api/v1/entities/workspaces/{workspaceId}/datasets/{objectId} Patch a Dataset (beta)
EntitiesApi patch_entity_export_definitions PATCH /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Patch an Export Definition
EntitiesApi patch_entity_export_templates PATCH /api/v1/entities/exportTemplates/{id} Patch Export Template entity
EntitiesApi patch_entity_facts PATCH /api/v1/entities/workspaces/{workspaceId}/facts/{objectId} Patch a Fact (beta)
EntitiesApi patch_entity_filter_contexts PATCH /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Patch a Filter Context
EntitiesApi patch_entity_filter_views PATCH /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Patch Filter view
EntitiesApi patch_entity_identity_providers PATCH /api/v1/entities/identityProviders/{id} Patch Identity Provider
EntitiesApi patch_entity_jwks PATCH /api/v1/entities/jwks/{id} Patch Jwk
EntitiesApi patch_entity_knowledge_recommendations PATCH /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Patch a Knowledge Recommendation
EntitiesApi patch_entity_labels PATCH /api/v1/entities/workspaces/{workspaceId}/labels/{objectId} Patch a Label (beta)
EntitiesApi patch_entity_llm_providers PATCH /api/v1/entities/llmProviders/{id} Patch LLM Provider entity
EntitiesApi patch_entity_memory_items PATCH /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Patch a Memory Item
EntitiesApi patch_entity_metrics PATCH /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Patch a Metric
EntitiesApi patch_entity_notification_channels PATCH /api/v1/entities/notificationChannels/{id} Patch Notification Channel entity
EntitiesApi patch_entity_organization_settings PATCH /api/v1/entities/organizationSettings/{id} Patch Organization Setting entity
EntitiesApi patch_entity_organizations PATCH /api/v1/entities/admin/organizations/{id} Patch Organization
EntitiesApi patch_entity_parameters PATCH /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Patch a Parameter
EntitiesApi patch_entity_themes PATCH /api/v1/entities/themes/{id} Patch Theming
EntitiesApi patch_entity_user_data_filters PATCH /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Patch a User Data Filter
EntitiesApi patch_entity_user_groups PATCH /api/v1/entities/userGroups/{id} Patch UserGroup entity
EntitiesApi patch_entity_users PATCH /api/v1/entities/users/{id} Patch User entity
EntitiesApi patch_entity_visualization_objects PATCH /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Patch a Visualization Object
EntitiesApi patch_entity_workspace_data_filter_settings PATCH /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Patch a Settings for Workspace Data Filter
EntitiesApi patch_entity_workspace_data_filters PATCH /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Patch a Workspace Data Filter
EntitiesApi patch_entity_workspace_settings PATCH /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Patch a Setting for Workspace
EntitiesApi patch_entity_workspaces PATCH /api/v1/entities/workspaces/{id} Patch Workspace entity
EntitiesApi search_entities_aggregated_facts POST /api/v1/entities/workspaces/{workspaceId}/aggregatedFacts/search The search endpoint (beta)
EntitiesApi search_entities_analytical_dashboards POST /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/search The search endpoint (beta)
EntitiesApi search_entities_attribute_hierarchies POST /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/search The search endpoint (beta)
EntitiesApi search_entities_attributes POST /api/v1/entities/workspaces/{workspaceId}/attributes/search The search endpoint (beta)
EntitiesApi search_entities_automation_results POST /api/v1/entities/workspaces/{workspaceId}/automationResults/search The search endpoint (beta)
EntitiesApi search_entities_automations POST /api/v1/entities/workspaces/{workspaceId}/automations/search The search endpoint (beta)
EntitiesApi search_entities_custom_application_settings POST /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/search The search endpoint (beta)
EntitiesApi search_entities_dashboard_plugins POST /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/search The search endpoint (beta)
EntitiesApi search_entities_datasets POST /api/v1/entities/workspaces/{workspaceId}/datasets/search The search endpoint (beta)
EntitiesApi search_entities_export_definitions POST /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/search The search endpoint (beta)
EntitiesApi search_entities_facts POST /api/v1/entities/workspaces/{workspaceId}/facts/search The search endpoint (beta)
EntitiesApi search_entities_filter_contexts POST /api/v1/entities/workspaces/{workspaceId}/filterContexts/search The search endpoint (beta)
EntitiesApi search_entities_filter_views POST /api/v1/entities/workspaces/{workspaceId}/filterViews/search The search endpoint (beta)
EntitiesApi search_entities_knowledge_recommendations POST /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/search The search endpoint (beta)
EntitiesApi search_entities_labels POST /api/v1/entities/workspaces/{workspaceId}/labels/search The search endpoint (beta)
EntitiesApi search_entities_memory_items POST /api/v1/entities/workspaces/{workspaceId}/memoryItems/search The search endpoint (beta)
EntitiesApi search_entities_metrics POST /api/v1/entities/workspaces/{workspaceId}/metrics/search The search endpoint (beta)
EntitiesApi search_entities_parameters POST /api/v1/entities/workspaces/{workspaceId}/parameters/search The search endpoint (beta)
EntitiesApi search_entities_user_data_filters POST /api/v1/entities/workspaces/{workspaceId}/userDataFilters/search The search endpoint (beta)
EntitiesApi search_entities_visualization_objects POST /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/search The search endpoint (beta)
EntitiesApi search_entities_workspace_data_filter_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/search The search endpoint (beta)
EntitiesApi search_entities_workspace_data_filters POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/search The search endpoint (beta)
EntitiesApi search_entities_workspace_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/search The search endpoint (beta)
EntitiesApi update_entity PUT /api/v1/entities/llmEndpoints/{id} PUT LLM endpoint entity (Removed)
EntitiesApi update_entity_agents PUT /api/v1/entities/agents/{id} Put Agent entity
EntitiesApi update_entity_analytical_dashboards PUT /api/v1/entities/workspaces/{workspaceId}/analyticalDashboards/{objectId} Put Dashboards
EntitiesApi update_entity_attribute_hierarchies PUT /api/v1/entities/workspaces/{workspaceId}/attributeHierarchies/{objectId} Put an Attribute Hierarchy
EntitiesApi update_entity_automations PUT /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} Put an Automation
EntitiesApi update_entity_color_palettes PUT /api/v1/entities/colorPalettes/{id} Put Color Pallette
EntitiesApi update_entity_cookie_security_configurations PUT /api/v1/entities/admin/cookieSecurityConfigurations/{id} Put CookieSecurityConfiguration
EntitiesApi update_entity_csp_directives PUT /api/v1/entities/cspDirectives/{id} Put CSP Directives
EntitiesApi update_entity_custom_application_settings PUT /api/v1/entities/workspaces/{workspaceId}/customApplicationSettings/{objectId} Put a Custom Application Setting
EntitiesApi update_entity_custom_geo_collections PUT /api/v1/entities/customGeoCollections/{id} Put Custom Geo Collection
EntitiesApi update_entity_custom_user_application_settings PUT /api/v1/entities/users/{userId}/customUserApplicationSettings/{id} Put a custom application setting for the user
EntitiesApi update_entity_dashboard_plugins PUT /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} Put a Plugin
EntitiesApi update_entity_data_sources PUT /api/v1/entities/dataSources/{id} Put Data Source entity
EntitiesApi update_entity_export_definitions PUT /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Put an Export Definition
EntitiesApi update_entity_export_templates PUT /api/v1/entities/exportTemplates/{id} PUT Export Template entity
EntitiesApi update_entity_filter_contexts PUT /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Put a Filter Context
EntitiesApi update_entity_filter_views PUT /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Put Filter views
EntitiesApi update_entity_identity_providers PUT /api/v1/entities/identityProviders/{id} Put Identity Provider
EntitiesApi update_entity_ip_allowlist_policies PUT /api/v1/entities/ipAllowlistPolicies/{id} Put IpAllowlistPolicy entity
EntitiesApi update_entity_jwks PUT /api/v1/entities/jwks/{id} Put Jwk
EntitiesApi update_entity_knowledge_recommendations PUT /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Put a Knowledge Recommendation
EntitiesApi update_entity_llm_providers PUT /api/v1/entities/llmProviders/{id} PUT LLM Provider entity
EntitiesApi update_entity_memory_items PUT /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Put a Memory Item
EntitiesApi update_entity_metrics PUT /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Put a Metric
EntitiesApi update_entity_notification_channels PUT /api/v1/entities/notificationChannels/{id} Put Notification Channel entity
EntitiesApi update_entity_organization_settings PUT /api/v1/entities/organizationSettings/{id} Put Organization Setting entity
EntitiesApi update_entity_organizations PUT /api/v1/entities/admin/organizations/{id} Put Organization
EntitiesApi update_entity_parameters PUT /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Put a Parameter
EntitiesApi update_entity_themes PUT /api/v1/entities/themes/{id} Put Theming
EntitiesApi update_entity_user_data_filters PUT /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Put a User Data Filter
EntitiesApi update_entity_user_groups PUT /api/v1/entities/userGroups/{id} Put UserGroup entity
EntitiesApi update_entity_user_settings PUT /api/v1/entities/users/{userId}/userSettings/{id} Put new user settings for the user
EntitiesApi update_entity_users PUT /api/v1/entities/users/{id} Put User entity
EntitiesApi update_entity_visualization_objects PUT /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Put a Visualization Object
EntitiesApi update_entity_workspace_data_filter_settings PUT /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Put a Settings for Workspace Data Filter
EntitiesApi update_entity_workspace_data_filters PUT /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Put a Workspace Data Filter
EntitiesApi update_entity_workspace_settings PUT /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Put a Setting for a Workspace
EntitiesApi update_entity_workspaces PUT /api/v1/entities/workspaces/{id} Put Workspace entity
EntitlementEntityControllerApi get_all_entities_entitlements GET /api/v1/entities/entitlements Get Entitlements
EntitlementEntityControllerApi get_entity_entitlements GET /api/v1/entities/entitlements/{id} Get Entitlement entity
ExportDefinitionControllerApi create_entity_export_definitions POST /api/v1/entities/workspaces/{workspaceId}/exportDefinitions Post Export Definitions
ExportDefinitionControllerApi delete_entity_export_definitions DELETE /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Delete an Export Definition
ExportDefinitionControllerApi get_all_entities_export_definitions GET /api/v1/entities/workspaces/{workspaceId}/exportDefinitions Get all Export Definitions
ExportDefinitionControllerApi get_entity_export_definitions GET /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Get an Export Definition
ExportDefinitionControllerApi patch_entity_export_definitions PATCH /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Patch an Export Definition
ExportDefinitionControllerApi search_entities_export_definitions POST /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/search The search endpoint (beta)
ExportDefinitionControllerApi update_entity_export_definitions PUT /api/v1/entities/workspaces/{workspaceId}/exportDefinitions/{objectId} Put an Export Definition
ExportTemplateControllerApi create_entity_export_templates POST /api/v1/entities/exportTemplates Post Export Template entities
ExportTemplateControllerApi delete_entity_export_templates DELETE /api/v1/entities/exportTemplates/{id} Delete Export Template entity
ExportTemplateControllerApi get_all_entities_export_templates GET /api/v1/entities/exportTemplates GET all Export Template entities
ExportTemplateControllerApi get_entity_export_templates GET /api/v1/entities/exportTemplates/{id} GET Export Template entity
ExportTemplateControllerApi patch_entity_export_templates PATCH /api/v1/entities/exportTemplates/{id} Patch Export Template entity
ExportTemplateControllerApi update_entity_export_templates PUT /api/v1/entities/exportTemplates/{id} PUT Export Template entity
FactControllerApi get_all_entities_facts GET /api/v1/entities/workspaces/{workspaceId}/facts Get all Facts
FactControllerApi get_entity_facts GET /api/v1/entities/workspaces/{workspaceId}/facts/{objectId} Get a Fact
FactControllerApi patch_entity_facts PATCH /api/v1/entities/workspaces/{workspaceId}/facts/{objectId} Patch a Fact (beta)
FactControllerApi search_entities_facts POST /api/v1/entities/workspaces/{workspaceId}/facts/search The search endpoint (beta)
FilterContextControllerApi create_entity_filter_contexts POST /api/v1/entities/workspaces/{workspaceId}/filterContexts Post Filter Context
FilterContextControllerApi delete_entity_filter_contexts DELETE /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Delete a Filter Context
FilterContextControllerApi get_all_entities_filter_contexts GET /api/v1/entities/workspaces/{workspaceId}/filterContexts Get all Filter Context
FilterContextControllerApi get_entity_filter_contexts GET /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Get a Filter Context
FilterContextControllerApi patch_entity_filter_contexts PATCH /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Patch a Filter Context
FilterContextControllerApi search_entities_filter_contexts POST /api/v1/entities/workspaces/{workspaceId}/filterContexts/search The search endpoint (beta)
FilterContextControllerApi update_entity_filter_contexts PUT /api/v1/entities/workspaces/{workspaceId}/filterContexts/{objectId} Put a Filter Context
FilterViewControllerApi create_entity_filter_views POST /api/v1/entities/workspaces/{workspaceId}/filterViews Post Filter views
FilterViewControllerApi delete_entity_filter_views DELETE /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Delete Filter view
FilterViewControllerApi get_all_entities_filter_views GET /api/v1/entities/workspaces/{workspaceId}/filterViews Get all Filter views
FilterViewControllerApi get_entity_filter_views GET /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Get Filter view
FilterViewControllerApi patch_entity_filter_views PATCH /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Patch Filter view
FilterViewControllerApi search_entities_filter_views POST /api/v1/entities/workspaces/{workspaceId}/filterViews/search The search endpoint (beta)
FilterViewControllerApi update_entity_filter_views PUT /api/v1/entities/workspaces/{workspaceId}/filterViews/{objectId} Put Filter views
IdentityProviderControllerApi create_entity_identity_providers POST /api/v1/entities/identityProviders Post Identity Providers
IdentityProviderControllerApi delete_entity_identity_providers DELETE /api/v1/entities/identityProviders/{id} Delete Identity Provider
IdentityProviderControllerApi get_all_entities_identity_providers GET /api/v1/entities/identityProviders Get all Identity Providers
IdentityProviderControllerApi get_entity_identity_providers GET /api/v1/entities/identityProviders/{id} Get Identity Provider
IdentityProviderControllerApi patch_entity_identity_providers PATCH /api/v1/entities/identityProviders/{id} Patch Identity Provider
IdentityProviderControllerApi update_entity_identity_providers PUT /api/v1/entities/identityProviders/{id} Put Identity Provider
IpAllowlistPolicyControllerApi create_entity_ip_allowlist_policies POST /api/v1/entities/ipAllowlistPolicies Post IpAllowlistPolicy entities
IpAllowlistPolicyControllerApi delete_entity_ip_allowlist_policies DELETE /api/v1/entities/ipAllowlistPolicies/{id} Delete IpAllowlistPolicy entity
IpAllowlistPolicyControllerApi get_all_entities_ip_allowlist_policies GET /api/v1/entities/ipAllowlistPolicies Get all IpAllowlistPolicy entities
IpAllowlistPolicyControllerApi get_entity_ip_allowlist_policies GET /api/v1/entities/ipAllowlistPolicies/{id} Get IpAllowlistPolicy entity
IpAllowlistPolicyControllerApi update_entity_ip_allowlist_policies PUT /api/v1/entities/ipAllowlistPolicies/{id} Put IpAllowlistPolicy entity
JwkControllerApi create_entity_jwks POST /api/v1/entities/jwks Post Jwks
JwkControllerApi delete_entity_jwks DELETE /api/v1/entities/jwks/{id} Delete Jwk
JwkControllerApi get_all_entities_jwks GET /api/v1/entities/jwks Get all Jwks
JwkControllerApi get_entity_jwks GET /api/v1/entities/jwks/{id} Get Jwk
JwkControllerApi patch_entity_jwks PATCH /api/v1/entities/jwks/{id} Patch Jwk
JwkControllerApi update_entity_jwks PUT /api/v1/entities/jwks/{id} Put Jwk
KnowledgeRecommendationControllerApi create_entity_knowledge_recommendations POST /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations Post Knowledge Recommendations
KnowledgeRecommendationControllerApi delete_entity_knowledge_recommendations DELETE /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Delete a Knowledge Recommendation
KnowledgeRecommendationControllerApi get_all_entities_knowledge_recommendations GET /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations Get all Knowledge Recommendations
KnowledgeRecommendationControllerApi get_entity_knowledge_recommendations GET /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Get a Knowledge Recommendation
KnowledgeRecommendationControllerApi patch_entity_knowledge_recommendations PATCH /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Patch a Knowledge Recommendation
KnowledgeRecommendationControllerApi search_entities_knowledge_recommendations POST /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/search The search endpoint (beta)
KnowledgeRecommendationControllerApi update_entity_knowledge_recommendations PUT /api/v1/entities/workspaces/{workspaceId}/knowledgeRecommendations/{objectId} Put a Knowledge Recommendation
LabelControllerApi get_all_entities_labels GET /api/v1/entities/workspaces/{workspaceId}/labels Get all Labels
LabelControllerApi get_entity_labels GET /api/v1/entities/workspaces/{workspaceId}/labels/{objectId} Get a Label
LabelControllerApi patch_entity_labels PATCH /api/v1/entities/workspaces/{workspaceId}/labels/{objectId} Patch a Label (beta)
LabelControllerApi search_entities_labels POST /api/v1/entities/workspaces/{workspaceId}/labels/search The search endpoint (beta)
LayoutApi delete_data_source_statistics DELETE /api/v1/layout/dataSources/{dataSourceId}/statistics (BETA) Delete stored physical statistics for a data source
LayoutApi get_agents_layout GET /api/v1/layout/agents Get all AI agent configurations layout
LayoutApi get_analytics_model GET /api/v1/layout/workspaces/{workspaceId}/analyticsModel Get analytics model
LayoutApi get_automations GET /api/v1/layout/workspaces/{workspaceId}/automations Get automations
LayoutApi get_custom_geo_collections_layout GET /api/v1/layout/customGeoCollections Get all custom geo collections layout
LayoutApi get_data_source_permissions GET /api/v1/layout/dataSources/{dataSourceId}/permissions Get permissions for the data source
LayoutApi get_data_source_statistics GET /api/v1/layout/dataSources/{dataSourceId}/statistics (BETA) Retrieve stored physical statistics for a data source
LayoutApi get_data_sources_layout GET /api/v1/layout/dataSources Get all data sources
LayoutApi get_export_templates_layout GET /api/v1/layout/exportTemplates Get all export templates layout
LayoutApi get_filter_views GET /api/v1/layout/workspaces/{workspaceId}/filterViews Get filter views
LayoutApi get_identity_providers_layout GET /api/v1/layout/identityProviders Get all identity providers layout
LayoutApi get_logical_model GET /api/v1/layout/workspaces/{workspaceId}/logicalModel Get logical model
LayoutApi get_notification_channels_layout GET /api/v1/layout/notificationChannels Get all notification channels layout
LayoutApi get_organization_layout GET /api/v1/layout/organization Get organization layout
LayoutApi get_organization_permissions GET /api/v1/layout/organization/permissions Get organization permissions
LayoutApi get_user_data_filters GET /api/v1/layout/workspaces/{workspaceId}/userDataFilters Get user data filters
LayoutApi get_user_group_permissions GET /api/v1/layout/userGroups/{userGroupId}/permissions Get permissions for the user-group
LayoutApi get_user_groups_layout GET /api/v1/layout/userGroups Get all user groups
LayoutApi get_user_permissions GET /api/v1/layout/users/{userId}/permissions Get permissions for the user
LayoutApi get_users_layout GET /api/v1/layout/users Get all users
LayoutApi get_users_user_groups_layout GET /api/v1/layout/usersAndUserGroups Get all users and user groups
LayoutApi get_workspace_data_filters_layout GET /api/v1/layout/workspaceDataFilters Get workspace data filters for all workspaces
LayoutApi get_workspace_layout GET /api/v1/layout/workspaces/{workspaceId} Get workspace layout
LayoutApi get_workspace_permissions GET /api/v1/layout/workspaces/{workspaceId}/permissions Get permissions for the workspace
LayoutApi get_workspaces_layout GET /api/v1/layout/workspaces Get all workspaces layout
LayoutApi put_data_source_statistics PUT /api/v1/layout/dataSources/{dataSourceId}/statistics (BETA) Store physical table and column statistics for a data source
LayoutApi put_data_sources_layout PUT /api/v1/layout/dataSources Put all data sources
LayoutApi put_user_groups_layout PUT /api/v1/layout/userGroups Put all user groups
LayoutApi put_users_layout PUT /api/v1/layout/users Put all users
LayoutApi put_users_user_groups_layout PUT /api/v1/layout/usersAndUserGroups Put all users and user groups
LayoutApi put_workspace_layout PUT /api/v1/layout/workspaces/{workspaceId} Set workspace layout
LayoutApi set_agents_layout PUT /api/v1/layout/agents Set all AI agent configurations
LayoutApi set_analytics_model PUT /api/v1/layout/workspaces/{workspaceId}/analyticsModel Set analytics model
LayoutApi set_automations PUT /api/v1/layout/workspaces/{workspaceId}/automations Set automations
LayoutApi set_custom_geo_collections PUT /api/v1/layout/customGeoCollections Set all custom geo collections
LayoutApi set_data_source_permissions PUT /api/v1/layout/dataSources/{dataSourceId}/permissions Set data source permissions.
LayoutApi set_export_templates PUT /api/v1/layout/exportTemplates Set all export templates
LayoutApi set_filter_views PUT /api/v1/layout/workspaces/{workspaceId}/filterViews Set filter views
LayoutApi set_identity_providers PUT /api/v1/layout/identityProviders Set all identity providers
LayoutApi set_logical_model PUT /api/v1/layout/workspaces/{workspaceId}/logicalModel Set logical model
LayoutApi set_notification_channels PUT /api/v1/layout/notificationChannels Set all notification channels
LayoutApi set_organization_layout PUT /api/v1/layout/organization Set organization layout
LayoutApi set_organization_permissions PUT /api/v1/layout/organization/permissions Set organization permissions
LayoutApi set_user_data_filters PUT /api/v1/layout/workspaces/{workspaceId}/userDataFilters Set user data filters
LayoutApi set_user_group_permissions PUT /api/v1/layout/userGroups/{userGroupId}/permissions Set permissions for the user-group
LayoutApi set_user_permissions PUT /api/v1/layout/users/{userId}/permissions Set permissions for the user
LayoutApi set_workspace_data_filters_layout PUT /api/v1/layout/workspaceDataFilters Set all workspace data filters
LayoutApi set_workspace_permissions PUT /api/v1/layout/workspaces/{workspaceId}/permissions Set permissions for the workspace
LayoutApi set_workspaces_layout PUT /api/v1/layout/workspaces Set all workspaces layout
LlmProviderControllerApi create_entity_llm_providers POST /api/v1/entities/llmProviders Post LLM Provider entities
LlmProviderControllerApi delete_entity_llm_providers DELETE /api/v1/entities/llmProviders/{id} Delete LLM Provider entity
LlmProviderControllerApi get_all_entities_llm_providers GET /api/v1/entities/llmProviders Get all LLM Provider entities
LlmProviderControllerApi get_entity_llm_providers GET /api/v1/entities/llmProviders/{id} Get LLM Provider entity
LlmProviderControllerApi patch_entity_llm_providers PATCH /api/v1/entities/llmProviders/{id} Patch LLM Provider entity
LlmProviderControllerApi update_entity_llm_providers PUT /api/v1/entities/llmProviders/{id} PUT LLM Provider entity
MemoryItemControllerApi create_entity_memory_items POST /api/v1/entities/workspaces/{workspaceId}/memoryItems Post Memory Items
MemoryItemControllerApi delete_entity_memory_items DELETE /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Delete a Memory Item
MemoryItemControllerApi get_all_entities_memory_items GET /api/v1/entities/workspaces/{workspaceId}/memoryItems Get all Memory Items
MemoryItemControllerApi get_entity_memory_items GET /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Get a Memory Item
MemoryItemControllerApi patch_entity_memory_items PATCH /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Patch a Memory Item
MemoryItemControllerApi search_entities_memory_items POST /api/v1/entities/workspaces/{workspaceId}/memoryItems/search The search endpoint (beta)
MemoryItemControllerApi update_entity_memory_items PUT /api/v1/entities/workspaces/{workspaceId}/memoryItems/{objectId} Put a Memory Item
MetricControllerApi create_entity_metrics POST /api/v1/entities/workspaces/{workspaceId}/metrics Post Metrics
MetricControllerApi delete_entity_metrics DELETE /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Delete a Metric
MetricControllerApi get_all_entities_metrics GET /api/v1/entities/workspaces/{workspaceId}/metrics Get all Metrics
MetricControllerApi get_entity_metrics GET /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Get a Metric
MetricControllerApi patch_entity_metrics PATCH /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Patch a Metric
MetricControllerApi search_entities_metrics POST /api/v1/entities/workspaces/{workspaceId}/metrics/search The search endpoint (beta)
MetricControllerApi update_entity_metrics PUT /api/v1/entities/workspaces/{workspaceId}/metrics/{objectId} Put a Metric
NotificationChannelControllerApi create_entity_notification_channels POST /api/v1/entities/notificationChannels Post Notification Channel entities
NotificationChannelControllerApi delete_entity_notification_channels DELETE /api/v1/entities/notificationChannels/{id} Delete Notification Channel entity
NotificationChannelControllerApi get_all_entities_notification_channels GET /api/v1/entities/notificationChannels Get all Notification Channel entities
NotificationChannelControllerApi get_entity_notification_channels GET /api/v1/entities/notificationChannels/{id} Get Notification Channel entity
NotificationChannelControllerApi patch_entity_notification_channels PATCH /api/v1/entities/notificationChannels/{id} Patch Notification Channel entity
NotificationChannelControllerApi update_entity_notification_channels PUT /api/v1/entities/notificationChannels/{id} Put Notification Channel entity
NotificationChannelIdentifierControllerApi get_all_entities_notification_channel_identifiers GET /api/v1/entities/notificationChannelIdentifiers Get all Notification Channel Identifier entities
NotificationChannelIdentifierControllerApi get_entity_notification_channel_identifiers GET /api/v1/entities/notificationChannelIdentifiers/{id} Get Notification Channel Identifier entity
OrganizationEntityControllerApi get_entity_organizations GET /api/v1/entities/admin/organizations/{id} Get Organizations
OrganizationEntityControllerApi patch_entity_organizations PATCH /api/v1/entities/admin/organizations/{id} Patch Organization
OrganizationEntityControllerApi update_entity_organizations PUT /api/v1/entities/admin/organizations/{id} Put Organization
OrganizationSettingControllerApi create_entity_organization_settings POST /api/v1/entities/organizationSettings Post Organization Setting entities
OrganizationSettingControllerApi delete_entity_organization_settings DELETE /api/v1/entities/organizationSettings/{id} Delete Organization Setting entity
OrganizationSettingControllerApi get_all_entities_organization_settings GET /api/v1/entities/organizationSettings Get Organization Setting entities
OrganizationSettingControllerApi get_entity_organization_settings GET /api/v1/entities/organizationSettings/{id} Get Organization Setting entity
OrganizationSettingControllerApi patch_entity_organization_settings PATCH /api/v1/entities/organizationSettings/{id} Patch Organization Setting entity
OrganizationSettingControllerApi update_entity_organization_settings PUT /api/v1/entities/organizationSettings/{id} Put Organization Setting entity
ParameterControllerApi create_entity_parameters POST /api/v1/entities/workspaces/{workspaceId}/parameters Post Parameters
ParameterControllerApi delete_entity_parameters DELETE /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Delete a Parameter
ParameterControllerApi get_all_entities_parameters GET /api/v1/entities/workspaces/{workspaceId}/parameters Get all Parameters
ParameterControllerApi get_entity_parameters GET /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Get a Parameter
ParameterControllerApi patch_entity_parameters PATCH /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Patch a Parameter
ParameterControllerApi search_entities_parameters POST /api/v1/entities/workspaces/{workspaceId}/parameters/search The search endpoint (beta)
ParameterControllerApi update_entity_parameters PUT /api/v1/entities/workspaces/{workspaceId}/parameters/{objectId} Put a Parameter
ThemeControllerApi create_entity_themes POST /api/v1/entities/themes Post Theming
ThemeControllerApi delete_entity_themes DELETE /api/v1/entities/themes/{id} Delete Theming
ThemeControllerApi get_all_entities_themes GET /api/v1/entities/themes Get all Theming entities
ThemeControllerApi get_entity_themes GET /api/v1/entities/themes/{id} Get Theming
ThemeControllerApi patch_entity_themes PATCH /api/v1/entities/themes/{id} Patch Theming
ThemeControllerApi update_entity_themes PUT /api/v1/entities/themes/{id} Put Theming
UserControllerApi create_entity_users POST /api/v1/entities/users Post User entities
UserControllerApi delete_entity_users DELETE /api/v1/entities/users/{id} Delete User entity
UserControllerApi get_all_entities_users GET /api/v1/entities/users Get User entities
UserControllerApi get_entity_users GET /api/v1/entities/users/{id} Get User entity
UserControllerApi patch_entity_users PATCH /api/v1/entities/users/{id} Patch User entity
UserControllerApi update_entity_users PUT /api/v1/entities/users/{id} Put User entity
UserDataFilterControllerApi create_entity_user_data_filters POST /api/v1/entities/workspaces/{workspaceId}/userDataFilters Post User Data Filters
UserDataFilterControllerApi delete_entity_user_data_filters DELETE /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Delete a User Data Filter
UserDataFilterControllerApi get_all_entities_user_data_filters GET /api/v1/entities/workspaces/{workspaceId}/userDataFilters Get all User Data Filters
UserDataFilterControllerApi get_entity_user_data_filters GET /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Get a User Data Filter
UserDataFilterControllerApi patch_entity_user_data_filters PATCH /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Patch a User Data Filter
UserDataFilterControllerApi search_entities_user_data_filters POST /api/v1/entities/workspaces/{workspaceId}/userDataFilters/search The search endpoint (beta)
UserDataFilterControllerApi update_entity_user_data_filters PUT /api/v1/entities/workspaces/{workspaceId}/userDataFilters/{objectId} Put a User Data Filter
UserGroupControllerApi create_entity_user_groups POST /api/v1/entities/userGroups Post User Group entities
UserGroupControllerApi delete_entity_user_groups DELETE /api/v1/entities/userGroups/{id} Delete UserGroup entity
UserGroupControllerApi get_all_entities_user_groups GET /api/v1/entities/userGroups Get UserGroup entities
UserGroupControllerApi get_entity_user_groups GET /api/v1/entities/userGroups/{id} Get UserGroup entity
UserGroupControllerApi patch_entity_user_groups PATCH /api/v1/entities/userGroups/{id} Patch UserGroup entity
UserGroupControllerApi update_entity_user_groups PUT /api/v1/entities/userGroups/{id} Put UserGroup entity
UserIdentifierControllerApi get_all_entities_user_identifiers GET /api/v1/entities/userIdentifiers Get UserIdentifier entities
UserIdentifierControllerApi get_entity_user_identifiers GET /api/v1/entities/userIdentifiers/{id} Get UserIdentifier entity
UserSettingControllerApi create_entity_user_settings POST /api/v1/entities/users/{userId}/userSettings Post new user settings for the user
UserSettingControllerApi delete_entity_user_settings DELETE /api/v1/entities/users/{userId}/userSettings/{id} Delete a setting for a user
UserSettingControllerApi get_all_entities_user_settings GET /api/v1/entities/users/{userId}/userSettings List all settings for a user
UserSettingControllerApi get_entity_user_settings GET /api/v1/entities/users/{userId}/userSettings/{id} Get a setting for a user
UserSettingControllerApi update_entity_user_settings PUT /api/v1/entities/users/{userId}/userSettings/{id} Put new user settings for the user
VisualizationObjectControllerApi create_entity_visualization_objects POST /api/v1/entities/workspaces/{workspaceId}/visualizationObjects Post Visualization Objects
VisualizationObjectControllerApi delete_entity_visualization_objects DELETE /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Delete a Visualization Object
VisualizationObjectControllerApi get_all_entities_visualization_objects GET /api/v1/entities/workspaces/{workspaceId}/visualizationObjects Get all Visualization Objects
VisualizationObjectControllerApi get_entity_visualization_objects GET /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Get a Visualization Object
VisualizationObjectControllerApi patch_entity_visualization_objects PATCH /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Patch a Visualization Object
VisualizationObjectControllerApi search_entities_visualization_objects POST /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/search The search endpoint (beta)
VisualizationObjectControllerApi update_entity_visualization_objects PUT /api/v1/entities/workspaces/{workspaceId}/visualizationObjects/{objectId} Put a Visualization Object
WorkspaceControllerApi create_entity_workspaces POST /api/v1/entities/workspaces Post Workspace entities
WorkspaceControllerApi delete_entity_workspaces DELETE /api/v1/entities/workspaces/{id} Delete Workspace entity
WorkspaceControllerApi get_all_entities_workspaces GET /api/v1/entities/workspaces Get Workspace entities
WorkspaceControllerApi get_entity_workspaces GET /api/v1/entities/workspaces/{id} Get Workspace entity
WorkspaceControllerApi patch_entity_workspaces PATCH /api/v1/entities/workspaces/{id} Patch Workspace entity
WorkspaceControllerApi update_entity_workspaces PUT /api/v1/entities/workspaces/{id} Put Workspace entity
WorkspaceDataFilterControllerApi create_entity_workspace_data_filters POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters Post Workspace Data Filters
WorkspaceDataFilterControllerApi delete_entity_workspace_data_filters DELETE /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Delete a Workspace Data Filter
WorkspaceDataFilterControllerApi get_all_entities_workspace_data_filters GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters Get all Workspace Data Filters
WorkspaceDataFilterControllerApi get_entity_workspace_data_filters GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Get a Workspace Data Filter
WorkspaceDataFilterControllerApi patch_entity_workspace_data_filters PATCH /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Patch a Workspace Data Filter
WorkspaceDataFilterControllerApi search_entities_workspace_data_filters POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/search The search endpoint (beta)
WorkspaceDataFilterControllerApi update_entity_workspace_data_filters PUT /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilters/{objectId} Put a Workspace Data Filter
WorkspaceDataFilterSettingControllerApi create_entity_workspace_data_filter_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings Post Settings for Workspace Data Filters
WorkspaceDataFilterSettingControllerApi delete_entity_workspace_data_filter_settings DELETE /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Delete a Settings for Workspace Data Filter
WorkspaceDataFilterSettingControllerApi get_all_entities_workspace_data_filter_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings Get all Settings for Workspace Data Filters
WorkspaceDataFilterSettingControllerApi get_entity_workspace_data_filter_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Get a Setting for Workspace Data Filter
WorkspaceDataFilterSettingControllerApi patch_entity_workspace_data_filter_settings PATCH /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Patch a Settings for Workspace Data Filter
WorkspaceDataFilterSettingControllerApi search_entities_workspace_data_filter_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/search The search endpoint (beta)
WorkspaceDataFilterSettingControllerApi update_entity_workspace_data_filter_settings PUT /api/v1/entities/workspaces/{workspaceId}/workspaceDataFilterSettings/{objectId} Put a Settings for Workspace Data Filter
WorkspaceSettingControllerApi create_entity_workspace_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceSettings Post Settings for Workspaces
WorkspaceSettingControllerApi delete_entity_workspace_settings DELETE /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Delete a Setting for Workspace
WorkspaceSettingControllerApi get_all_entities_workspace_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceSettings Get all Setting for Workspaces
WorkspaceSettingControllerApi get_entity_workspace_settings GET /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Get a Setting for Workspace
WorkspaceSettingControllerApi patch_entity_workspace_settings PATCH /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Patch a Setting for Workspace
WorkspaceSettingControllerApi search_entities_workspace_settings POST /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/search The search endpoint (beta)
WorkspaceSettingControllerApi update_entity_workspace_settings PUT /api/v1/entities/workspaces/{workspaceId}/workspaceSettings/{objectId} Put a Setting for a Workspace

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Author

[email protected]

Notes for Large OpenAPI documents

If the OpenAPI document is large, imports in gooddata_api_client.apis and gooddata_api_client.models may fail with a RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:

Solution 1: Use specific imports for apis and models like:

  • from gooddata_api_client.api.default_api import DefaultApi
  • from gooddata_api_client.model.pet import Pet

Solution 2: Before importing the package, adjust the maximum recursion limit as shown below:

import sys
sys.setrecursionlimit(1500)
import gooddata_api_client
from gooddata_api_client.apis import *
from gooddata_api_client.models import *