Create an item
An item is a prerequisite of an invoice
An FTA e-invoice
To recap, even though an FTA e-invoice has several variations of invoice fields, it mainly contains:
- a single party
- item (at least one)
In this guide, we'll walk through creating an item.
Creating an item for an FTA e-invoice
An item represents a product or service that you sell. Creating items beforehand simplifies invoice creation by making them reusable.
To create an FTA e-invoice item, you need the following details:
Review item attributes here
- Item name
- Tax category
- Commodity code
- HS code (applicable if the item's commodity code is for a good or both)
- Service accounting code (applicable if the item's commodity code is for a service or both)
- Item code(optional)
- Origin country(optional)
- Standard item scheme(optional)
- Description
The screenshot below from the dashboard succinctly shows the details required when creating a simple item (Cement).
On the API, once the required fields are entered into the request body, the response would read like this:
{
"id": "item_01KS4RJY95WJR4BAJYS84CDFQ2",
"created_at": "2026-05-21T07:56:46Z",
"updated_at": "2026-05-21T07:56:46Z",
"active": true,
"name": "Cement",
"description": "Cement",
"item_number": "ITM26-141-075646757-47VTNB",
"commodity_code": "G",
"hs_code": "84137000",
"tax_category_code": "N",
"item_properties": []
}