# Products Products describe the specific goods or services you offer to your customers and help you track inventory or provisioning. They should be used in conjunction with Plans and Prices to configure pricing. ## Retrieve a product - [GET /products/{product_id}](https://developer.zuora.com/other-api/quickstart-api/products/getproduct.md): Retrieves the product with the given ID. ## Update a product - [PATCH /products/{product_id}](https://developer.zuora.com/other-api/quickstart-api/products/updateproduct.md): Updates the specific product by setting the values of the parameters passed. Any parameters not provided will be left unchanged. ## Delete a product - [DELETE /products/{product_id}](https://developer.zuora.com/other-api/quickstart-api/products/deleteproduct.md): Permanently deletes a product. It cannot be undone. ## List products - [GET /products](https://developer.zuora.com/other-api/quickstart-api/products/getproducts.md): Returns a dictionary with a data property that contains an array of products, starting after the cursor, if used. Each entry in the array is a separate product object. If no more products are available, the resulting array will be empty. This request should never return an error. ## Create a product - [POST /products](https://developer.zuora.com/other-api/quickstart-api/products/createproduct.md): Creates a new product object.