lib/purecloudplatformclientv2/api/users_api.rb in purecloudplatformclientv2-49.0.1 vs lib/purecloudplatformclientv2/api/users_api.rb in purecloudplatformclientv2-50.0.0
- old
+ new
@@ -2318,11 +2318,12 @@
# Get the list of available users.
#
# @param [Hash] opts the optional parameters
# @option opts [Integer] :page_size Page size (default to 25)
# @option opts [Integer] :page_number Page number (default to 1)
- # @option opts [Array<String>] :id id
+ # @option opts [Array<String>] :id A list of user IDs to fetch by bulk
+ # @option opts [Array<String>] :jabber_id A list of jabberIds to fetch by bulk (cannot be used with the \"id\" parameter)
# @option opts [String] :sort_order Ascending or descending sort order (default to ASC)
# @option opts [Array<String>] :expand Which fields, if any, to expand
# @option opts [String] :state Only list users of this state (default to active)
# @return [UserEntityListing]
def get_users(opts = {})
@@ -2333,11 +2334,12 @@
# Get the list of available users.
#
# @param [Hash] opts the optional parameters
# @option opts [Integer] :page_size Page size
# @option opts [Integer] :page_number Page number
- # @option opts [Array<String>] :id id
+ # @option opts [Array<String>] :id A list of user IDs to fetch by bulk
+ # @option opts [Array<String>] :jabber_id A list of jabberIds to fetch by bulk (cannot be used with the \"id\" parameter)
# @option opts [String] :sort_order Ascending or descending sort order
# @option opts [Array<String>] :expand Which fields, if any, to expand
# @option opts [String] :state Only list users of this state
# @return [Array<(UserEntityListing, Fixnum, Hash)>] UserEntityListing data, response status code and response headers
def get_users_with_http_info(opts = {})
@@ -2364,10 +2366,16 @@
+
+
+
+
+
+
if opts[:'sort_order'] && !['ascending', 'descending'].include?(opts[:'sort_order'])
fail ArgumentError, 'invalid value for "sort_order", must be one of ascending, descending'
end
@@ -2395,9 +2403,10 @@
# query parameters
query_params = {}
query_params[:'pageSize'] = opts[:'page_size'] if opts[:'page_size']
query_params[:'pageNumber'] = opts[:'page_number'] if opts[:'page_number']
query_params[:'id'] = @api_client.build_collection_param(opts[:'id'], :multi) if opts[:'id']
+ query_params[:'jabberId'] = @api_client.build_collection_param(opts[:'jabber_id'], :multi) if opts[:'jabber_id']
query_params[:'sortOrder'] = opts[:'sort_order'] if opts[:'sort_order']
query_params[:'expand'] = @api_client.build_collection_param(opts[:'expand'], :multi) if opts[:'expand']
query_params[:'state'] = opts[:'state'] if opts[:'state']
# header parameters