Create Jedox Cube
jedox_create_cubeCreate a cube in a Jedox database by specifying its name and ordered dimension IDs. The dimension order sets axis sequence for cell operations. Save the database afterward to persist.
Instructions
Create a new cube in a Jedox database by specifying which dimensions it spans.
Args:
database_id: Numeric ID of the database
name: Name for the cube
dimension_ids: Ordered array of dimension IDs (from jedox_list_dimensions). IMPORTANT: The order you specify here is permanent and determines the axis sequence. When calling jedox_get_cell_value / jedox_set_cell_value, the 'path' array must follow this same dimension order.
Returns: { id, name, dimensionIds } Call jedox_save_database afterwards to persist the structural change.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database_id | Yes | ||
| name | Yes | Name for the new cube. | |
| dimension_ids | Yes | Ordered list of dimension IDs that define the cube axes. Order matters — it determines the dimension sequence when reading/writing cells. |