Get Jedox Cell Value
jedox_get_cell_valueRetrieve a single cell value from a Jedox cube by specifying the database, cube, and an ordered path of element names per dimension.
Instructions
Read a single cell value from a Jedox cube.
Args:
database_id: Numeric ID of the database
cube_id: Numeric ID of the cube
path: Array of element names, one per dimension in cube order. IMPORTANT: Use jedox_get_cube first to confirm dimension order. Example for a cube with dimensions [Accounts, Periods, Regions]: path = ["Revenue", "Jan 2025", "North"]
Returns: { path, value, type }
type: "numeric" or "string"
value: number or string
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database_id | Yes | ||
| cube_id | Yes | ||
| path | Yes | One element name per cube dimension, in the exact order the cube was created. Use jedox_get_cube to confirm dimension order. |