# List product installations Returns list of product installations Endpoint: GET /v0/enterprise/{enterprise_id}/emm/{emm_id}/product/{product_id}/install/ Version: 1.0.0 Security: apiKey ## Path parameters: - `enterprise_id` (string, required) A UUID string identifying this enterprise. - `emm_id` (integer, required) An integer representing the ID of enterprise. - `product_id` (string, required) A string identifying the product. ## Query parameters: - `google_product` (string) Filter by Google product - `google_device` (string) Filter by Google device - `install_state` (string) Filter by install state - `version_code` (string) Filter by version code - `created_on_gt` (string) filter installations created after a given timestamp - `created_on_lt` (string) filter installations created before a given timestamp - `is_active` (boolean) filter by active installations ## Response 200 fields (application/json): - `count` (integer, required) - `next` (string,null) - `previous` (string,null) - `results` (array, required) - `results.id` (string) - `results.enterprise` (string) - `results.device` (string) - `results.install_state` (string) - `results.version_code` (string) - `results.install_type` (integer) - `results.is_force_install` (boolean) - `results.reason_details` (string) - `results.created_on` (string) - `results.updated_on` (string) - `results.is_active` (boolean) - `results.objects` (object) ## Response 401 fields (application/json): - `errors` (array) - `message` (string) - `status` (integer) ## Response 404 fields (application/json): - `errors` (array) - `message` (string) - `status` (integer) ## Response 500 fields (application/json): - `errors` (array) - `message` (string) - `status` (integer)