Class: Notifo::UsersApi

Inherits:
Object
  • Object
show all
Defined in:
lib/notifo/api/users_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ UsersApi

Returns a new instance of UsersApi.



16
17
18
# File 'lib/notifo/api/users_api.rb', line 16

def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



14
15
16
# File 'lib/notifo/api/users_api.rb', line 14

def api_client
  @api_client
end

Instance Method Details

#users_delete_allowed_topic(app_id, id, prefix, opts = {}) ⇒ nil

Remove an allowed topic.

Parameters:

  • app_id

    The app where the users belong to.

  • id

    The user ID.

  • prefix

    The topic prefix.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


25
26
27
28
# File 'lib/notifo/api/users_api.rb', line 25

def users_delete_allowed_topic(app_id, id, prefix, opts = {})
  users_delete_allowed_topic_with_http_info(app_id, id, prefix, opts)
  nil
end

#users_delete_allowed_topic_with_http_info(app_id, id, prefix, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Remove an allowed topic.

Parameters:

  • app_id

    The app where the users belong to.

  • id

    The user ID.

  • prefix

    The topic prefix.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/notifo/api/users_api.rb', line 36

def users_delete_allowed_topic_with_http_info(app_id, id, prefix, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_delete_allowed_topic ...'
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_delete_allowed_topic"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling UsersApi.users_delete_allowed_topic"
  end
  # verify the required parameter 'prefix' is set
  if @api_client.config.client_side_validation && prefix.nil?
    fail ArgumentError, "Missing the required parameter 'prefix' when calling UsersApi.users_delete_allowed_topic"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users/{id}/allowed-topics/{prefix}'.sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'id' + '}', id.to_s).sub('{' + 'prefix' + '}', prefix.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  return_type = opts[:return_type] 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_delete_allowed_topic\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#users_delete_mobile_push_token(app_id, id, token, opts = {}) ⇒ nil

Remove an web push token.

Parameters:

  • app_id

    The app where the users belong to.

  • id

    The user ID.

  • token

    The token.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


91
92
93
94
# File 'lib/notifo/api/users_api.rb', line 91

def users_delete_mobile_push_token(app_id, id, token, opts = {})
  users_delete_mobile_push_token_with_http_info(app_id, id, token, opts)
  nil
end

#users_delete_mobile_push_token_with_http_info(app_id, id, token, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Remove an web push token.

Parameters:

  • app_id

    The app where the users belong to.

  • id

    The user ID.

  • token

    The token.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# File 'lib/notifo/api/users_api.rb', line 102

def users_delete_mobile_push_token_with_http_info(app_id, id, token, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_delete_mobile_push_token ...'
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_delete_mobile_push_token"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling UsersApi.users_delete_mobile_push_token"
  end
  # verify the required parameter 'token' is set
  if @api_client.config.client_side_validation && token.nil?
    fail ArgumentError, "Missing the required parameter 'token' when calling UsersApi.users_delete_mobile_push_token"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users/{id}/mobilepush/{token}'.sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'id' + '}', id.to_s).sub('{' + 'token' + '}', token.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  return_type = opts[:return_type] 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_delete_mobile_push_token\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#users_delete_subscription(app_id, id, prefix, opts = {}) ⇒ nil

Unsubscribes a user from a subscription.

Parameters:

  • app_id

    The app where the user belongs to.

  • id

    The user ID.

  • prefix

    The topic prefix.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


157
158
159
160
# File 'lib/notifo/api/users_api.rb', line 157

def users_delete_subscription(app_id, id, prefix, opts = {})
  users_delete_subscription_with_http_info(app_id, id, prefix, opts)
  nil
end

#users_delete_subscription_with_http_info(app_id, id, prefix, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Unsubscribes a user from a subscription.

Parameters:

  • app_id

    The app where the user belongs to.

  • id

    The user ID.

  • prefix

    The topic prefix.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# File 'lib/notifo/api/users_api.rb', line 168

