GetWorkspaceFunctionality
Get workspace available functions
Description
Obtains the features available in the specified workspace.
Method
GET
Request URL Format
/api/v0/workspaces/:workspace-id/functionality
URL Params
workspace-id Specifies the workspace ID to be acquired
Query Params
None
Request URL Sample
GET https://api.xxx.com/api/v0/workspaces/58ca3597cce5fe3ea0a42fa8/functionality
Response Sample
{
"w_id": "5fca3878aa39557110839cfc", // Workspace ID
"ws_functions": {
"use_create_workspace": 2, // Permission to create new workspaces (0: Cannot create new 1: Only workspace administrators can create 2: All users can create)
"use_password_policy": true, // Availability of password policy
"use_global_search": true, // Availability of full-text search
"use_beta": false // Enabling Beta Features
},
"app_functions": {
"use_create_application": true, // New Application Creation Enable/Disable
"use_queries": true, // Availability of frequently used lists
"use_reports": true, // Data report can be set up or not
"use_dashboards": true // Availability of dashboard settings
}
}