Skip to main content

PostingGroupProposalDto

Invoice Posting Group Proposal DTO model.

invoiceLineNumbersstring[]

List of invoiceLineNumbers that are part of the posting group proposal

Example: ["1"]
invoiceLineIndexesinteger<int32>[]

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.

Example: [0]
postingTextProposals object[]

List of posting text proposals for the posting group

  • Array [
  • textstring

    Text of the proposal

    Example: Freight
    proposalPriorityinteger<int32>

    Priority index indicating the priority of the proposal.The lowest number indicates the highest priority.

    Example: 1
  • ]
  • dimensionCombinationProposal object
    confidencestringnullable

    Possible values: [Low, Medium, High]

    proposalPriorityinteger<int32>

    Priority index indicating the priority of the proposal. The lowest number indicates the highest priority.

    Example: 1
    dimensionsWithValues object[]
  • Array [
  • externalDimensionIdstring

    The unique identifier of the dimension in your ERP system. Is expected to be unique within the company.

    Example: Assurance-155
    externalDimensionNamestringnullable

    Name of the dimension

    Example: Assurance
    externalDimensionValueIdstringnullable

    The unique identifier of the specific value for this dimension. Is expected to be unique within the company.

    Example: Assurance01
    externalDimensionValueNamestringnullable

    The name for the dimension value

    Example: Assurance dimension
  • ]
  • amountExVatnumber<double>nullable

    Total amount on the posting group not including VAT

    Example: 324
    vatAmountnumber<double>nullable

    The total VAT amount on the posting group

    Example: 81
    amountInclVatnumber<double>nullable

    Total amount on the posting group including VAT

    Example: 405
    PostingGroupProposalDto
    {
    "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"
    }
    ]
    },
    "amountExVat": 324,
    "vatAmount": 81,
    "amountInclVat": 405
    }