Method: AlfrescoAPI::QueriesApi#find_sites
- Defined in:
- lib/alfresco_api/api/queries_api.rb
#find_sites(term, opts = {}) ⇒ SitePaging
Find sites Note: this endpoint is available in Alfresco 5.2 and newer versions. Gets a list of sites that match the given search criteria. The search term is used to look for sites that match against site id, title or description. The search term: - must contain a minimum of 2 alphanumeric characters - can optionally use ‘*’ for wildcard matching within the term The default sort order for the returned list is for sites to be sorted by ascending id. You can override the default by using the orderBy parameter. You can specify one or more of the following fields in the orderBy parameter: * id * title * description
193 194 195 196 |
# File 'lib/alfresco_api/api/queries_api.rb', line 193 def find_sites(term, opts = {}) data, _status_code, _headers = find_sites_with_http_info(term, opts) return data end |