Special discounts and incentives

Learn how to handle special discounts, incentives, and rebates in Monite.

Overview

Special deductions refer to exclusive cost savings on particular products and services. Unlike regular discounts, these deductions do not reduce the taxable base on sales invoices, that is, they are applied after VAT calculations. Examples of special deductions include incentives and rebates.

Monite supports up to 10 deductions per invoice or quote.

How deductions are displayed in PDF invoices
How deductions are displayed in PDF invoices

Deductions vs discounts

Deductions are similar to discounts, the difference being how the subtotal and total are calculated.

  • Discounts are applied to the subtotal before VAT. In other words, discounts affect the taxable base and, as a result, the amount of VAT being charged.

  • Deductions are applied to the total amount after VAT. Deductions do not affect the taxable base and VAT amounts. You can think of deductions as post-tax discounts.

Add deductions

You can define deductions when creating and updating invoices and quotes. Use the deductions array to specify a list of deductions to apply. For each deduction, you can define the deduction amount, the label to use in PDFs, and an optional memo with additional information. The memo is displayed below the deduction line in PDFs.

1curl -X POST 'https://api.sandbox.monite.com/v1/receivables' \
2 -H 'X-Monite-Version: 2024-05-25' \
3 -H 'X-Monite-Entity-Id: ENTITY_ID' \
4 -H 'Authorization: Bearer ACCESS_TOKEN' \
5 -H 'Content-Type: application/json' \
6 -d '{
7 "type": "invoice",
8 "currency": "EUR",
9 ...
10 "deductions": [
11 {
12 "amount": 1500,
13 "name": "Referral bonus"
14 },
15 {
16 "amount": 5000,
17 "name": "Service credit",
18 "memo": "Compensation for delayed service"
19 }
20 ]
21 }'