Class: Bandwidth::TollFreeVerificationApi

Inherits:
Object
  • Object
show all
Defined in:
lib/bandwidth-sdk/api/toll_free_verification_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ TollFreeVerificationApi

Returns a new instance of TollFreeVerificationApi.



19
20
21
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 19

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

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



17
18
19
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 17

def api_client
  @api_client
end

Instance Method Details

#create_webhook_subscription(account_id, webhook_subscription_request_schema, opts = {}) ⇒ WebhookSubscription

Create Webhook Subscription Create a new webhook subscription (this webhook will be called for every update on every submission). In addition to a ‘callbackUrl`, this subscription can provide optional HTTP basic authentication credentials (a username and a password). The returned subscription object will contain an ID that can be used to modify or delete the subscription at a later time.

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • webhook_subscription_request_schema (WebhookSubscriptionRequestSchema)

    Information about a webhook that Bandwidth should send upon the completion of event customer is trying to subscribe to.

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

    the optional parameters

Returns:



28
29
30
31
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 28

def create_webhook_subscription(, webhook_subscription_request_schema, opts = {})
  data, _status_code, _headers = create_webhook_subscription_with_http_info(, webhook_subscription_request_schema, opts)
  data
end

#create_webhook_subscription_with_http_info(account_id, webhook_subscription_request_schema, opts = {}) ⇒ Array<(WebhookSubscription, Integer, Hash)>

Create Webhook Subscription Create a new webhook subscription (this webhook will be called for every update on every submission). In addition to a &#x60;callbackUrl&#x60;, this subscription can provide optional HTTP basic authentication credentials (a username and a password). The returned subscription object will contain an ID that can be used to modify or delete the subscription at a later time.

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • webhook_subscription_request_schema (WebhookSubscriptionRequestSchema)

    Information about a webhook that Bandwidth should send upon the completion of event customer is trying to subscribe to.

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

    the optional parameters

Returns:

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

    WebhookSubscription data, response status code and response headers



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
85
86
87
88
89
90
91
92
93
94
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 39

def create_webhook_subscription_with_http_info(, webhook_subscription_request_schema, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: TollFreeVerificationApi.create_webhook_subscription ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling TollFreeVerificationApi.create_webhook_subscription"
  end
  # verify the required parameter 'webhook_subscription_request_schema' is set
  if @api_client.config.client_side_validation && webhook_subscription_request_schema.nil?
    fail ArgumentError, "Missing the required parameter 'webhook_subscription_request_schema' when calling TollFreeVerificationApi.create_webhook_subscription"
  end
  # resource path
  local_var_path = '/accounts/{accountId}/tollFreeVerification/webhooks/subscriptions'.sub('{' + 'accountId' + '}', CGI.escape(.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']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

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

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

  # return_type
  return_type = opts[:debug_return_type] || 'WebhookSubscription'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['Basic']

  new_options = opts.merge(
    :operation => :"TollFreeVerificationApi.create_webhook_subscription",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: TollFreeVerificationApi#create_webhook_subscription\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#delete_webhook_subscription(account_id, id, opts = {}) ⇒ nil

Delete Webhook Subscription Delete a webhook subscription by ID.

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • id (String)

    Webhook subscription ID

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

    the optional parameters

Returns:

  • (nil)


102
103
104
105
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 102

def delete_webhook_subscription(, id, opts = {})
  delete_webhook_subscription_with_http_info(, id, opts)
  nil
end

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

Delete Webhook Subscription Delete a webhook subscription by ID.

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • id (String)

    Webhook subscription ID

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

    the optional parameters

Returns:

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

    nil, response status code and response headers



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
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 113

def delete_webhook_subscription_with_http_info(, id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: TollFreeVerificationApi.delete_webhook_subscription ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling TollFreeVerificationApi.delete_webhook_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 TollFreeVerificationApi.delete_webhook_subscription"
  end
  # resource path
  local_var_path = '/accounts/{accountId}/tollFreeVerification/webhooks/subscriptions/{id}'.sub('{' + 'accountId' + '}', CGI.escape(.to_s)).sub('{' + 'id' + '}', CGI.escape(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']) unless header_params['Accept']

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

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

  # return_type
  return_type = opts[:debug_return_type]

  # auth_names
  auth_names = opts[:debug_auth_names] || ['Basic']

  new_options = opts.merge(
    :operation => :"TollFreeVerificationApi.delete_webhook_subscription",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: TollFreeVerificationApi#delete_webhook_subscription\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_toll_free_verification_status(account_id, phone_number, opts = {}) ⇒ TfvStatus

Get Toll-Free Verification Status Gets the verification status for a phone number that is provisioned to your account. Submission information will be appended to the response if it is available.

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • phone_number (String)

    Valid Toll-Free telephone number in E.164 format.

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

    the optional parameters

Returns:



171
172
173
174
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 171

def get_toll_free_verification_status(, phone_number, opts = {})
  data, _status_code, _headers = get_toll_free_verification_status_with_http_info(, phone_number, opts)
  data
end

#get_toll_free_verification_status_with_http_info(account_id, phone_number, opts = {}) ⇒ Array<(TfvStatus, Integer, Hash)>

Get Toll-Free Verification Status Gets the verification status for a phone number that is provisioned to your account. Submission information will be appended to the response if it is available.

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • phone_number (String)

    Valid Toll-Free telephone number in E.164 format.

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

    the optional parameters

Returns:

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

    TfvStatus data, response status code and response headers



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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 182

def get_toll_free_verification_status_with_http_info(, phone_number, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: TollFreeVerificationApi.get_toll_free_verification_status ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling TollFreeVerificationApi.get_toll_free_verification_status"
  end
  # verify the required parameter 'phone_number' is set
  if @api_client.config.client_side_validation && phone_number.nil?
    fail ArgumentError, "Missing the required parameter 'phone_number' when calling TollFreeVerificationApi.get_toll_free_verification_status"
  end
  if @api_client.config.client_side_validation && phone_number.to_s.length > 12
    fail ArgumentError, 'invalid value for "phone_number" when calling TollFreeVerificationApi.get_toll_free_verification_status, the character length must be smaller than or equal to 12.'
  end

  if @api_client.config.client_side_validation && phone_number.to_s.length < 12
    fail ArgumentError, 'invalid value for "phone_number" when calling TollFreeVerificationApi.get_toll_free_verification_status, the character length must be great than or equal to 12.'
  end

  pattern = Regexp.new(/^\+1(800|833|844|855|866|877|888)[2-9]\d{6}$/)
  if @api_client.config.client_side_validation && phone_number !~ pattern
    fail ArgumentError, "invalid value for 'phone_number' when calling TollFreeVerificationApi.get_toll_free_verification_status, must conform to the pattern #{pattern}."
  end

  # resource path
  local_var_path = '/accounts/{accountId}/phoneNumbers/{phoneNumber}/tollFreeVerification'.sub('{' + 'accountId' + '}', CGI.escape(.to_s)).sub('{' + 'phoneNumber' + '}', CGI.escape(phone_number.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']) unless header_params['Accept']

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

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

  # return_type
  return_type = opts[:debug_return_type] || 'TfvStatus'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['Basic']

  new_options = opts.merge(
    :operation => :"TollFreeVerificationApi.get_toll_free_verification_status",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: TollFreeVerificationApi#get_toll_free_verification_status\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#list_toll_free_use_cases(opts = {}) ⇒ Array<String>

List Toll-Free Use Cases Lists valid toll-free use cases.

Parameters:

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

    the optional parameters

Returns:

  • (Array<String>)


251
252
253
254
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 251

def list_toll_free_use_cases(opts = {})
  data, _status_code, _headers = list_toll_free_use_cases_with_http_info(opts)
  data
end

#list_toll_free_use_cases_with_http_info(opts = {}) ⇒ Array<(Array<String>, Integer, Hash)>

List Toll-Free Use Cases Lists valid toll-free use cases.

Parameters:

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

    the optional parameters

Returns:

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

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



260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 260

def list_toll_free_use_cases_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: TollFreeVerificationApi.list_toll_free_use_cases ...'
  end
  # resource path
  local_var_path = '/tollFreeVerification/useCases'

  # 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']) unless header_params['Accept']

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

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

  # return_type
  return_type = opts[:debug_return_type] || 'Array<String>'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['Basic']

  new_options = opts.merge(
    :operation => :"TollFreeVerificationApi.list_toll_free_use_cases",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: TollFreeVerificationApi#list_toll_free_use_cases\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#list_webhook_subscriptions(account_id, opts = {}) ⇒ WebhookSubscriptionsListBody

List Webhook Subscriptions Lists all webhook subscriptions that are registered to receive status updates for the toll-free verification requests submitted under this account (password will not be returned through this API If ‘basicAuthentication` is defined, the `password` property of that object will be null).

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

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

    the optional parameters

