Retrieve a workspace.
Retrieve a workspace.
Path Parameters
- organization_id integer required
ID of the workspace
Responses
- 200
- 401
- 403
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
- id integer
The ID of the workspace.
- name string
The name of the workspace
- description string
the description of the workspace
- created date-time
creation date
- is_beta boolean
if the workspace has beta features
- is_read_only boolean
if the workspace is read-only
{
"id": 5,
"name": "My first workspace",
"description": "This is my first workspace to test wonderful models",
"created": "2023-11-02",
"is_beta": true,
"is_read_only": true
}
User is not authenticated. This means token is either not present or invalid
User does not have the minimal required organization role "USER"
No workspace was found that corresponds to the ID sent
Something is wrong with the API.
Loading...