List bookable products with filtering and pagination. Use this to retrieve product configurations that define rentals, services, or other bookable items in the system. Supports PostgREST-style filtering on all fields (id, organization_id, name, timestamps), column selection, pag…
idstringFilter by product ID using PostgREST operators. Examples: 'eq.uuid-value' (equals), 'in.(uuid1,uuid2)' (in list).
namestringFilter by product name using PostgREST operators. Examples: 'like.*cabin*' (contains), 'ilike.*CABIN*' (case-insensitive contains).
limitintegerMaximum number of products to return (1-1000). API maximum is 1000 results per request.
orderstringSort results by specified column and direction. Format: 'column_name.direction' where direction is 'asc' or 'desc'. Examples: 'created_at.desc', 'name.asc'. If not specified, returns in default order.
offsetintegerNumber of products to skip before starting to return results (for pagination).
selectstringSpecify which columns to retrieve. Use '*' for all columns, or provide comma-separated column names (e.g., 'id,name,organization_id'). Can also include related resources (e.g., 'name,capacities(*)'). If not specified, returns all columns by default.
created_atstringFilter by creation timestamp using PostgREST operators. Examples: 'gte.2024-01-01T00:00:00Z' (greater than or equal), 'lt.2024-12-31T23:59:59Z' (less than).
updated_atstringFilter by last modification timestamp using PostgREST operators. Examples: 'gte.2024-01-01T00:00:00Z' (greater than or equal), 'lt.2024-12-31T23:59:59Z' (less than).
organization_idstringFilter by organization ID using PostgREST operators. Examples: 'eq.uuid-value' (equals), 'in.(uuid1,uuid2)' (in list). Use this to find all products belonging to a specific organization.
dataRequiredData from the action execution
errorstringError if any occurred during the execution of the action
successfulRequiredbooleanWhether or not the action execution was successful or not
API key connection. Risk level 2 of 5.
Free Action
No published Skills explicitly reference this Action yet.