Create a new Editor Session
POST/api/workspaces/:workspace_id/entities/:id/session/
Create an editor session for the corresponding entity.
Request
Path Parameters
workspace_id stringrequired
id integerrequired
A unique integer value identifying this entity.
Responses
- 200
- 401
- 403
- application/json
- Schema
- Example (from schema)
Schema
editor_session uuidrequired
The uuid reserved for this Session.
{
"editor_session": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
No authentication found or authentication is not correct.
Specified path is not allowed
Permission evaluation:
((Is Authenticated Organization Admin OR Workspace Context Permission) OR Public Permission) AND Is Not App
Descriptions:
Is Authenticated Organization Admin
: User must be an Organization Admin.
Public Permission
: Checks corresponding workspace is public.
Workspace Context Permission
: Workspace must be available to the User.
Is Not App
: Client must not be a VIKTOR app.
Loading...