List Products (Admin)​
Admin endpoint to list all products with advanced filtering, search, and pagination. Supports filtering by category, type, recurring status, active status, and full-text search. Results can be ordered by multiple fields.
Pagination Methods (choose one):
- Page-based: Use
pageparameter (1-based). Example:page=2&limit=10returns products 11-20 - Offset-based: Use
offsetparameter. Example:offset=20&limit=10skips first 20 products - If both are provided,
pagetakes priority - Default:
limit=20,page=1(oroffset=0)
Example Requests:
- Page-based:
?page=2&limit=10&product_type=subscription&is_active=true - Offset-based:
?offset=20&limit=10&search=premium&orderBy=name&orderDir=asc
Authorizations​
Session ID from Flowless authentication
Parameters​
Query Parameters
Page number for pagination (1-based). Alternative to offset. If provided, takes priority over offset.
11Number of products to return per page (default: 20)
20Number of products to skip for pagination (default: 0). Alternative to page parameter.
0Filter by category ID
Filter by product type
"physical""digital""service""subscription"Filter by recurring status (string 'true' or 'false')
"true""false"Filter by active status (string 'true' or 'false')
"true""false"Search term to filter products by name or description
Field to sort results by (default: created_at)
"name""subtotal_cents""created_at""updated_at"Sort direction: 'asc' for ascending, 'desc' for descending (default: desc)
"asc""desc"Responses​
List of products with pagination metadata