# Invoice Product

### Content

<table><thead><tr><th width="231.6796875">Key</th><th width="154.80078125">Type</th><th>Description</th></tr></thead><tbody><tr><td>name</td><td>string</td><td>The name of the invoice product</td></tr><tr><td>description</td><td>string</td><td>The description of the invoice product</td></tr><tr><td>price</td><td>int</td><td>The price of the invoice product</td></tr><tr><td>quantity</td><td>int</td><td>How many times this invoice product has been purchased</td></tr><tr><td>sku</td><td>string</td><td>The stock keeping unit</td></tr><tr><td>vatRate</td><td>string</td><td>The rate of the value added tax</td></tr></tbody></table>

### Example

```json
{
  "sku": null,
  "name": "Product 1",
  "price": 1000,
  "vatRate": "8.1",
  "quantity": 1,
  "description": "sample-email@mail.com"
}
```

### Changelog

<details>

<summary>2024-12-10</summary>

There is a new field `description` which stores the description of the invoice product.

</details>

<details>

<summary>2019-10-15</summary>

The type of `price` changes from `float` to `int`. The price is now displayed in the currency's smallest unit.

</details>

<details>

<summary>2019-02-13</summary>

There are two new fields: `sku` which stores the stock keeping unit and `vatRate` which stores the rate of the value added tax,

</details>
