Common examples include
Warehouse
, Department
, or Project
.Each dimension can be associated with one or more
dimensionTags
, which define the actual values used in entry allocations.
This feature is currently under development and, although not available in the current version, its preliminary documentation is provided to give you a preview of the enhancements that will be included in an upcoming update.
HTTP | Operation | Type | Object |
---|---|---|---|
Query | dimensions |
Warehouse
, Department
, or Project
.dimensionTags
, which define the actual values used in entry allocations.
query {
dimensions {
id
code
name
description
isActive
creationDate
modificationDate
}
}
Example Response
{
"data": {
"dimensions": [
{
"id": "f501e055-1b21-4adf-89e6-9d2e00dfe001",
"code": "WAREHOUSE",
"name": "Warehouse",
"description": "Main warehouses in use",
"isActive": true,
"creationDate": "2025-06-01T10:23:00Z",
"modificationDate": "2025-06-05T08:12:30Z"
},
{
"id": "a512e422-9e31-4f88-bb7c-7d7e00fdf002",
"code": "DEPARTMENT",
"name": "Department",
"description": "Organizational departments",
"isActive": true,
"creationDate": "2025-06-01T10:24:00Z",
"modificationDate": "2025-06-06T09:30:00Z"
}
]
}
}
Key | Value |
---|---|
Authorization |
Bearer Current access Token How to find? |
X-TenantId |
Current tenant id How to find? |
X-OrganizationId |
Current organization Id How to find? |
x-api-key |
Primary or secondary subscription key of your app How to find? |
Fields | Type | Description | Length |
---|---|---|---|
id |
UUID | Id | |
creationDate |
DateTime | Creation Date | |
modificationDate |
DateTime | Modification Date | |
code |
String | Code of the dimension (unique) | 20 |
name |
String | Display name | 50 |
description |
String | Optional description | 255 |
isActive |
Boolean | Whether the dimension is active |