Hi,
The button to insert a picture is here:
Since "Använd totalbelopp vid registrering" you also need to include the field "amount" at the document header level, so the same JSON modified with this should be:
{ "documentType": { "value": "Invoice" }, "referenceNumber": { "value": 12345 }, "hold": { "value": "false" }, "date": { "value": "2022-05-31" }, "origInvoiceDate": { "value": "2022-05-31" }, "supplierReference": { "value": "XYZ2205" }, "supplierNumber": { "value": "60048" }, "description": { "value": "AUTO-XYZ2205" }, "currencyId": { "value": "DKK" }, "creditTermsId": { "value": 60 }, "dueDate": { "value": "2022-07-29" }, "amount" : { "value": 60082.04 }, "note": { "value": "" }, "invoiceLines": [ { "Operation": "Insert", "transactionDescription": { "value": "XYZ2205" }, "accountNumber": { "value": "4120" }, "vatCodeId": { "value": "I25" }, "costInCurrency": { "value": 30.6 } }, { "Operation": "Insert", "transactionDescription": { "value": "XYZ2205" }, "accountNumber": { "value": 2986 }, "vatCodeId": { "value": "I25" }, "costInCurrency": { "value": 44049.18 } }, { "Operation": "Insert", "transactionDescription": { "value": "XYZ2205" }, "accountNumber": { "value": 2989 }, "vatCodeId": { "value": "I25" }, "costInCurrency": { "value": 16002.26 } } ] }
... View more