improved

2024-07 Adding `name` query param alongside existing 'family_name'

We've updated the /api/2.0/products endpoint by adding 'name' as a query parameter alongside the existing 'family_name'. This change aims to align the parameter with the field in the API response and enhance clarity. Now, you can use either 'name' or 'family_name' to retrieve products with the name from this query param. This query typically retrieves all products from one family.

For instance, to find all products named Shirt, you would use the URL https://example.retail.lightspeed.app/api/2.0/products?name=Shirt or
https://example.retail.lightspeed.app/api/2.0/products?family_name=Shirt. This query typically retrieves all products in the Shirt family.

See List Products for details.