DimensionResponseDtoSuccessResultResponse
correlationIdstring<uuid>
A unique ID of the request
Example:
fb0ccbbc-62bc-447f-a47e-02b490e25690isSuccessboolean
Indication of whether the request was successfull
result object
Response model for Dimension entity.
externalDimensionIdstringrequired
The unique identifier of the dimension from your ERP system. Is expected to be unique within the company.
Example:
45externalDimensionNamestringnullable
The name of the dimension
Example:
Cost Centeridstring<uuid>
The unique kaunt identifier of the dimension
Example:
227aebd0-36a4-4d17-b96d-c5b5d071abd4isBlockedboolean
Indicator for if accounting is allowed on the dimension
Example:
falsedimensionTypestring
Enum representing the type of dimension.
Possible values: [DependentDimension, IndependentDimension]
Example:
DependentDimensiondimensionValues object[]nullable
A list of dimension values associated with the dimension.
Array [
externalDimensionValueIdstringnullable
Identifier of the dimension value in your ERP system. Is expected to be unique within the company.
Example:
Assurance01externalDimensionValueNamestringnullable
Name of the dimension value in your ERP system.
Example:
Assurance-155idstring<uuid>
Unique identifier of the DimensionValue.
Example:
13131313-5717-4562-b3fc-2c963f66afa6isBlockedboolean
Indicator for if accounting is allowed on the DimensionValue
]
DimensionResponseDtoSuccessResultResponse
{
"correlationId": "fb0ccbbc-62bc-447f-a47e-02b490e25690",
"isSuccess": true,
"result": {
"externalDimensionId": "45",
"externalDimensionName": "Cost Center",
"id": "227aebd0-36a4-4d17-b96d-c5b5d071abd4",
"isBlocked": false,
"dimensionType": "DependentDimension",
"dimensionValues": [
{
"externalDimensionValueId": "Assurance01",
"externalDimensionValueName": "Assurance-155",
"id": "13131313-5717-4562-b3fc-2c963f66afa6",
"isBlocked": true
}
]
}
}