Hi, After a lot of investigation, we have come to the following conclusion. Before the update, it was possible to book on a code part that did not contain all the characters. Examples: Default Code parts: 0-00-0000-00000 Works in UI: 0-00-0000-45 (works also via API, if the two char value is last in the code part) Works in UI: 0-00-32-00000 (the value 32 does not work via API after update) This works { "operation": "Insert", "lineNumber": {}, "accountNumber": { "value": "5800" }, "subaccount": [ { "segmentId": "1", "segmentValue": "1" }, { "segmentId": "2", "segmentValue": "00" }, { "segmentId": "3", "segmentValue": "0000" }, { "segmentId": "4", "segmentValue": "45" } ], "debitAmountInCurrency": { "value": 189.41 }, "vatCodeId": { "value": "01" } This does not work: { "operation": "Insert", "lineNumber": {}, "accountNumber": { "value": "5800" }, "subaccount": [ { "segmentId": "1", "segmentValue": "1" }, { "segmentId": "2", "segmentValue": "00" }, { "segmentId": "3", "segmentValue": "32" }, { "segmentId": "4", "segmentValue": "00000" } ], "debitAmountInCurrency": { "value": 189.41 }, "vatCodeId": { "value": "01" }
... View more