def users_delete_subscription_with_http_info(app_id, id, prefix, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_delete_subscription ...'
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_delete_subscription"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling UsersApi.users_delete_subscription"
  end
  # verify the required parameter 'prefix' is set
  if @api_client.config.client_side_validation && prefix.nil?
    fail ArgumentError, "Missing the required parameter 'prefix' when calling UsersApi.users_delete_subscription"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users/{id}/subscriptions/{prefix}'.sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'id' + '}', id.to_s).sub('{' + 'prefix' + '}', prefix.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  return_type = opts[:return_type] 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_delete_subscription\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#users_delete_user(app_id, id, opts = {}) ⇒ nil

Delete a user.

Parameters:

  • app_id

    The app where the users belongs to.

  • id

    The user id to delete.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


222
223
224
225
# File 'lib/notifo/api/users_api.rb', line 222

def users_delete_user(app_id, id, opts = {})
  users_delete_user_with_http_info(app_id, id, opts)
  nil
end

#users_delete_user_with_http_info(app_id, id, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Delete a user.

Parameters:

  • app_id

    The app where the users belongs to.

  • id

    The user id to delete.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# File 'lib/notifo/api/users_api.rb', line 232

def users_delete_user_with_http_info(app_id, id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_delete_user ...'
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_delete_user"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling UsersApi.users_delete_user"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users/{id}'.sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'id' + '}', id.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  return_type = opts[:return_type] 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_delete_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#users_delete_web_push_subscription(app_id, id, endpoint, opts = {}) ⇒ nil

Remove an web push subscription.

Parameters:

  • app_id

    The app where the users belong to.

  • id

    The user ID.

  • endpoint

    The endpoint.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


283
284
285
286
# File 'lib/notifo/api/users_api.rb', line 283

def users_delete_web_push_subscription(app_id, id, endpoint, opts = {})
  users_delete_web_push_subscription_with_http_info(app_id, id, endpoint, opts)
  nil
end

#users_delete_web_push_subscription_with_http_info(app_id, id, endpoint, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Remove an web push subscription.

Parameters:

  • app_id

    The app where the users belong to.

  • id

    The user ID.

  • endpoint

    The endpoint.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
# File 'lib/notifo/api/users_api.rb', line 294

def users_delete_web_push_subscription_with_http_info(app_id, id, endpoint, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_delete_web_push_subscription ...'
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_delete_web_push_subscription"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling UsersApi.users_delete_web_push_subscription"
  end
  # verify the required parameter 'endpoint' is set
  if @api_client.config.client_side_validation && endpoint.nil?
    fail ArgumentError, "Missing the required parameter 'endpoint' when calling UsersApi.users_delete_web_push_subscription"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users/{id}/webpush/{endpoint}'.sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'id' + '}', id.to_s).sub('{' + 'endpoint' + '}', endpoint.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  return_type = opts[:return_type] 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_delete_web_push_subscription\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#users_get_subscriptions(app_id, id, opts = {}) ⇒ ListResponseDtoOfSubscriptionDto

Query user subscriptions.

Parameters:

  • app_id

    The app where the user belongs to.

  • id

    The user ID.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :query (String)

    The optional query to search for items.

  • :take (Integer)

    The number of items to return.

  • :skip (Integer)

    The number of items to skip.

Returns:



351
352
353
354
# File 'lib/notifo/api/users_api.rb', line 351

def users_get_subscriptions(app_id, id, opts = {})
  data, _status_code, _headers = users_get_subscriptions_with_http_info(app_id, id, opts)
  data
end

#users_get_subscriptions_with_http_info(app_id, id, opts = {}) ⇒ Array<(ListResponseDtoOfSubscriptionDto, Integer, Hash)>

Query user subscriptions.

Parameters:

  • app_id

    The app where the user belongs to.

  • id

    The user ID.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :query (String)

    The optional query to search for items.

  • :take (Integer)

    The number of items to return.

  • :skip (Integer)

    The number of items to skip.

