PostingGroupProposalDto
Invoice Posting Group Proposal DTO model.
List of invoiceLineNumbers that are part of the posting group proposal
["1"]Zero-based indexes of the invoice lines that are part of the posting group proposal. The index corresponds to the index of the invoice line in the invoice. Because invoice line numbers are not guaranteed to be unique or present. The index can be used as a reference to the invoice lines.
[0]postingTextProposals object[]
List of posting text proposals for the posting group
Text of the proposal
FreightPriority index indicating the priority of the proposal.The lowest number indicates the highest priority.
1dimensionCombinationProposal object
DTO representing a proposal for a combination of dimension values.
The confidence level for the entire combination of dimensions. This represents the confidence that all dimensions in the combination are correct together.
Possible values: [Low, Medium, High]
Priority index indicating the priority of the proposal. The lowest number indicates the highest priority.
1dimensionsWithValues object[]
The dimensions with their corresponding values in the proposal.
The unique identifier of the dimension in your ERP system. Is expected to be unique within the company.
Assurance-155Name of the dimension
AssuranceThe unique identifier of the specific value for this dimension. Is expected to be unique within the company.
Assurance01The name for the dimension value
Assurance dimensionThe confidence level for this individual dimension value. This can differ from the confidence of the entire dimension combination.
Possible values: [Low, Medium, High]
HighTotal amount on the posting group not including VAT
324The total VAT amount on the posting group
81Total amount on the posting group including VAT
405The type of the posting group (posting or residual).
Possible values: [Posting, Residual]
Postingaccrual object[]
List of accrual proposals for the posting group.
The confidence level of the accrual proposal.
Possible values: [Low, Medium, High]
HighIndicates whether the posting group has an accrual. It is possible that HasAccrual is true even though the accrual details are not fully specified.
trueThe accrual code for the posting group.
1234The start date of the accrual period.
2025-01-01The end date of the accrual period.
2026-03-31{
"invoiceLineNumbers": [
"1"
],
"invoiceLineIndexes": [
0
],
"postingTextProposals": [
{
"text": "Freight",
"proposalPriority": 1
}
],
"dimensionCombinationProposal": {
"confidence": "Low",
"proposalPriority": 1,
"dimensionsWithValues": [
{
"externalDimensionId": "Assurance-155",
"externalDimensionName": "Assurance",
"externalDimensionValueId": "Assurance01",
"externalDimensionValueName": "Assurance dimension",
"confidence": "High"
}
]
},
"amountExVat": 324,
"vatAmount": 81,
"amountInclVat": 405,
"type": "Posting",
"accrual": [
{
"confidence": "High",
"hasAccrual": true,
"accrualCode": "1234",
"accrualStartDate": "2025-01-01",
"accrualEndDate": "2026-03-31"
}
]
}