Returns:



309
310
311
312
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 309

def list_webhook_subscriptions(, opts = {})
  data, _status_code, _headers = list_webhook_subscriptions_with_http_info(, opts)
  data
end

#list_webhook_subscriptions_with_http_info(account_id, opts = {}) ⇒ Array<(WebhookSubscriptionsListBody, Integer, Hash)>

List Webhook Subscriptions Lists all webhook subscriptions that are registered to receive status updates for the toll-free verification requests submitted under this account (password will not be returned through this API If &#x60;basicAuthentication&#x60; is defined, the &#x60;password&#x60; property of that object will be null).

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

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

    the optional parameters

Returns:



319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 319

def list_webhook_subscriptions_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: TollFreeVerificationApi.list_webhook_subscriptions ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling TollFreeVerificationApi.list_webhook_subscriptions"
  end
  # resource path
  local_var_path = '/accounts/{accountId}/tollFreeVerification/webhooks/subscriptions'.sub('{' + 'accountId' + '}', CGI.escape(.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']) unless header_params['Accept']

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

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

  # return_type
  return_type = opts[:debug_return_type] || 'WebhookSubscriptionsListBody'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['Basic']

  new_options = opts.merge(
    :operation => :"TollFreeVerificationApi.list_webhook_subscriptions",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: TollFreeVerificationApi#list_webhook_subscriptions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#request_toll_free_verification(account_id, verification_request, opts = {}) ⇒ nil

Request Toll-Free Verification Submit a request for verification of a toll-free phone number.

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • verification_request (VerificationRequest)

    Request for verification of a toll-free phone number.

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

    the optional parameters

Returns:

  • (nil)


373
374
375
376
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 373

def request_toll_free_verification(, verification_request, opts = {})
  request_toll_free_verification_with_http_info(, verification_request, opts)
  nil
end

#request_toll_free_verification_with_http_info(account_id, verification_request, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Request Toll-Free Verification Submit a request for verification of a toll-free phone number.

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • verification_request (VerificationRequest)

    Request for verification of a toll-free phone number.

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

    the optional parameters

Returns:

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

    nil, response status code and response headers



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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 384

def request_toll_free_verification_with_http_info(, verification_request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: TollFreeVerificationApi.request_toll_free_verification ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling TollFreeVerificationApi.request_toll_free_verification"
  end
  # verify the required parameter 'verification_request' is set
  if @api_client.config.client_side_validation && verification_request.nil?
    fail ArgumentError, "Missing the required parameter 'verification_request' when calling TollFreeVerificationApi.request_toll_free_verification"
  end
  # resource path
  local_var_path = '/accounts/{accountId}/tollFreeVerification'.sub('{' + 'accountId' + '}', CGI.escape(.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']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

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

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

  # return_type
  return_type = opts[:debug_return_type]

  # auth_names
  auth_names = opts[:debug_auth_names] || ['Basic']

  new_options = opts.merge(
    :operation => :"TollFreeVerificationApi.request_toll_free_verification",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: TollFreeVerificationApi#request_toll_free_verification\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#update_toll_free_verification_request(account_id, phone_number, tfv_submission_wrapper, opts = {}) ⇒ nil

Update Toll-Free Verification Request Updates a toll-free verification request. Submissions are only eligible for resubmission for 7 days within being processed and if resubmission is allowed (resubmitAllowed field is true).

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • phone_number (String)

    Valid Toll-Free telephone number in E.164 format.

  • tfv_submission_wrapper (TfvSubmissionWrapper)

    Update a request for verification of a toll-free phone number.

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

    the optional parameters

Returns:

  • (nil)


448
449
450
451
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 448

def update_toll_free_verification_request(, phone_number, tfv_submission_wrapper, opts = {})
  update_toll_free_verification_request_with_http_info(, phone_number, tfv_submission_wrapper, opts)
  nil
end

#update_toll_free_verification_request_with_http_info(account_id, phone_number, tfv_submission_wrapper, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Update Toll-Free Verification Request Updates a toll-free verification request. Submissions are only eligible for resubmission for 7 days within being processed and if resubmission is allowed (resubmitAllowed field is true).

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • phone_number (String)

    Valid Toll-Free telephone number in E.164 format.

  • tfv_submission_wrapper (TfvSubmissionWrapper)

    Update a request for verification of a toll-free phone number.

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

    the optional parameters

Returns:

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

    nil, response status code and response headers



460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
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
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 460

def update_toll_free_verification_request_with_http_info(, phone_number, tfv_submission_wrapper, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: TollFreeVerificationApi.update_toll_free_verification_request ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling TollFreeVerificationApi.update_toll_free_verification_request"
  end
  # verify the required parameter 'phone_number' is set
  if @api_client.config.client_side_validation && phone_number.nil?
    fail ArgumentError, "Missing the required parameter 'phone_number' when calling TollFreeVerificationApi.update_toll_free_verification_request"
  end
  if @api_client.config.client_side_validation && phone_number.to_s.length > 12
    fail ArgumentError, 'invalid value for "phone_number" when calling TollFreeVerificationApi.update_toll_free_verification_request, the character length must be smaller than or equal to 12.'
  end

  if @api_client.config.client_side_validation && phone_number.to_s.length < 12
    fail ArgumentError, 'invalid value for "phone_number" when calling TollFreeVerificationApi.update_toll_free_verification_request, the character length must be great than or equal to 12.'
  end

  pattern = Regexp.new(/^\+1(800|833|844|855|866|877|888)[2-9]\d{6}$/)
  if @api_client.config.client_side_validation && phone_number !~ pattern
    fail ArgumentError, "invalid value for 'phone_number' when calling TollFreeVerificationApi.update_toll_free_verification_request, must conform to the pattern #{pattern}."
  end

  # verify the required parameter 'tfv_submission_wrapper' is set
  if @api_client.config.client_side_validation && tfv_submission_wrapper.nil?
    fail ArgumentError, "Missing the required parameter 'tfv_submission_wrapper' when calling TollFreeVerificationApi.update_toll_free_verification_request"
  end
  # resource path
  local_var_path = '/accounts/{accountId}/phoneNumbers/{phoneNumber}/tollFreeVerification'.sub('{' + 'accountId' + '}', CGI.escape(.to_s)).sub('{' + 'phoneNumber' + '}', CGI.escape(phone_number.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']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

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

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

  # return_type
  return_type = opts[:debug_return_type]

  # auth_names
  auth_names = opts[:debug_auth_names] || ['Basic']

  new_options = opts.merge(
    :operation => :"TollFreeVerificationApi.update_toll_free_verification_request",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: TollFreeVerificationApi#update_toll_free_verification_request\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#update_webhook_subscription(account_id, id, webhook_subscription_request_schema, opts = {}) ⇒ WebhookSubscription

Update Webhook Subscription Update an existing webhook subscription (‘callbackUrl` and `basicAuthentication` can be updated).

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • id (String)

    Webhook subscription ID

  • webhook_subscription_request_schema (WebhookSubscriptionRequestSchema)

    Information about a webhook that Bandwidth should send upon the completion of event customer is trying to subscribe to.

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

    the optional parameters

Returns:



541
542
543
544
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 541

def update_webhook_subscription(, id, webhook_subscription_request_schema, opts = {})
  data, _status_code, _headers = update_webhook_subscription_with_http_info(, id, webhook_subscription_request_schema, opts)
  data
end

#update_webhook_subscription_with_http_info(account_id, id, webhook_subscription_request_schema, opts = {}) ⇒ Array<(WebhookSubscription, Integer, Hash)>

Update Webhook Subscription Update an existing webhook subscription (&#x60;callbackUrl&#x60; and &#x60;basicAuthentication&#x60; can be updated).

Parameters:

  • account_id (String)

    Your Bandwidth Account ID.

  • id (String)

    Webhook subscription ID

  • webhook_subscription_request_schema (WebhookSubscriptionRequestSchema)

    Information about a webhook that Bandwidth should send upon the completion of event customer is trying to subscribe to.

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

    the optional parameters

Returns:

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

    WebhookSubscription data, response status code and response headers



553
554
555
556
557
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
609
610
611
612
# File 'lib/bandwidth-sdk/api/toll_free_verification_api.rb', line 553

def update_webhook_subscription_with_http_info(, id, webhook_subscription_request_schema, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: TollFreeVerificationApi.update_webhook_subscription ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling TollFreeVerificationApi.update_webhook_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 TollFreeVerificationApi.update_webhook_subscription"
  end
  # verify the required parameter 'webhook_subscription_request_schema' is set
  if @api_client.config.client_side_validation && webhook_subscription_request_schema.nil?
    fail ArgumentError, "Missing the required parameter 'webhook_subscription_request_schema' when calling TollFreeVerificationApi.update_webhook_subscription"
  end
  # resource path
  local_var_path = '/accounts/{accountId}/tollFreeVerification/webhooks/subscriptions/{id}'.sub('{' + 'accountId' + '}', CGI.escape(.to_s)).sub('{' + 'id' + '}', CGI.escape(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']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

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

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

  # return_type
  return_type = opts[:debug_return_type] || 'WebhookSubscription'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['Basic']

  new_options = opts.merge(
    :operation => :"TollFreeVerificationApi.update_webhook_subscription",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: TollFreeVerificationApi#update_webhook_subscription\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end