searchUsers method

Retrieves the users for the given ids. If any id is invalid, it is ignored.

@param {List

@deprecated This method has been renamed to searchUsersByIds, use that method instead.

Implementation

Future<ClientResponse<SearchResponse, Errors>> searchUsers(List<String> ids) {
  return _start<SearchResponse, Errors>()
      .withUri('/api/user/search')
      .withParameter('ids', ids)
      .withMethod('GET')
      .withResponseHandler(
          defaultResponseHandlerBuilder((d) => SearchResponse.fromJson(d)))
      .go();
}