Hey, I'm creating new journal transaction entries with set lineNumbers, but Visma.net does not care about the numbers I send in. Is there any logic I'm missing here? This is the dto I'm sending, and the lineNumbers returned are 2 and 4. { "transactionDate": { "Value": "2021-12-01T00:00:00.000Z" }, "currencyId": { "Value": "NOK" }, "postPeriod": { "Value": "082021" }, "description": { "Value": "[abc123] TESTING" }, "journalTransactionLines": [ { "accountNumber": { "Value": "5000" }, "transactionDescription": { "Value": "TESTING" }, "creditAmountInCurrency": { "Value": 500.0 }, "lineNumber": { "Value": 1 }, "debitAmountInCurrency": { "Value": 0.0 }, "operation": "Insert" }, { "accountNumber": { "Value": "1920" }, "transactionDescription": { "Value": "TESTING" }, "debitAmountInCurrency": { "Value": 500.0 }, "lineNumber": { "Value": 2 }, "operation": "Insert" } ] }
... View more