Create New Cube
POST/org/:orgId/project/:projectId/cube/create
Create a new Cube by specifying the Organization ID and Project ID where it should be added.
Request
Path Parameters
orgId stringrequired
ID of the organization where you want to create a cube
projectId stringrequired
ID of the project where you want to create a cube
Query Parameters
name stringrequired
Name for the new cube
description stringrequired
Description for the new cube
inclusive-access stringrequired
true / false
- application/json
Body
required
any
Responses
- 200
- 401
- 404
- 500
Success.
- application/json
- Schema
- Example (from schema)
- Example
Schema
any
{
"status": {
"i18n_message": "response.ok",
"message": "OK"
},
"response": {
"id": "a97bf0d8-e04a-4336-4fdc-ed1fda53f949",
"name": "My new cube",
"properties": {
"description": "My new cube created via API call",
"caption": "My new Cube",
"visible": true
}
}
}
{
"status": {
"i18n_message": "response.ok",
"message": "OK"
},
"response": {
"id": "a97bf0d8-e04a-4336-4fdc-ed1fda53f949",
"name": "My new cube",
"properties": {
"description": "My new cube created via API call",
"caption": "My new Cube",
"visible": true
}
}
}
This error will occur if calling user does not have access right for the API.
This error will occur if the org identified by orgId does not exist.
A server error occurred. Check the logs for more details.
Loading...