Bulk Create Jedox Elements
jedox_bulk_create_elementsCreate multiple elements in a Jedox dimension in a single call. Supports numeric, string, or consolidated types with up to 500 elements per batch.
Instructions
Create multiple elements in a Jedox dimension at once.
Use this for efficiently populating a dimension with many members. For consolidated elements with children, use jedox_create_element individually.
Args:
database_id: Numeric ID of the database
dimension_id: Numeric ID of the dimension
elements: Array of { name, type } — max 500 per call
type: "numeric" (default), "string", or "consolidated"
Returns: { created: N, failed: [{ name, error }], elements: [{ id, name, typeLabel }] }
For large lists (>500), call this tool multiple times with batches.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database_id | Yes | ||
| dimension_id | Yes | ||
| elements | Yes | List of elements to create. Maximum 500 per call. |