products
List products
Returns a paginated list of products. Results are filtered by the authenticated user's catalog access and user-group restrictions.
get/v1/products
Query parameters
pageinteger
limitinteger
sortstring
Sort field. Prefix with - for descending. Example -created_at.
filter[code]string
Filter by product code (supports MongoDB operators, e.g. filter[price][$gte]=100).
Response
Paginated list of products
Example response
{
"data": [
{
"_id": "507f1f77bcf86cd799439011"
}
],
"paging": {
"page": 1,
"limit": 20,
"total": 150,
"pages": 8
}
}