List Low Stock
GET
/admin/statistics/low-stock
const url = 'http://localhost:9000/admin/statistics/low-stock?threshold=10&limit=20';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:9000/admin/statistics/low-stock?threshold=10&limit=20'Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” threshold
string
limit
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
Example generated
{}