Returns:



364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
# File 'lib/notifo/api/users_api.rb', line 364

def users_get_subscriptions_with_http_info(app_id, id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_get_subscriptions ...'
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_get_subscriptions"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling UsersApi.users_get_subscriptions"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users/{id}/subscriptions'.sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'id' + '}', id.to_s)

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'query'] = opts[:'query'] if !opts[:'query'].nil?
  query_params[:'take'] = opts[:'take'] if !opts[:'take'].nil?
  query_params[:'skip'] = opts[:'skip'] if !opts[:'skip'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  return_type = opts[:return_type] || 'ListResponseDtoOfSubscriptionDto' 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_get_subscriptions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#users_get_user(app_id, id, opts = {}) ⇒ UserDto

Get a user.

Parameters:

  • app_id

    The app where the user belongs to.

  • id

    The user ID.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :with_details (BOOLEAN)

    Provide extra details, might be expensive. (default to false)

Returns:



418
419
420
421
# File 'lib/notifo/api/users_api.rb', line 418

def users_get_user(app_id, id, opts = {})
  data, _status_code, _headers = users_get_user_with_http_info(app_id, id, opts)
  data
end

#users_get_user_with_http_info(app_id, id, opts = {}) ⇒ Array<(UserDto, Integer, Hash)>

Get a user.

Parameters:

  • app_id

    The app where the user belongs to.

  • id

    The user ID.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :with_details (BOOLEAN)

    Provide extra details, might be expensive.

Returns:

  • (Array<(UserDto, Integer, Hash)>)

    UserDto data, response status code and response headers



429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
# File 'lib/notifo/api/users_api.rb', line 429

def users_get_user_with_http_info(app_id, id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_get_user ...'
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_get_user"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling UsersApi.users_get_user"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users/{id}'.sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'id' + '}', id.to_s)

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'withDetails'] = opts[:'with_details'] if !opts[:'with_details'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  return_type = opts[:return_type] || 'UserDto' 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_get_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#users_get_users(app_id, opts = {}) ⇒ ListResponseDtoOfUserDto

Query users.

Parameters:

  • app_id

    The app where the users belongs to.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :query (String)

    The optional query to search for items.

  • :take (Integer)

    The number of items to return.

  • :skip (Integer)

    The number of items to skip.

  • :with_details (BOOLEAN)

    Provide extra details, might be expensive. (default to false)

Returns:



483
484
485
486
# File 'lib/notifo/api/users_api.rb', line 483

def users_get_users(app_id, opts = {})
  data, _status_code, _headers = users_get_users_with_http_info(app_id, opts)
  data
end

#users_get_users_with_http_info(app_id, opts = {}) ⇒ Array<(ListResponseDtoOfUserDto, Integer, Hash)>

Query users.

Parameters:

  • app_id

    The app where the users belongs to.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :query (String)

    The optional query to search for items.

  • :take (Integer)

    The number of items to return.

  • :skip (Integer)

    The number of items to skip.

  • :with_details (BOOLEAN)

    Provide extra details, might be expensive.

Returns:

  • (Array<(ListResponseDtoOfUserDto, Integer, Hash)>)

    ListResponseDtoOfUserDto data, response status code and response headers



496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
# File 'lib/notifo/api/users_api.rb', line 496

def users_get_users_with_http_info(app_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_get_users ...'
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_get_users"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users'.sub('{' + 'appId' + '}', app_id.to_s)

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'query'] = opts[:'query'] if !opts[:'query'].nil?
  query_params[:'take'] = opts[:'take'] if !opts[:'take'].nil?
  query_params[:'skip'] = opts[:'skip'] if !opts[:'skip'].nil?
  query_params[:'withDetails'] = opts[:'with_details'] if !opts[:'with_details'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] 

  return_type = opts[:return_type] || 'ListResponseDtoOfUserDto' 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_get_users\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#users_post_allowed_topic(body, app_id, id, opts = {}) ⇒ nil

Add an allowed topic.

Parameters:

  • body

    The upsert request.

  • app_id

    The app where the users belong to.

  • id

    The user ID.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


547
548
549
550
# File 'lib/notifo/api/users_api.rb', line 547

def users_post_allowed_topic(body, app_id, id, opts = {})
  users_post_allowed_topic_with_http_info(body, app_id, id, opts)
  nil
end

#users_post_allowed_topic_with_http_info(body, app_id, id, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Add an allowed topic.

Parameters:

  • body

    The upsert request.

  • app_id

    The app where the users belong to.

  • id

    The user ID.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
# File 'lib/notifo/api/users_api.rb', line 558

def users_post_allowed_topic_with_http_info(body, app_id, id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_post_allowed_topic ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling UsersApi.users_post_allowed_topic"
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_post_allowed_topic"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling UsersApi.users_post_allowed_topic"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users/{id}/allowed-topics'.sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'id' + '}', id.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] || @api_client.object_to_http_body(body) 

  return_type = opts[:return_type] 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_post_allowed_topic\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#users_post_subscriptions(body, app_id, id, opts = {}) ⇒ nil

Upserts or deletes multiple user subscriptions.

Parameters:

  • body

    The subscription object.

  • app_id

    The app where the user belongs to.

  • id

    The user ID.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


615
616
617
618
# File 'lib/notifo/api/users_api.rb', line 615

def users_post_subscriptions(body, app_id, id, opts = {})
  users_post_subscriptions_with_http_info(body, app_id, id, opts)
  nil
end

#users_post_subscriptions_with_http_info(body, app_id, id, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Upserts or deletes multiple user subscriptions.

Parameters:

  • body

    The subscription object.

  • app_id

    The app where the user belongs to.

  • id

    The user ID.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
# File 'lib/notifo/api/users_api.rb', line 626

def users_post_subscriptions_with_http_info(body, app_id, id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_post_subscriptions ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling UsersApi.users_post_subscriptions"
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_post_subscriptions"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling UsersApi.users_post_subscriptions"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users/{id}/subscriptions'.sub('{' + 'appId' + '}', app_id.to_s).sub('{' + 'id' + '}', id.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] || @api_client.object_to_http_body(body) 

  return_type = opts[:return_type] 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_post_subscriptions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#users_post_users(body, app_id, opts = {}) ⇒ Array<UserDto>

Upsert users.

Parameters:

  • body

    The upsert request.

  • app_id

    The app where the users belong to.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



682
683
684
685
# File 'lib/notifo/api/users_api.rb', line 682

def users_post_users(body, app_id, opts = {})
  data, _status_code, _headers = users_post_users_with_http_info(body, app_id, opts)
  data
end

#users_post_users_with_http_info(body, app_id, opts = {}) ⇒ Array<(Array<UserDto>, Integer, Hash)>

Upsert users.

Parameters:

  • body

    The upsert request.

  • app_id

    The app where the users belong to.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(Array<UserDto>, Integer, Hash)>)

    Array<UserDto> data, response status code and response headers



692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
# File 'lib/notifo/api/users_api.rb', line 692

def users_post_users_with_http_info(body, app_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: UsersApi.users_post_users ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling UsersApi.users_post_users"
  end
  # verify the required parameter 'app_id' is set
  if @api_client.config.client_side_validation && app_id.nil?
    fail ArgumentError, "Missing the required parameter 'app_id' when calling UsersApi.users_post_users"
  end
  # resource path
  local_var_path = '/api/apps/{appId}/users'.sub('{' + 'appId' + '}', app_id.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] || @api_client.object_to_http_body(body) 

  return_type = opts[:return_type] || 'Array<UserDto>' 

  auth_names = opts[:auth_names] || []
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: UsersApi#users_post_users\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end