For the complete documentation index, see llms.txt. This page is also available as Markdown.

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": "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,

Last updated