Skip to main content

PostingPatchResultDtoListSuccessResultResponse

Wraps a successful API response with the result payload.

correlationIduuid

A unique ID of the request

Example: fb0ccbbc-62bc-447f-a47e-02b490e25690
isSuccessboolean

Indicates whether the request was successful. Always true for success responses.

Example: true
result object[]nullable

The response payload.

  • Array [
  • externalInvoiceIdstringrequired

    The external ID of the invoice associated with this posting

    Example: F50015
    postingLineNumberint32required

    Sequence number of posting within an invoice

    Example: 1
    updatedbooleanrequired

    Indicates whether the posting was successfully updated

    Example: true
    errorstringnullable

    Error message if the update failed

    Example: Posting not found
  • ]
  • PostingPatchResultDtoListSuccessResultResponse
    {
    "correlationId": "fb0ccbbc-62bc-447f-a47e-02b490e25690",
    "isSuccess": true,
    "result": [
    {
    "externalInvoiceId": "F50015",
    "postingLineNumber": 1,
    "updated": true,
    "error": "Posting not found"
    }
    ]
    }