Get Workspace Settings
GET/api/workspaces/:id/settings/
Returns the workspace app version settings.
Request
Path Parameters
A unique integer value identifying this workspace.
Responses
- 200
- 401
- 403
- 404
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Specifies whether the app version makes use of the PrivilegedAPI to bypass user management restrictions.
Welcome text to be displayed on the workspace dashboard.
sdk_version
object
required
Specifies the VIKTOR SDK version with which the app version was built.
Possible values: non-empty
The complete version of the SDK.
The major version of the SDK.
The minor version of the SDK.
The patch version of the SDK.
Possible values: non-empty
Specifies the pre-release version name. In case of stable release, this value is null.
Shows the application type. It can be one of tree,simple,editor
required_oauth2_integrations
object[]
Possible values: non-empty and <= 256 characters
A unique name for this OAuth2 integration within the organization
Possible values: [generic, aps, databricks]
The type of identity provider (Generic, APS, or Databricks)
created_by
object
The user that created the integration.
Possible values: non-empty
Possible values: non-empty
Possible values: non-empty
{
"uses_privileged_api": true,
"welcome_text": "string",
"sdk_version": {
"complete": "string",
"major": 0,
"minor": 0,
"patch": 0,
"pre": "string"
},
"app_type": "string",
"required_oauth2_integrations": [
{
"id": 0,
"name": "string",
"identity_provider": "generic",
"created_by": {
"id": 0,
"name": "string",
"first_name": "string",
"last_name": "string",
"email": "user@example.com"
}
}
]
}
No authentication found or authentication is not correct.
Specified path is not allowed
Permission evaluation:
Is Authenticated AND Is Not App AND Workspace Permission
Descriptions:
Is Authenticated : Allows access only to authenticated users.
Workspace Permission : Checks whether the user has access rights to the workspace.
Is Not App : Client must not be a VIKTOR app.
Workspace does not exist.