Curated Examples
List store products
Use UnifiStockTracker to list products from a UniFi store collection.
This pattern is useful when you want to inspect current product data before watching for one item.
It is adapted from Examples/GetUnifiStockModern.ps1.
Example
Import-Module UnifiStockTracker
Get-UnifiStock -Store Europe -Collection SwitchingProEthernet |
Sort-Object -Property Name |
Format-Table Name, SKU, Available -AutoSize
What this demonstrates
- querying the modern store endpoint
- limiting output to a collection
- sorting product data before display