Method: AlfrescoAPI::QueriesApi#find_people
- Defined in:
- lib/alfresco_api/api/queries_api.rb
#find_people(term, opts = {}) ⇒ PersonPaging
Find people Note: this endpoint is available in Alfresco 5.2 and newer versions. Gets a list of people that match the given search criteria. The search term is used to look for matches against person id, firstname and lastname. The search term: - must contain a minimum of 2 alphanumeric characters - can optionally use ‘*’ for wildcard matching within the term You can sort the result list using the orderBy parameter. You can specify one or more of the following fields in the orderBy parameter: * id * firstName * lastName
117 118 119 120 |
# File 'lib/alfresco_api/api/queries_api.rb', line 117 def find_people(term, opts = {}) data, _status_code, _headers = find_people_with_http_info(term, opts) return data end |