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

# Products Overview

> Manage your product catalog

## Products

Products represent items in your catalog. Use them with checkout sessions to create itemized payment links.

### Soft Deletion

Deleting a product sets `active` to `false`. It remains in the system for historical reference but won't appear in active product lists.

### Endpoints

| Method   | Path                | Description             |
| -------- | ------------------- | ----------------------- |
| `POST`   | `/v1/products`      | Create a product        |
| `GET`    | `/v1/products/{id}` | Get a product           |
| `GET`    | `/v1/products`      | List products           |
| `PATCH`  | `/v1/products/{id}` | Update a product        |
| `DELETE` | `/v1/products/{id}` | Delete (soft) a product |
