# ListAssets Returns list of assets sorted by latest activity time in descending order. Endpoint: GET /assets Version: 1.0.0 Security: AuthorizationHeader ## Query parameters: - `from` (integer) Page number - `size` (integer) Record per page. Default no of records per page is 50. Maximum allowed records per page is 1000. - `latest_activity_time_gt` (string) Returns list of assets having latest activity time greater than the specified time. The format of time is 'YYYY-MM-DD HH:MM:SS'. - `score` (number) Filters assets to include only those with a posture score greater than or equal to the specified value. Score must be greater than or equal to 0.0 - `asset_type` (string) Asset type ## Response 200 fields (application/json): - `error` (string) - `result` (object) - `result.data` (array) - `result.data._id` (string) - `result.data.latest_activity_time` (string) - `result.data.score` (number) - `result.data.type` (string) - `result.total` (integer) - `success` (boolean) ## Response 400 fields (application/json): - `error` (string) - `result` (object) - `result.data` (array) - `result.data._id` (string) - `result.data.latest_activity_time` (string) - `result.data.score` (number) - `result.data.type` (string) - `result.total` (integer) - `success` (boolean) ## Response 500 fields (application/json): - `error` (string) - `result` (object) - `result.data` (array) - `result.data._id` (string) - `result.data.latest_activity_time` (string) - `result.data.score` (number) - `result.data.type` (string) - `result.total` (integer) - `success` (boolean)