# Find products endpoint Retrieve a paginated list of products for a given company. Optional filters include description, category, and deleted flag. Endpoint: GET /integrator/products/find Version: 1.0.3 Security: bearerAuth ## Query parameters: - `companyRuc` (string, required) Company RUC number (Required) Example: "20555345195" - `description` (string) Product description filter (Optional) Example: "polo" - `category` (string) Product category filter (Optional) Example: "vestim" - `deleted` (boolean) Filter by deleted status (Optional) - `page` (integer) Pagination - Page number (Optional) - `size` (integer) Pagination - Page size (Optional) ## Response 200 fields (application/json): - `id` (string) Example: "680149f1d0a4d60138410a21" - `description` (string) Example: "Product description" - `price` (string) Example: "100.00" - `unitCode` (string) Example: "NIU" - `taxationType` (string) Example: "10" - `favorite` (boolean)