# Rounding Amount Standardisation

## Affected systems

Visma Spiris\
Tripletex\
Svefaktura

## Affected Endpoint

URL: <https://apidocs.zwapgrid.com/accounting-api#tag/sales-invoices/GET/api/v1/consents/{consentId}/salesinvoices/{salesInvoiceId}>

## Affected Field

```
    "taxInclusiveAmount": {
      "amount": "decimal",
      "currencyId": "string"
    },
```

## Change

Before: `taxInclusiveAmount` includes `payableRoundingAmount`

After: `taxInclusiveAmount` excludes rounding (`taxInclusiveAmount` = `taxInclusiveAmount` - `payableRoundingAmount`), while `payableAmount` includes rounding (as before, no change has been made here)

```
    "payableAmount": {
      "amount": "decimal",
      "currencyId": "string"
    }
```
