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
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
{
"uses_privileged_api": true,
"welcome_text": "string",
"sdk_version": {
"complete": "string",
"major": 0,
"minor": 0,
"patch": 0,
"pre": "string"
},
"app_type": "string"
}
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:
Workspace Permission
: Checks whether the user has permission to the workspace object.
Is Authenticated
: Allows access only to authenticated users.
Is Not App
: Client must not be a VIKTOR app.
Workspace does not exist.