Invoice Product

Invoice product object fields.

Content

KeyTypeDescription
namestringThe name of the invoice product
descriptionstringThe description of the invoice product
priceintThe price of the invoice product
quantityintHow many times this invoice product has been purchased
skustringThe stock keeping unit
vatRatestringThe rate of the value added tax

Example

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

Changelog

2024-12-10

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

2019-10-15

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

2019-02-13

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