Invoice Product

Content

Key
Type
Description

name

string

The name of the invoice product

description

string

The description of the invoice product

price

int

The price of the invoice product

quantity

int

How many times this invoice product has been purchased

sku

string

The stock keeping unit

vatRate

string

The rate of the value added tax

Example

{
  "sku": null,
  "name": "Product 1",
  "price": 1000,
  "vatRate": "8.1",
  "quantity": 1,
  "description": "[email protected]"
}

Changelog

chevron-right2024-12-10hashtag

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

chevron-right2019-10-15hashtag

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

chevron-right2019-02-13hashtag

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

Last updated