> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fynn.eu/llms.txt
> Use this file to discover all available pages before exploring further.

# Products

> Create and manage your products

## Add Product

<Frame>
  <img src="https://mintcdn.com/fynnsubscriptionbilling/tzBoVhlU_naKbmRt/images/fynn-eu-add-product.png?fit=max&auto=format&n=tzBoVhlU_naKbmRt&q=85&s=0982b194b585f026e526f1a77b8feab7" alt="Add Product" width="1678" height="1167" data-path="images/fynn-eu-add-product.png" />
</Frame>

To create a new product, go to [Catalog > Products](https://preview.fynn.eu/catalogue/products) and click on <b>Add Product</b>.

For a new product, you need to provide the following information:

* <b>Name</b>: The name of the product that will be displayed in the product list and on invoices.
* <b>Billable Unit</b>: The unit in which the product is billed, e.g., "Piece", "Hours", or "Month".
* <b>Tax Group</b>: The tax group that applies to this product. This is important for the correct calculation of taxes on invoices.

Click on <b>Create Product</b> to create the product. The product will now be displayed in the product list and you can set the prices for the product.

## Archive Product

A product can be archived when it is no longer needed or no longer available.
When a product is archived, it can no longer be used for new subscriptions or invoices.

<Info>
  Archived products are no longer displayed in the product list or product selection.
</Info>

<Tabs>
  <Tab title="Using Web App">
    <Steps>
      <Step title="Open Product Detail Page">
        Click on [Catalog > Products](https://preview.fynn.eu/catalogue/products) in the sidebar and select the product you want to archive.
      </Step>

      <Step title="Archive Product">
        Click on <b>Archive</b> to archive the product and confirm the action.
      </Step>

      <Step title="Product Successfully Archived">
        The product has been successfully archived and is no longer available in the product list or product selection.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Using API">
    Use the [Archive Product](/api-reference/product/archive-a-product) endpoint for this.

    ```bash theme={null}
    PUT /catalog/products/{productId}/archive
    ```

    Alternatively, you can [retrieve the product](/api-reference/product/get-a-product)
    or [update the product via the API](/api-reference/product/update-a-product).
  </Tab>
</Tabs>
