Enlivy

Products

Build a reusable catalog of everything you sell, services or goods, with pricing, units, tax settings, and descriptions set once. Every product is ready to drop into a quote or invoice in seconds.

Start Today
Products

WHAT IT IS

Turn Your Services and Products Into Invoices in Seconds

Turn your services and items into clear, invoice-ready products.

Whether you're billing hours or shipping boxes, Enlivy helps you stay organized, consistent, and ready to invoice in seconds.

  • Digital or Physical, Services or Goods

    Easily add everything you offer, from consulting hours to retail items, with all the key details you need. With support for unit types, pricing, and descriptions, Enlivy gives you a flexible structure that fits any type of product or service.

  • One Source of Truth

    Keep product names, pricing, tax settings, and Stripe connections in one clean, searchable dashboard.

  • Ready to Invoice, Always

    Every product you add is immediately available when creating quotes or invoices. That means faster billing, fewer mistakes, and a smoother experience for both your team and your clients.

BUILD ONCE, USE EVERYWHERE

One Catalog, Ready for Every Invoice

Add a product once, and reuse it across invoices, proposals, and billing schedules.

Products are the reusable building blocks of everything you bill. Set the name, price, unit, tax class, and e-invoicing details once, and drop the product into any document without retyping or hunting for the same details.

Keep your whole catalog organized in a single dashboard, so your billing stays fast, consistent, and clear.

  • Centralized product management

    Manage every item and service from one dashboard. Update the name, price, or unit, and it is ready the next time you add that product to an invoice.

  • Flexible product types

    Add services, digital items, physical goods, or bonuses, with multi-currency pricing and per-language names, units, and descriptions. Use only the fields your business actually needs.

  • Edit products anytime

    Reprice, relabel, change the tax class, or toggle whether a product is sold. Soft-deleted products can be restored, so nothing is lost by accident.

  • Find products quickly

    Search by name, alias, description, or type, and filter your catalog in one click, no matter how many products you keep.

THE PRODUCT CATALOG

Your Whole Catalog, in One Searchable List

Search your services, goods, and digital items by name, type, or unit. Every product is priced, tax-ready, and one click from any invoice.

Live preview

Interactive demo · loads on demand

SPEAKS YOUR CLIENT'S LANGUAGE

Every product carries all six languages

A product name is not a single string. Enlivy stores it in all six supported languages at once, so the same catalog serves clients in English, Romanian, German, French, Dutch, and Danish, and every invoice line renders in the reader's language.

One product record: Invoicing
How it's storedone field in the database
{
  "en": "Invoicing",
  "ro": "Facturare",
  "de": "Rechnungsstellung",
  "fr": "Facturation",
  "nl": "Facturatie",
  "da": "Fakturering"
}
How it's readthe same field, to six readers
English Invoicing / month
Română Facturare / lună
Deutsch Rechnungsstellung / monat
Français Facturation / mois
Nederlands Facturatie / maand
Dansk Fakturering / måned

This is the _lang_map system, woven through the whole platform.

WHY PRODUCTS

Why Use Products in Enlivy?

Less retyping, fewer mistakes, faster invoicing.

A shared, reusable catalog keeps every document consistent and every teammate aligned, so billing stops being a source of errors and delays.

  • Create once, reuse anytime

    Stop retyping the same information. Your catalog is ready whenever you need it, on invoices, proposals, and recurring billing.

  • Fewer mistakes

    A product carries its name, unit, price, and tax details onto each document, so pricing and descriptions stay consistent everywhere.

  • Fast, clean invoicing

    Add a product to an invoice in seconds. The name, unit, price, and tax class fill in automatically for the document's currency.

  • Clear for your team

    Everyone in your organization works from the same product list: aligned, accurate, and easy to manage.

Creating a Product is Easy

Add a product in under a minute.

Enter the details once, and it is ready to use on every quote and invoice from then on, no retyping, no hunting for the right price.

  1. Start from the Products section

    From the Enlivy dashboard, use the left-side menu to go to Products, then click the Add Product button.

  2. Fill in the Product Details

    Enter key info like the name, alias, type, description, and price. Keep it simple, or get specific, it’s up to you.

  3. Your Product is Ready

    Your product is now saved and ready to be added to any invoice, anytime.

    You can view it in the Product Dashboard.

API Reference

Product Management from the API

Keep your catalog in sync from your own systems. The Products API gives you programmatic control over the reusable line items you sell (services, digital goods, physical products, and bonuses), each with multi-currency pricing, per-locale names, tax class, and the metadata needed for compliant e-invoicing. Products created here drop straight into invoices, proposals, and billing schedules.

The examples below cover the core operations: listing and searching products, creating one, editing it, and removing it.

Query your catalog with pagination, filtering, and full-text search. Filter by name or description, fetch specific ids, and expand the tax class inline.

GET /organizations/{organizationId}/products
const organizationId = "your_org_id";
const token = "YOUR_TOKEN_HERE";

fetch(
  `https://api.enlivy.com/organizations/${organizationId}/products` +
    // filters: name, description, ids (or q=... for full-text search)
    `?page=1&limit=20&name=Consulting` +
    // includes: organization, tax_class, tag_ids, deleted_by_user
    `&include=tax_class`,
  {
    method: "GET",
    headers: {
      Authorization: `Bearer ${token}`,
      "Content-Type": "application/json"
    }
  }
);

Works together with