bandwidth-sdk 7.1.0 → 9.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -0
- data/lib/bandwidth/api_helper.rb +20 -17
- data/lib/bandwidth/configuration.rb +7 -19
- data/lib/bandwidth/http/faraday_client.rb +1 -1
- data/lib/bandwidth/messaging_lib/messaging/controllers/api_controller.rb +53 -42
- data/lib/bandwidth/messaging_lib/messaging/controllers/base_controller.rb +3 -5
- data/lib/bandwidth/messaging_lib/messaging/exceptions/messaging_exception.rb +5 -2
- data/lib/bandwidth/messaging_lib/messaging/models/bandwidth_callback_message.rb +31 -11
- data/lib/bandwidth/messaging_lib/messaging/models/bandwidth_message.rb +54 -25
- data/lib/bandwidth/messaging_lib/messaging/models/bandwidth_message_item.rb +65 -32
- data/lib/bandwidth/messaging_lib/messaging/models/bandwidth_messages_list.rb +23 -4
- data/lib/bandwidth/messaging_lib/messaging/models/deferred_result.rb +20 -4
- data/lib/bandwidth/messaging_lib/messaging/models/media.rb +23 -6
- data/lib/bandwidth/messaging_lib/messaging/models/message_request.rb +32 -14
- data/lib/bandwidth/messaging_lib/messaging/models/page_info.rb +28 -8
- data/lib/bandwidth/messaging_lib/messaging/models/tag.rb +20 -4
- data/lib/bandwidth/models/base_model.rb +11 -0
- data/lib/bandwidth/multi_factor_auth_lib/multi_factor_auth/controllers/base_controller.rb +3 -5
- data/lib/bandwidth/multi_factor_auth_lib/multi_factor_auth/controllers/mfa_controller.rb +21 -16
- data/lib/bandwidth/multi_factor_auth_lib/multi_factor_auth/exceptions/error_with_request_exception.rb +5 -2
- data/lib/bandwidth/multi_factor_auth_lib/multi_factor_auth/exceptions/forbidden_request_exception.rb +4 -1
- data/lib/bandwidth/multi_factor_auth_lib/multi_factor_auth/exceptions/unauthorized_request_exception.rb +4 -1
- data/lib/bandwidth/multi_factor_auth_lib/multi_factor_auth/models/two_factor_code_request_schema.rb +27 -12
- data/lib/bandwidth/multi_factor_auth_lib/multi_factor_auth/models/two_factor_messaging_response.rb +17 -2
- data/lib/bandwidth/multi_factor_auth_lib/multi_factor_auth/models/two_factor_verify_code_response.rb +17 -2
- data/lib/bandwidth/multi_factor_auth_lib/multi_factor_auth/models/two_factor_verify_request_schema.rb +29 -10
- data/lib/bandwidth/multi_factor_auth_lib/multi_factor_auth/models/two_factor_voice_response.rb +17 -2
- data/lib/bandwidth/phone_number_lookup_lib/phone_number_lookup/controllers/api_controller.rb +212 -210
- data/lib/bandwidth/phone_number_lookup_lib/phone_number_lookup/controllers/base_controller.rb +3 -5
- data/lib/bandwidth/phone_number_lookup_lib/phone_number_lookup/exceptions/accounts_tnlookup400_error_exception.rb +4 -1
- data/lib/bandwidth/phone_number_lookup_lib/phone_number_lookup/models/order_request.rb +17 -2
- data/lib/bandwidth/phone_number_lookup_lib/phone_number_lookup/models/order_response.rb +20 -4
- data/lib/bandwidth/phone_number_lookup_lib/phone_number_lookup/models/order_status.rb +28 -7
- data/lib/bandwidth/phone_number_lookup_lib/phone_number_lookup/models/result.rb +43 -18
- data/lib/bandwidth/utilities/date_time_helper.rb +2 -2
- data/lib/bandwidth/utilities/file_wrapper.rb +1 -2
- data/lib/bandwidth/voice_lib/bxml/verbs/ring.rb +2 -1
- data/lib/bandwidth/voice_lib/voice/controllers/api_controller.rb +173 -161
- data/lib/bandwidth/voice_lib/voice/controllers/base_controller.rb +3 -5
- data/lib/bandwidth/voice_lib/voice/exceptions/api_error_exception.rb +6 -3
- data/lib/bandwidth/voice_lib/voice/models/call_callback.rb +343 -0
- data/lib/bandwidth/voice_lib/voice/models/call_recording_metadata.rb +78 -37
- data/lib/bandwidth/voice_lib/voice/models/call_state.rb +94 -42
- data/lib/bandwidth/voice_lib/voice/models/conference_callback.rb +211 -0
- data/lib/bandwidth/voice_lib/voice/models/conference_member_state.rb +35 -12
- data/lib/bandwidth/voice_lib/voice/models/conference_recording_metadata.rb +55 -24
- data/lib/bandwidth/voice_lib/voice/models/conference_state.rb +54 -17
- data/lib/bandwidth/voice_lib/voice/models/create_call_request.rb +173 -96
- data/lib/bandwidth/voice_lib/voice/models/create_call_response.rb +85 -41
- data/lib/bandwidth/voice_lib/voice/models/diversion.rb +80 -0
- data/lib/bandwidth/voice_lib/voice/models/fallback_method_enum.rb +17 -0
- data/lib/bandwidth/voice_lib/voice/models/machine_detection_configuration.rb +218 -0
- data/lib/bandwidth/voice_lib/voice/models/mode_enum.rb +20 -0
- data/lib/bandwidth/voice_lib/voice/models/modify_call_recording_request.rb +15 -2
- data/lib/bandwidth/voice_lib/voice/models/modify_call_request.rb +59 -19
- data/lib/bandwidth/voice_lib/voice/models/modify_conference_request.rb +55 -18
- data/lib/bandwidth/voice_lib/voice/models/transcribe_recording_request.rb +40 -12
- data/lib/bandwidth/voice_lib/voice/models/transcript.rb +20 -4
- data/lib/bandwidth/voice_lib/voice/models/transcription.rb +80 -0
- data/lib/bandwidth/voice_lib/voice/models/transcription_metadata.rb +26 -8
- data/lib/bandwidth/voice_lib/voice/models/transcription_response.rb +18 -1
- data/lib/bandwidth/voice_lib/voice.rb +7 -1
- data/lib/bandwidth/web_rtc_lib/utils/web_rtc_transfer.rb +5 -4
- data/lib/bandwidth/web_rtc_lib/web_rtc/controllers/api_controller.rb +61 -50
- data/lib/bandwidth/web_rtc_lib/web_rtc/controllers/base_controller.rb +3 -5
- data/lib/bandwidth/web_rtc_lib/web_rtc/exceptions/error_exception.rb +5 -2
- data/lib/bandwidth/web_rtc_lib/web_rtc/models/accounts_participants_response.rb +20 -5
- data/lib/bandwidth/web_rtc_lib/web_rtc/models/participant.rb +37 -14
- data/lib/bandwidth/web_rtc_lib/web_rtc/models/participant_subscription.rb +15 -2
- data/lib/bandwidth/web_rtc_lib/web_rtc/models/session.rb +20 -4
- data/lib/bandwidth/web_rtc_lib/web_rtc/models/subscriptions.rb +20 -3
- data/lib/bandwidth.rb +19 -18
- data/test/integration/test_integration.rb +110 -62
- metadata +13 -6
data/lib/bandwidth/phone_number_lookup_lib/phone_number_lookup/controllers/api_controller.rb
CHANGED
@@ -11,7 +11,7 @@ module PhoneNumberLookup
|
|
11
11
|
super(config, http_call_back: http_call_back)
|
12
12
|
end
|
13
13
|
|
14
|
-
# Create a TN Lookup Order
|
14
|
+
# Create a TN Lookup Order.
|
15
15
|
# @param [String] account_id Required parameter: The ID of the Bandwidth
|
16
16
|
# account that the user belongs to.
|
17
17
|
# @param [OrderRequest] body Required parameter: Example:
|
@@ -43,13 +43,14 @@ module PhoneNumberLookup
|
|
43
43
|
_response = execute_request(_request)
|
44
44
|
|
45
45
|
# Validate response against endpoint and global error codes.
|
46
|
-
|
46
|
+
case _response.status_code
|
47
|
+
when 400
|
47
48
|
raise AccountsTnlookup400ErrorException.new(
|
48
49
|
'Bad Request. Ensure that your request payload is properly' \
|
49
50
|
' formatted and that the telephone numbers used are valid.',
|
50
51
|
_response
|
51
52
|
)
|
52
|
-
|
53
|
+
when 401
|
53
54
|
raise APIException.new(
|
54
55
|
'Unauthorized. Ensure that you are using the proper credentials' \
|
55
56
|
' for the environment you are accessing, your user has' \
|
@@ -57,712 +58,712 @@ module PhoneNumberLookup
|
|
57
58
|
' Bandwidth account is enabled for TN Lookup access.',
|
58
59
|
_response
|
59
60
|
)
|
60
|
-
|
61
|
+
when 415
|
61
62
|
raise APIException.new(
|
62
63
|
'Invalid content-type. Ensure that your content-type header is set' \
|
63
64
|
' to application/json.',
|
64
65
|
_response
|
65
66
|
)
|
66
|
-
|
67
|
+
when 429
|
67
68
|
raise APIException.new(
|
68
69
|
'Too Many Requests. Reduce the amount of requests that you are' \
|
69
70
|
' sending in order to avoid receiving this status code.',
|
70
71
|
_response
|
71
72
|
)
|
72
|
-
|
73
|
+
when 500
|
73
74
|
raise APIException.new(
|
74
75
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
75
76
|
' requests are receiving this status code for an' \
|
76
77
|
' extended period of time.',
|
77
78
|
_response
|
78
79
|
)
|
79
|
-
|
80
|
+
when 501
|
80
81
|
raise APIException.new(
|
81
82
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
82
83
|
' requests are receiving this status code for an' \
|
83
84
|
' extended period of time.',
|
84
85
|
_response
|
85
86
|
)
|
86
|
-
|
87
|
+
when 502
|
87
88
|
raise APIException.new(
|
88
89
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
89
90
|
' requests are receiving this status code for an' \
|
90
91
|
' extended period of time.',
|
91
92
|
_response
|
92
93
|
)
|
93
|
-
|
94
|
+
when 503
|
94
95
|
raise APIException.new(
|
95
96
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
96
97
|
' requests are receiving this status code for an' \
|
97
98
|
' extended period of time.',
|
98
99
|
_response
|
99
100
|
)
|
100
|
-
|
101
|
+
when 504
|
101
102
|
raise APIException.new(
|
102
103
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
103
104
|
' requests are receiving this status code for an' \
|
104
105
|
' extended period of time.',
|
105
106
|
_response
|
106
107
|
)
|
107
|
-
|
108
|
+
when 505
|
108
109
|
raise APIException.new(
|
109
110
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
110
111
|
' requests are receiving this status code for an' \
|
111
112
|
' extended period of time.',
|
112
113
|
_response
|
113
114
|
)
|
114
|
-
|
115
|
+
when 506
|
115
116
|
raise APIException.new(
|
116
117
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
117
118
|
' requests are receiving this status code for an' \
|
118
119
|
' extended period of time.',
|
119
120
|
_response
|
120
121
|
)
|
121
|
-
|
122
|
+
when 507
|
122
123
|
raise APIException.new(
|
123
124
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
124
125
|
' requests are receiving this status code for an' \
|
125
126
|
' extended period of time.',
|
126
127
|
_response
|
127
128
|
)
|
128
|
-
|
129
|
+
when 508
|
129
130
|
raise APIException.new(
|
130
131
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
131
132
|
' requests are receiving this status code for an' \
|
132
133
|
' extended period of time.',
|
133
134
|
_response
|
134
135
|
)
|
135
|
-
|
136
|
+
when 509
|
136
137
|
raise APIException.new(
|
137
138
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
138
139
|
' requests are receiving this status code for an' \
|
139
140
|
' extended period of time.',
|
140
141
|
_response
|
141
142
|
)
|
142
|
-
|
143
|
+
when 510
|
143
144
|
raise APIException.new(
|
144
145
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
145
146
|
' requests are receiving this status code for an' \
|
146
147
|
' extended period of time.',
|
147
148
|
_response
|
148
149
|
)
|
149
|
-
|
150
|
+
when 511
|
150
151
|
raise APIException.new(
|
151
152
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
152
153
|
' requests are receiving this status code for an' \
|
153
154
|
' extended period of time.',
|
154
155
|
_response
|
155
156
|
)
|
156
|
-
|
157
|
+
when 512
|
157
158
|
raise APIException.new(
|
158
159
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
159
160
|
' requests are receiving this status code for an' \
|
160
161
|
' extended period of time.',
|
161
162
|
_response
|
162
163
|
)
|
163
|
-
|
164
|
+
when 513
|
164
165
|
raise APIException.new(
|
165
166
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
166
167
|
' requests are receiving this status code for an' \
|
167
168
|
' extended period of time.',
|
168
169
|
_response
|
169
170
|
)
|
170
|
-
|
171
|
+
when 514
|
171
172
|
raise APIException.new(
|
172
173
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
173
174
|
' requests are receiving this status code for an' \
|
174
175
|
' extended period of time.',
|
175
176
|
_response
|
176
177
|
)
|
177
|
-
|
178
|
+
when 515
|
178
179
|
raise APIException.new(
|
179
180
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
180
181
|
' requests are receiving this status code for an' \
|
181
182
|
' extended period of time.',
|
182
183
|
_response
|
183
184
|
)
|
184
|
-
|
185
|
+
when 516
|
185
186
|
raise APIException.new(
|
186
187
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
187
188
|
' requests are receiving this status code for an' \
|
188
189
|
' extended period of time.',
|
189
190
|
_response
|
190
191
|
)
|
191
|
-
|
192
|
+
when 517
|
192
193
|
raise APIException.new(
|
193
194
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
194
195
|
' requests are receiving this status code for an' \
|
195
196
|
' extended period of time.',
|
196
197
|
_response
|
197
198
|
)
|
198
|
-
|
199
|
+
when 518
|
199
200
|
raise APIException.new(
|
200
201
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
201
202
|
' requests are receiving this status code for an' \
|
202
203
|
' extended period of time.',
|
203
204
|
_response
|
204
205
|
)
|
205
|
-
|
206
|
+
when 519
|
206
207
|
raise APIException.new(
|
207
208
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
208
209
|
' requests are receiving this status code for an' \
|
209
210
|
' extended period of time.',
|
210
211
|
_response
|
211
212
|
)
|
212
|
-
|
213
|
+
when 520
|
213
214
|
raise APIException.new(
|
214
215
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
215
216
|
' requests are receiving this status code for an' \
|
216
217
|
' extended period of time.',
|
217
218
|
_response
|
218
219
|
)
|
219
|
-
|
220
|
+
when 521
|
220
221
|
raise APIException.new(
|
221
222
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
222
223
|
' requests are receiving this status code for an' \
|
223
224
|
' extended period of time.',
|
224
225
|
_response
|
225
226
|
)
|
226
|
-
|
227
|
+
when 522
|
227
228
|
raise APIException.new(
|
228
229
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
229
230
|
' requests are receiving this status code for an' \
|
230
231
|
' extended period of time.',
|
231
232
|
_response
|
232
233
|
)
|
233
|
-
|
234
|
+
when 523
|
234
235
|
raise APIException.new(
|
235
236
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
236
237
|
' requests are receiving this status code for an' \
|
237
238
|
' extended period of time.',
|
238
239
|
_response
|
239
240
|
)
|
240
|
-
|
241
|
+
when 524
|
241
242
|
raise APIException.new(
|
242
243
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
243
244
|
' requests are receiving this status code for an' \
|
244
245
|
' extended period of time.',
|
245
246
|
_response
|
246
247
|
)
|
247
|
-
|
248
|
+
when 525
|
248
249
|
raise APIException.new(
|
249
250
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
250
251
|
' requests are receiving this status code for an' \
|
251
252
|
' extended period of time.',
|
252
253
|
_response
|
253
254
|
)
|
254
|
-
|
255
|
+
when 526
|
255
256
|
raise APIException.new(
|
256
257
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
257
258
|
' requests are receiving this status code for an' \
|
258
259
|
' extended period of time.',
|
259
260
|
_response
|
260
261
|
)
|
261
|
-
|
262
|
+
when 527
|
262
263
|
raise APIException.new(
|
263
264
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
264
265
|
' requests are receiving this status code for an' \
|
265
266
|
' extended period of time.',
|
266
267
|
_response
|
267
268
|
)
|
268
|
-
|
269
|
+
when 528
|
269
270
|
raise APIException.new(
|
270
271
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
271
272
|
' requests are receiving this status code for an' \
|
272
273
|
' extended period of time.',
|
273
274
|
_response
|
274
275
|
)
|
275
|
-
|
276
|
+
when 529
|
276
277
|
raise APIException.new(
|
277
278
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
278
279
|
' requests are receiving this status code for an' \
|
279
280
|
' extended period of time.',
|
280
281
|
_response
|
281
282
|
)
|
282
|
-
|
283
|
+
when 530
|
283
284
|
raise APIException.new(
|
284
285
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
285
286
|
' requests are receiving this status code for an' \
|
286
287
|
' extended period of time.',
|
287
288
|
_response
|
288
289
|
)
|
289
|
-
|
290
|
+
when 531
|
290
291
|
raise APIException.new(
|
291
292
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
292
293
|
' requests are receiving this status code for an' \
|
293
294
|
' extended period of time.',
|
294
295
|
_response
|
295
296
|
)
|
296
|
-
|
297
|
+
when 532
|
297
298
|
raise APIException.new(
|
298
299
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
299
300
|
' requests are receiving this status code for an' \
|
300
301
|
' extended period of time.',
|
301
302
|
_response
|
302
303
|
)
|
303
|
-
|
304
|
+
when 533
|
304
305
|
raise APIException.new(
|
305
306
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
306
307
|
' requests are receiving this status code for an' \
|
307
308
|
' extended period of time.',
|
308
309
|
_response
|
309
310
|
)
|
310
|
-
|
311
|
+
when 534
|
311
312
|
raise APIException.new(
|
312
313
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
313
314
|
' requests are receiving this status code for an' \
|
314
315
|
' extended period of time.',
|
315
316
|
_response
|
316
317
|
)
|
317
|
-
|
318
|
+
when 535
|
318
319
|
raise APIException.new(
|
319
320
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
320
321
|
' requests are receiving this status code for an' \
|
321
322
|
' extended period of time.',
|
322
323
|
_response
|
323
324
|
)
|
324
|
-
|
325
|
+
when 536
|
325
326
|
raise APIException.new(
|
326
327
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
327
328
|
' requests are receiving this status code for an' \
|
328
329
|
' extended period of time.',
|
329
330
|
_response
|
330
331
|
)
|
331
|
-
|
332
|
+
when 537
|
332
333
|
raise APIException.new(
|
333
334
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
334
335
|
' requests are receiving this status code for an' \
|
335
336
|
' extended period of time.',
|
336
337
|
_response
|
337
338
|
)
|
338
|
-
|
339
|
+
when 538
|
339
340
|
raise APIException.new(
|
340
341
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
341
342
|
' requests are receiving this status code for an' \
|
342
343
|
' extended period of time.',
|
343
344
|
_response
|
344
345
|
)
|
345
|
-
|
346
|
+
when 539
|
346
347
|
raise APIException.new(
|
347
348
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
348
349
|
' requests are receiving this status code for an' \
|
349
350
|
' extended period of time.',
|
350
351
|
_response
|
351
352
|
)
|
352
|
-
|
353
|
+
when 540
|
353
354
|
raise APIException.new(
|
354
355
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
355
356
|
' requests are receiving this status code for an' \
|
356
357
|
' extended period of time.',
|
357
358
|
_response
|
358
359
|
)
|
359
|
-
|
360
|
+
when 541
|
360
361
|
raise APIException.new(
|
361
362
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
362
363
|
' requests are receiving this status code for an' \
|
363
364
|
' extended period of time.',
|
364
365
|
_response
|
365
366
|
)
|
366
|
-
|
367
|
+
when 542
|
367
368
|
raise APIException.new(
|
368
369
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
369
370
|
' requests are receiving this status code for an' \
|
370
371
|
' extended period of time.',
|
371
372
|
_response
|
372
373
|
)
|
373
|
-
|
374
|
+
when 543
|
374
375
|
raise APIException.new(
|
375
376
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
376
377
|
' requests are receiving this status code for an' \
|
377
378
|
' extended period of time.',
|
378
379
|
_response
|
379
380
|
)
|
380
|
-
|
381
|
+
when 544
|
381
382
|
raise APIException.new(
|
382
383
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
383
384
|
' requests are receiving this status code for an' \
|
384
385
|
' extended period of time.',
|
385
386
|
_response
|
386
387
|
)
|
387
|
-
|
388
|
+
when 545
|
388
389
|
raise APIException.new(
|
389
390
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
390
391
|
' requests are receiving this status code for an' \
|
391
392
|
' extended period of time.',
|
392
393
|
_response
|
393
394
|
)
|
394
|
-
|
395
|
+
when 546
|
395
396
|
raise APIException.new(
|
396
397
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
397
398
|
' requests are receiving this status code for an' \
|
398
399
|
' extended period of time.',
|
399
400
|
_response
|
400
401
|
)
|
401
|
-
|
402
|
+
when 547
|
402
403
|
raise APIException.new(
|
403
404
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
404
405
|
' requests are receiving this status code for an' \
|
405
406
|
' extended period of time.',
|
406
407
|
_response
|
407
408
|
)
|
408
|
-
|
409
|
+
when 548
|
409
410
|
raise APIException.new(
|
410
411
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
411
412
|
' requests are receiving this status code for an' \
|
412
413
|
' extended period of time.',
|
413
414
|
_response
|
414
415
|
)
|
415
|
-
|
416
|
+
when 549
|
416
417
|
raise APIException.new(
|
417
418
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
418
419
|
' requests are receiving this status code for an' \
|
419
420
|
' extended period of time.',
|
420
421
|
_response
|
421
422
|
)
|
422
|
-
|
423
|
+
when 550
|
423
424
|
raise APIException.new(
|
424
425
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
425
426
|
' requests are receiving this status code for an' \
|
426
427
|
' extended period of time.',
|
427
428
|
_response
|
428
429
|
)
|
429
|
-
|
430
|
+
when 551
|
430
431
|
raise APIException.new(
|
431
432
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
432
433
|
' requests are receiving this status code for an' \
|
433
434
|
' extended period of time.',
|
434
435
|
_response
|
435
436
|
)
|
436
|
-
|
437
|
+
when 552
|
437
438
|
raise APIException.new(
|
438
439
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
439
440
|
' requests are receiving this status code for an' \
|
440
441
|
' extended period of time.',
|
441
442
|
_response
|
442
443
|
)
|
443
|
-
|
444
|
+
when 553
|
444
445
|
raise APIException.new(
|
445
446
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
446
447
|
' requests are receiving this status code for an' \
|
447
448
|
' extended period of time.',
|
448
449
|
_response
|
449
450
|
)
|
450
|
-
|
451
|
+
when 554
|
451
452
|
raise APIException.new(
|
452
453
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
453
454
|
' requests are receiving this status code for an' \
|
454
455
|
' extended period of time.',
|
455
456
|
_response
|
456
457
|
)
|
457
|
-
|
458
|
+
when 555
|
458
459
|
raise APIException.new(
|
459
460
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
460
461
|
' requests are receiving this status code for an' \
|
461
462
|
' extended period of time.',
|
462
463
|
_response
|
463
464
|
)
|
464
|
-
|
465
|
+
when 556
|
465
466
|
raise APIException.new(
|
466
467
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
467
468
|
' requests are receiving this status code for an' \
|
468
469
|
' extended period of time.',
|
469
470
|
_response
|
470
471
|
)
|
471
|
-
|
472
|
+
when 557
|
472
473
|
raise APIException.new(
|
473
474
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
474
475
|
' requests are receiving this status code for an' \
|
475
476
|
' extended period of time.',
|
476
477
|
_response
|
477
478
|
)
|
478
|
-
|
479
|
+
when 558
|
479
480
|
raise APIException.new(
|
480
481
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
481
482
|
' requests are receiving this status code for an' \
|
482
483
|
' extended period of time.',
|
483
484
|
_response
|
484
485
|
)
|
485
|
-
|
486
|
+
when 559
|
486
487
|
raise APIException.new(
|
487
488
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
488
489
|
' requests are receiving this status code for an' \
|
489
490
|
' extended period of time.',
|
490
491
|
_response
|
491
492
|
)
|
492
|
-
|
493
|
+
when 560
|
493
494
|
raise APIException.new(
|
494
495
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
495
496
|
' requests are receiving this status code for an' \
|
496
497
|
' extended period of time.',
|
497
498
|
_response
|
498
499
|
)
|
499
|
-
|
500
|
+
when 561
|
500
501
|
raise APIException.new(
|
501
502
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
502
503
|
' requests are receiving this status code for an' \
|
503
504
|
' extended period of time.',
|
504
505
|
_response
|
505
506
|
)
|
506
|
-
|
507
|
+
when 562
|
507
508
|
raise APIException.new(
|
508
509
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
509
510
|
' requests are receiving this status code for an' \
|
510
511
|
' extended period of time.',
|
511
512
|
_response
|
512
513
|
)
|
513
|
-
|
514
|
+
when 563
|
514
515
|
raise APIException.new(
|
515
516
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
516
517
|
' requests are receiving this status code for an' \
|
517
518
|
' extended period of time.',
|
518
519
|
_response
|
519
520
|
)
|
520
|
-
|
521
|
+
when 564
|
521
522
|
raise APIException.new(
|
522
523
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
523
524
|
' requests are receiving this status code for an' \
|
524
525
|
' extended period of time.',
|
525
526
|
_response
|
526
527
|
)
|
527
|
-
|
528
|
+
when 565
|
528
529
|
raise APIException.new(
|
529
530
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
530
531
|
' requests are receiving this status code for an' \
|
531
532
|
' extended period of time.',
|
532
533
|
_response
|
533
534
|
)
|
534
|
-
|
535
|
+
when 566
|
535
536
|
raise APIException.new(
|
536
537
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
537
538
|
' requests are receiving this status code for an' \
|
538
539
|
' extended period of time.',
|
539
540
|
_response
|
540
541
|
)
|
541
|
-
|
542
|
+
when 567
|
542
543
|
raise APIException.new(
|
543
544
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
544
545
|
' requests are receiving this status code for an' \
|
545
546
|
' extended period of time.',
|
546
547
|
_response
|
547
548
|
)
|
548
|
-
|
549
|
+
when 568
|
549
550
|
raise APIException.new(
|
550
551
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
551
552
|
' requests are receiving this status code for an' \
|
552
553
|
' extended period of time.',
|
553
554
|
_response
|
554
555
|
)
|
555
|
-
|
556
|
+
when 569
|
556
557
|
raise APIException.new(
|
557
558
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
558
559
|
' requests are receiving this status code for an' \
|
559
560
|
' extended period of time.',
|
560
561
|
_response
|
561
562
|
)
|
562
|
-
|
563
|
+
when 570
|
563
564
|
raise APIException.new(
|
564
565
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
565
566
|
' requests are receiving this status code for an' \
|
566
567
|
' extended period of time.',
|
567
568
|
_response
|
568
569
|
)
|
569
|
-
|
570
|
+
when 571
|
570
571
|
raise APIException.new(
|
571
572
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
572
573
|
' requests are receiving this status code for an' \
|
573
574
|
' extended period of time.',
|
574
575
|
_response
|
575
576
|
)
|
576
|
-
|
577
|
+
when 572
|
577
578
|
raise APIException.new(
|
578
579
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
579
580
|
' requests are receiving this status code for an' \
|
580
581
|
' extended period of time.',
|
581
582
|
_response
|
582
583
|
)
|
583
|
-
|
584
|
+
when 573
|
584
585
|
raise APIException.new(
|
585
586
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
586
587
|
' requests are receiving this status code for an' \
|
587
588
|
' extended period of time.',
|
588
589
|
_response
|
589
590
|
)
|
590
|
-
|
591
|
+
when 574
|
591
592
|
raise APIException.new(
|
592
593
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
593
594
|
' requests are receiving this status code for an' \
|
594
595
|
' extended period of time.',
|
595
596
|
_response
|
596
597
|
)
|
597
|
-
|
598
|
+
when 575
|
598
599
|
raise APIException.new(
|
599
600
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
600
601
|
' requests are receiving this status code for an' \
|
601
602
|
' extended period of time.',
|
602
603
|
_response
|
603
604
|
)
|
604
|
-
|
605
|
+
when 576
|
605
606
|
raise APIException.new(
|
606
607
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
607
608
|
' requests are receiving this status code for an' \
|
608
609
|
' extended period of time.',
|
609
610
|
_response
|
610
611
|
)
|
611
|
-
|
612
|
+
when 577
|
612
613
|
raise APIException.new(
|
613
614
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
614
615
|
' requests are receiving this status code for an' \
|
615
616
|
' extended period of time.',
|
616
617
|
_response
|
617
618
|
)
|
618
|
-
|
619
|
+
when 578
|
619
620
|
raise APIException.new(
|
620
621
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
621
622
|
' requests are receiving this status code for an' \
|
622
623
|
' extended period of time.',
|
623
624
|
_response
|
624
625
|
)
|
625
|
-
|
626
|
+
when 579
|
626
627
|
raise APIException.new(
|
627
628
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
628
629
|
' requests are receiving this status code for an' \
|
629
630
|
' extended period of time.',
|
630
631
|
_response
|
631
632
|
)
|
632
|
-
|
633
|
+
when 580
|
633
634
|
raise APIException.new(
|
634
635
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
635
636
|
' requests are receiving this status code for an' \
|
636
637
|
' extended period of time.',
|
637
638
|
_response
|
638
639
|
)
|
639
|
-
|
640
|
+
when 581
|
640
641
|
raise APIException.new(
|
641
642
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
642
643
|
' requests are receiving this status code for an' \
|
643
644
|
' extended period of time.',
|
644
645
|
_response
|
645
646
|
)
|
646
|
-
|
647
|
+
when 582
|
647
648
|
raise APIException.new(
|
648
649
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
649
650
|
' requests are receiving this status code for an' \
|
650
651
|
' extended period of time.',
|
651
652
|
_response
|
652
653
|
)
|
653
|
-
|
654
|
+
when 583
|
654
655
|
raise APIException.new(
|
655
656
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
656
657
|
' requests are receiving this status code for an' \
|
657
658
|
' extended period of time.',
|
658
659
|
_response
|
659
660
|
)
|
660
|
-
|
661
|
+
when 584
|
661
662
|
raise APIException.new(
|
662
663
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
663
664
|
' requests are receiving this status code for an' \
|
664
665
|
' extended period of time.',
|
665
666
|
_response
|
666
667
|
)
|
667
|
-
|
668
|
+
when 585
|
668
669
|
raise APIException.new(
|
669
670
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
670
671
|
' requests are receiving this status code for an' \
|
671
672
|
' extended period of time.',
|
672
673
|
_response
|
673
674
|
)
|
674
|
-
|
675
|
+
when 586
|
675
676
|
raise APIException.new(
|
676
677
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
677
678
|
' requests are receiving this status code for an' \
|
678
679
|
' extended period of time.',
|
679
680
|
_response
|
680
681
|
)
|
681
|
-
|
682
|
+
when 587
|
682
683
|
raise APIException.new(
|
683
684
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
684
685
|
' requests are receiving this status code for an' \
|
685
686
|
' extended period of time.',
|
686
687
|
_response
|
687
688
|
)
|
688
|
-
|
689
|
+
when 588
|
689
690
|
raise APIException.new(
|
690
691
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
691
692
|
' requests are receiving this status code for an' \
|
692
693
|
' extended period of time.',
|
693
694
|
_response
|
694
695
|
)
|
695
|
-
|
696
|
+
when 589
|
696
697
|
raise APIException.new(
|
697
698
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
698
699
|
' requests are receiving this status code for an' \
|
699
700
|
' extended period of time.',
|
700
701
|
_response
|
701
702
|
)
|
702
|
-
|
703
|
+
when 590
|
703
704
|
raise APIException.new(
|
704
705
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
705
706
|
' requests are receiving this status code for an' \
|
706
707
|
' extended period of time.',
|
707
708
|
_response
|
708
709
|
)
|
709
|
-
|
710
|
+
when 591
|
710
711
|
raise APIException.new(
|
711
712
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
712
713
|
' requests are receiving this status code for an' \
|
713
714
|
' extended period of time.',
|
714
715
|
_response
|
715
716
|
)
|
716
|
-
|
717
|
+
when 592
|
717
718
|
raise APIException.new(
|
718
719
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
719
720
|
' requests are receiving this status code for an' \
|
720
721
|
' extended period of time.',
|
721
722
|
_response
|
722
723
|
)
|
723
|
-
|
724
|
+
when 593
|
724
725
|
raise APIException.new(
|
725
726
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
726
727
|
' requests are receiving this status code for an' \
|
727
728
|
' extended period of time.',
|
728
729
|
_response
|
729
730
|
)
|
730
|
-
|
731
|
+
when 594
|
731
732
|
raise APIException.new(
|
732
733
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
733
734
|
' requests are receiving this status code for an' \
|
734
735
|
' extended period of time.',
|
735
736
|
_response
|
736
737
|
)
|
737
|
-
|
738
|
+
when 595
|
738
739
|
raise APIException.new(
|
739
740
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
740
741
|
' requests are receiving this status code for an' \
|
741
742
|
' extended period of time.',
|
742
743
|
_response
|
743
744
|
)
|
744
|
-
|
745
|
+
when 596
|
745
746
|
raise APIException.new(
|
746
747
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
747
748
|
' requests are receiving this status code for an' \
|
748
749
|
' extended period of time.',
|
749
750
|
_response
|
750
751
|
)
|
751
|
-
|
752
|
+
when 597
|
752
753
|
raise APIException.new(
|
753
754
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
754
755
|
' requests are receiving this status code for an' \
|
755
756
|
' extended period of time.',
|
756
757
|
_response
|
757
758
|
)
|
758
|
-
|
759
|
+
when 598
|
759
760
|
raise APIException.new(
|
760
761
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
761
762
|
' requests are receiving this status code for an' \
|
762
763
|
' extended period of time.',
|
763
764
|
_response
|
764
765
|
)
|
765
|
-
|
766
|
+
when 599
|
766
767
|
raise APIException.new(
|
767
768
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
768
769
|
' requests are receiving this status code for an' \
|
@@ -779,7 +780,7 @@ module PhoneNumberLookup
|
|
779
780
|
)
|
780
781
|
end
|
781
782
|
|
782
|
-
# Query an existing TN Lookup Order
|
783
|
+
# Query an existing TN Lookup Order.
|
783
784
|
# @param [String] account_id Required parameter: The ID of the Bandwidth
|
784
785
|
# account that the user belongs to.
|
785
786
|
# @param [String] request_id Required parameter: Example:
|
@@ -810,13 +811,14 @@ module PhoneNumberLookup
|
|
810
811
|
_response = execute_request(_request)
|
811
812
|
|
812
813
|
# Validate response against endpoint and global error codes.
|
813
|
-
|
814
|
+
case _response.status_code
|
815
|
+
when 400
|
814
816
|
raise APIException.new(
|
815
817
|
'Bad Request. Ensure that you have set the requestId as a URL path' \
|
816
818
|
' parameter.',
|
817
819
|
_response
|
818
820
|
)
|
819
|
-
|
821
|
+
when 401
|
820
822
|
raise APIException.new(
|
821
823
|
'Unauthorized. Ensure that you are using the proper credentials' \
|
822
824
|
' for the environment you are accessing, your user has' \
|
@@ -824,713 +826,713 @@ module PhoneNumberLookup
|
|
824
826
|
' Bandwidth account is enabled for TN Lookup access.',
|
825
827
|
_response
|
826
828
|
)
|
827
|
-
|
829
|
+
when 404
|
828
830
|
raise APIException.new(
|
829
831
|
'RequestId not found. Ensure that the requestId used in the URL' \
|
830
832
|
' path is valid and maps to a previous request that was' \
|
831
833
|
' submitted.',
|
832
834
|
_response
|
833
835
|
)
|
834
|
-
|
836
|
+
when 429
|
835
837
|
raise APIException.new(
|
836
838
|
'Too Many Requests. Reduce the amount of requests that you are' \
|
837
839
|
' sending in order to avoid receiving this status code.',
|
838
840
|
_response
|
839
841
|
)
|
840
|
-
|
842
|
+
when 500
|
841
843
|
raise APIException.new(
|
842
844
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
843
845
|
' requests are receiving this status code for an' \
|
844
846
|
' extended period of time.',
|
845
847
|
_response
|
846
848
|
)
|
847
|
-
|
849
|
+
when 501
|
848
850
|
raise APIException.new(
|
849
851
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
850
852
|
' requests are receiving this status code for an' \
|
851
853
|
' extended period of time.',
|
852
854
|
_response
|
853
855
|
)
|
854
|
-
|
856
|
+
when 502
|
855
857
|
raise APIException.new(
|
856
858
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
857
859
|
' requests are receiving this status code for an' \
|
858
860
|
' extended period of time.',
|
859
861
|
_response
|
860
862
|
)
|
861
|
-
|
863
|
+
when 503
|
862
864
|
raise APIException.new(
|
863
865
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
864
866
|
' requests are receiving this status code for an' \
|
865
867
|
' extended period of time.',
|
866
868
|
_response
|
867
869
|
)
|
868
|
-
|
870
|
+
when 504
|
869
871
|
raise APIException.new(
|
870
872
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
871
873
|
' requests are receiving this status code for an' \
|
872
874
|
' extended period of time.',
|
873
875
|
_response
|
874
876
|
)
|
875
|
-
|
877
|
+
when 505
|
876
878
|
raise APIException.new(
|
877
879
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
878
880
|
' requests are receiving this status code for an' \
|
879
881
|
' extended period of time.',
|
880
882
|
_response
|
881
883
|
)
|
882
|
-
|
884
|
+
when 506
|
883
885
|
raise APIException.new(
|
884
886
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
885
887
|
' requests are receiving this status code for an' \
|
886
888
|
' extended period of time.',
|
887
889
|
_response
|
888
890
|
)
|
889
|
-
|
891
|
+
when 507
|
890
892
|
raise APIException.new(
|
891
893
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
892
894
|
' requests are receiving this status code for an' \
|
893
895
|
' extended period of time.',
|
894
896
|
_response
|
895
897
|
)
|
896
|
-
|
898
|
+
when 508
|
897
899
|
raise APIException.new(
|
898
900
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
899
901
|
' requests are receiving this status code for an' \
|
900
902
|
' extended period of time.',
|
901
903
|
_response
|
902
904
|
)
|
903
|
-
|
905
|
+
when 509
|
904
906
|
raise APIException.new(
|
905
907
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
906
908
|
' requests are receiving this status code for an' \
|
907
909
|
' extended period of time.',
|
908
910
|
_response
|
909
911
|
)
|
910
|
-
|
912
|
+
when 510
|
911
913
|
raise APIException.new(
|
912
914
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
913
915
|
' requests are receiving this status code for an' \
|
914
916
|
' extended period of time.',
|
915
917
|
_response
|
916
918
|
)
|
917
|
-
|
919
|
+
when 511
|
918
920
|
raise APIException.new(
|
919
921
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
920
922
|
' requests are receiving this status code for an' \
|
921
923
|
' extended period of time.',
|
922
924
|
_response
|
923
925
|
)
|
924
|
-
|
926
|
+
when 512
|
925
927
|
raise APIException.new(
|
926
928
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
927
929
|
' requests are receiving this status code for an' \
|
928
930
|
' extended period of time.',
|
929
931
|
_response
|
930
932
|
)
|
931
|
-
|
933
|
+
when 513
|
932
934
|
raise APIException.new(
|
933
935
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
934
936
|
' requests are receiving this status code for an' \
|
935
937
|
' extended period of time.',
|
936
938
|
_response
|
937
939
|
)
|
938
|
-
|
940
|
+
when 514
|
939
941
|
raise APIException.new(
|
940
942
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
941
943
|
' requests are receiving this status code for an' \
|
942
944
|
' extended period of time.',
|
943
945
|
_response
|
944
946
|
)
|
945
|
-
|
947
|
+
when 515
|
946
948
|
raise APIException.new(
|
947
949
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
948
950
|
' requests are receiving this status code for an' \
|
949
951
|
' extended period of time.',
|
950
952
|
_response
|
951
953
|
)
|
952
|
-
|
954
|
+
when 516
|
953
955
|
raise APIException.new(
|
954
956
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
955
957
|
' requests are receiving this status code for an' \
|
956
958
|
' extended period of time.',
|
957
959
|
_response
|
958
960
|
)
|
959
|
-
|
961
|
+
when 517
|
960
962
|
raise APIException.new(
|
961
963
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
962
964
|
' requests are receiving this status code for an' \
|
963
965
|
' extended period of time.',
|
964
966
|
_response
|
965
967
|
)
|
966
|
-
|
968
|
+
when 518
|
967
969
|
raise APIException.new(
|
968
970
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
969
971
|
' requests are receiving this status code for an' \
|
970
972
|
' extended period of time.',
|
971
973
|
_response
|
972
974
|
)
|
973
|
-
|
975
|
+
when 519
|
974
976
|
raise APIException.new(
|
975
977
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
976
978
|
' requests are receiving this status code for an' \
|
977
979
|
' extended period of time.',
|
978
980
|
_response
|
979
981
|
)
|
980
|
-
|
982
|
+
when 520
|
981
983
|
raise APIException.new(
|
982
984
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
983
985
|
' requests are receiving this status code for an' \
|
984
986
|
' extended period of time.',
|
985
987
|
_response
|
986
988
|
)
|
987
|
-
|
989
|
+
when 521
|
988
990
|
raise APIException.new(
|
989
991
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
990
992
|
' requests are receiving this status code for an' \
|
991
993
|
' extended period of time.',
|
992
994
|
_response
|
993
995
|
)
|
994
|
-
|
996
|
+
when 522
|
995
997
|
raise APIException.new(
|
996
998
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
997
999
|
' requests are receiving this status code for an' \
|
998
1000
|
' extended period of time.',
|
999
1001
|
_response
|
1000
1002
|
)
|
1001
|
-
|
1003
|
+
when 523
|
1002
1004
|
raise APIException.new(
|
1003
1005
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1004
1006
|
' requests are receiving this status code for an' \
|
1005
1007
|
' extended period of time.',
|
1006
1008
|
_response
|
1007
1009
|
)
|
1008
|
-
|
1010
|
+
when 524
|
1009
1011
|
raise APIException.new(
|
1010
1012
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1011
1013
|
' requests are receiving this status code for an' \
|
1012
1014
|
' extended period of time.',
|
1013
1015
|
_response
|
1014
1016
|
)
|
1015
|
-
|
1017
|
+
when 525
|
1016
1018
|
raise APIException.new(
|
1017
1019
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1018
1020
|
' requests are receiving this status code for an' \
|
1019
1021
|
' extended period of time.',
|
1020
1022
|
_response
|
1021
1023
|
)
|
1022
|
-
|
1024
|
+
when 526
|
1023
1025
|
raise APIException.new(
|
1024
1026
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1025
1027
|
' requests are receiving this status code for an' \
|
1026
1028
|
' extended period of time.',
|
1027
1029
|
_response
|
1028
1030
|
)
|
1029
|
-
|
1031
|
+
when 527
|
1030
1032
|
raise APIException.new(
|
1031
1033
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1032
1034
|
' requests are receiving this status code for an' \
|
1033
1035
|
' extended period of time.',
|
1034
1036
|
_response
|
1035
1037
|
)
|
1036
|
-
|
1038
|
+
when 528
|
1037
1039
|
raise APIException.new(
|
1038
1040
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1039
1041
|
' requests are receiving this status code for an' \
|
1040
1042
|
' extended period of time.',
|
1041
1043
|
_response
|
1042
1044
|
)
|
1043
|
-
|
1045
|
+
when 529
|
1044
1046
|
raise APIException.new(
|
1045
1047
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1046
1048
|
' requests are receiving this status code for an' \
|
1047
1049
|
' extended period of time.',
|
1048
1050
|
_response
|
1049
1051
|
)
|
1050
|
-
|
1052
|
+
when 530
|
1051
1053
|
raise APIException.new(
|
1052
1054
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1053
1055
|
' requests are receiving this status code for an' \
|
1054
1056
|
' extended period of time.',
|
1055
1057
|
_response
|
1056
1058
|
)
|
1057
|
-
|
1059
|
+
when 531
|
1058
1060
|
raise APIException.new(
|
1059
1061
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1060
1062
|
' requests are receiving this status code for an' \
|
1061
1063
|
' extended period of time.',
|
1062
1064
|
_response
|
1063
1065
|
)
|
1064
|
-
|
1066
|
+
when 532
|
1065
1067
|
raise APIException.new(
|
1066
1068
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1067
1069
|
' requests are receiving this status code for an' \
|
1068
1070
|
' extended period of time.',
|
1069
1071
|
_response
|
1070
1072
|
)
|
1071
|
-
|
1073
|
+
when 533
|
1072
1074
|
raise APIException.new(
|
1073
1075
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1074
1076
|
' requests are receiving this status code for an' \
|
1075
1077
|
' extended period of time.',
|
1076
1078
|
_response
|
1077
1079
|
)
|
1078
|
-
|
1080
|
+
when 534
|
1079
1081
|
raise APIException.new(
|
1080
1082
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1081
1083
|
' requests are receiving this status code for an' \
|
1082
1084
|
' extended period of time.',
|
1083
1085
|
_response
|
1084
1086
|
)
|
1085
|
-
|
1087
|
+
when 535
|
1086
1088
|
raise APIException.new(
|
1087
1089
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1088
1090
|
' requests are receiving this status code for an' \
|
1089
1091
|
' extended period of time.',
|
1090
1092
|
_response
|
1091
1093
|
)
|
1092
|
-
|
1094
|
+
when 536
|
1093
1095
|
raise APIException.new(
|
1094
1096
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1095
1097
|
' requests are receiving this status code for an' \
|
1096
1098
|
' extended period of time.',
|
1097
1099
|
_response
|
1098
1100
|
)
|
1099
|
-
|
1101
|
+
when 537
|
1100
1102
|
raise APIException.new(
|
1101
1103
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1102
1104
|
' requests are receiving this status code for an' \
|
1103
1105
|
' extended period of time.',
|
1104
1106
|
_response
|
1105
1107
|
)
|
1106
|
-
|
1108
|
+
when 538
|
1107
1109
|
raise APIException.new(
|
1108
1110
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1109
1111
|
' requests are receiving this status code for an' \
|
1110
1112
|
' extended period of time.',
|
1111
1113
|
_response
|
1112
1114
|
)
|
1113
|
-
|
1115
|
+
when 539
|
1114
1116
|
raise APIException.new(
|
1115
1117
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1116
1118
|
' requests are receiving this status code for an' \
|
1117
1119
|
' extended period of time.',
|
1118
1120
|
_response
|
1119
1121
|
)
|
1120
|
-
|
1122
|
+
when 540
|
1121
1123
|
raise APIException.new(
|
1122
1124
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1123
1125
|
' requests are receiving this status code for an' \
|
1124
1126
|
' extended period of time.',
|
1125
1127
|
_response
|
1126
1128
|
)
|
1127
|
-
|
1129
|
+
when 541
|
1128
1130
|
raise APIException.new(
|
1129
1131
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1130
1132
|
' requests are receiving this status code for an' \
|
1131
1133
|
' extended period of time.',
|
1132
1134
|
_response
|
1133
1135
|
)
|
1134
|
-
|
1136
|
+
when 542
|
1135
1137
|
raise APIException.new(
|
1136
1138
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1137
1139
|
' requests are receiving this status code for an' \
|
1138
1140
|
' extended period of time.',
|
1139
1141
|
_response
|
1140
1142
|
)
|
1141
|
-
|
1143
|
+
when 543
|
1142
1144
|
raise APIException.new(
|
1143
1145
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1144
1146
|
' requests are receiving this status code for an' \
|
1145
1147
|
' extended period of time.',
|
1146
1148
|
_response
|
1147
1149
|
)
|
1148
|
-
|
1150
|
+
when 544
|
1149
1151
|
raise APIException.new(
|
1150
1152
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1151
1153
|
' requests are receiving this status code for an' \
|
1152
1154
|
' extended period of time.',
|
1153
1155
|
_response
|
1154
1156
|
)
|
1155
|
-
|
1157
|
+
when 545
|
1156
1158
|
raise APIException.new(
|
1157
1159
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1158
1160
|
' requests are receiving this status code for an' \
|
1159
1161
|
' extended period of time.',
|
1160
1162
|
_response
|
1161
1163
|
)
|
1162
|
-
|
1164
|
+
when 546
|
1163
1165
|
raise APIException.new(
|
1164
1166
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1165
1167
|
' requests are receiving this status code for an' \
|
1166
1168
|
' extended period of time.',
|
1167
1169
|
_response
|
1168
1170
|
)
|
1169
|
-
|
1171
|
+
when 547
|
1170
1172
|
raise APIException.new(
|
1171
1173
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1172
1174
|
' requests are receiving this status code for an' \
|
1173
1175
|
' extended period of time.',
|
1174
1176
|
_response
|
1175
1177
|
)
|
1176
|
-
|
1178
|
+
when 548
|
1177
1179
|
raise APIException.new(
|
1178
1180
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1179
1181
|
' requests are receiving this status code for an' \
|
1180
1182
|
' extended period of time.',
|
1181
1183
|
_response
|
1182
1184
|
)
|
1183
|
-
|
1185
|
+
when 549
|
1184
1186
|
raise APIException.new(
|
1185
1187
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1186
1188
|
' requests are receiving this status code for an' \
|
1187
1189
|
' extended period of time.',
|
1188
1190
|
_response
|
1189
1191
|
)
|
1190
|
-
|
1192
|
+
when 550
|
1191
1193
|
raise APIException.new(
|
1192
1194
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1193
1195
|
' requests are receiving this status code for an' \
|
1194
1196
|
' extended period of time.',
|
1195
1197
|
_response
|
1196
1198
|
)
|
1197
|
-
|
1199
|
+
when 551
|
1198
1200
|
raise APIException.new(
|
1199
1201
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1200
1202
|
' requests are receiving this status code for an' \
|
1201
1203
|
' extended period of time.',
|
1202
1204
|
_response
|
1203
1205
|
)
|
1204
|
-
|
1206
|
+
when 552
|
1205
1207
|
raise APIException.new(
|
1206
1208
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1207
1209
|
' requests are receiving this status code for an' \
|
1208
1210
|
' extended period of time.',
|
1209
1211
|
_response
|
1210
1212
|
)
|
1211
|
-
|
1213
|
+
when 553
|
1212
1214
|
raise APIException.new(
|
1213
1215
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1214
1216
|
' requests are receiving this status code for an' \
|
1215
1217
|
' extended period of time.',
|
1216
1218
|
_response
|
1217
1219
|
)
|
1218
|
-
|
1220
|
+
when 554
|
1219
1221
|
raise APIException.new(
|
1220
1222
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1221
1223
|
' requests are receiving this status code for an' \
|
1222
1224
|
' extended period of time.',
|
1223
1225
|
_response
|
1224
1226
|
)
|
1225
|
-
|
1227
|
+
when 555
|
1226
1228
|
raise APIException.new(
|
1227
1229
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1228
1230
|
' requests are receiving this status code for an' \
|
1229
1231
|
' extended period of time.',
|
1230
1232
|
_response
|
1231
1233
|
)
|
1232
|
-
|
1234
|
+
when 556
|
1233
1235
|
raise APIException.new(
|
1234
1236
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1235
1237
|
' requests are receiving this status code for an' \
|
1236
1238
|
' extended period of time.',
|
1237
1239
|
_response
|
1238
1240
|
)
|
1239
|
-
|
1241
|
+
when 557
|
1240
1242
|
raise APIException.new(
|
1241
1243
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1242
1244
|
' requests are receiving this status code for an' \
|
1243
1245
|
' extended period of time.',
|
1244
1246
|
_response
|
1245
1247
|
)
|
1246
|
-
|
1248
|
+
when 558
|
1247
1249
|
raise APIException.new(
|
1248
1250
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1249
1251
|
' requests are receiving this status code for an' \
|
1250
1252
|
' extended period of time.',
|
1251
1253
|
_response
|
1252
1254
|
)
|
1253
|
-
|
1255
|
+
when 559
|
1254
1256
|
raise APIException.new(
|
1255
1257
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1256
1258
|
' requests are receiving this status code for an' \
|
1257
1259
|
' extended period of time.',
|
1258
1260
|
_response
|
1259
1261
|
)
|
1260
|
-
|
1262
|
+
when 560
|
1261
1263
|
raise APIException.new(
|
1262
1264
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1263
1265
|
' requests are receiving this status code for an' \
|
1264
1266
|
' extended period of time.',
|
1265
1267
|
_response
|
1266
1268
|
)
|
1267
|
-
|
1269
|
+
when 561
|
1268
1270
|
raise APIException.new(
|
1269
1271
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1270
1272
|
' requests are receiving this status code for an' \
|
1271
1273
|
' extended period of time.',
|
1272
1274
|
_response
|
1273
1275
|
)
|
1274
|
-
|
1276
|
+
when 562
|
1275
1277
|
raise APIException.new(
|
1276
1278
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1277
1279
|
' requests are receiving this status code for an' \
|
1278
1280
|
' extended period of time.',
|
1279
1281
|
_response
|
1280
1282
|
)
|
1281
|
-
|
1283
|
+
when 563
|
1282
1284
|
raise APIException.new(
|
1283
1285
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1284
1286
|
' requests are receiving this status code for an' \
|
1285
1287
|
' extended period of time.',
|
1286
1288
|
_response
|
1287
1289
|
)
|
1288
|
-
|
1290
|
+
when 564
|
1289
1291
|
raise APIException.new(
|
1290
1292
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1291
1293
|
' requests are receiving this status code for an' \
|
1292
1294
|
' extended period of time.',
|
1293
1295
|
_response
|
1294
1296
|
)
|
1295
|
-
|
1297
|
+
when 565
|
1296
1298
|
raise APIException.new(
|
1297
1299
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1298
1300
|
' requests are receiving this status code for an' \
|
1299
1301
|
' extended period of time.',
|
1300
1302
|
_response
|
1301
1303
|
)
|
1302
|
-
|
1304
|
+
when 566
|
1303
1305
|
raise APIException.new(
|
1304
1306
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1305
1307
|
' requests are receiving this status code for an' \
|
1306
1308
|
' extended period of time.',
|
1307
1309
|
_response
|
1308
1310
|
)
|
1309
|
-
|
1311
|
+
when 567
|
1310
1312
|
raise APIException.new(
|
1311
1313
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1312
1314
|
' requests are receiving this status code for an' \
|
1313
1315
|
' extended period of time.',
|
1314
1316
|
_response
|
1315
1317
|
)
|
1316
|
-
|
1318
|
+
when 568
|
1317
1319
|
raise APIException.new(
|
1318
1320
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1319
1321
|
' requests are receiving this status code for an' \
|
1320
1322
|
' extended period of time.',
|
1321
1323
|
_response
|
1322
1324
|
)
|
1323
|
-
|
1325
|
+
when 569
|
1324
1326
|
raise APIException.new(
|
1325
1327
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1326
1328
|
' requests are receiving this status code for an' \
|
1327
1329
|
' extended period of time.',
|
1328
1330
|
_response
|
1329
1331
|
)
|
1330
|
-
|
1332
|
+
when 570
|
1331
1333
|
raise APIException.new(
|
1332
1334
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1333
1335
|
' requests are receiving this status code for an' \
|
1334
1336
|
' extended period of time.',
|
1335
1337
|
_response
|
1336
1338
|
)
|
1337
|
-
|
1339
|
+
when 571
|
1338
1340
|
raise APIException.new(
|
1339
1341
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1340
1342
|
' requests are receiving this status code for an' \
|
1341
1343
|
' extended period of time.',
|
1342
1344
|
_response
|
1343
1345
|
)
|
1344
|
-
|
1346
|
+
when 572
|
1345
1347
|
raise APIException.new(
|
1346
1348
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1347
1349
|
' requests are receiving this status code for an' \
|
1348
1350
|
' extended period of time.',
|
1349
1351
|
_response
|
1350
1352
|
)
|
1351
|
-
|
1353
|
+
when 573
|
1352
1354
|
raise APIException.new(
|
1353
1355
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1354
1356
|
' requests are receiving this status code for an' \
|
1355
1357
|
' extended period of time.',
|
1356
1358
|
_response
|
1357
1359
|
)
|
1358
|
-
|
1360
|
+
when 574
|
1359
1361
|
raise APIException.new(
|
1360
1362
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1361
1363
|
' requests are receiving this status code for an' \
|
1362
1364
|
' extended period of time.',
|
1363
1365
|
_response
|
1364
1366
|
)
|
1365
|
-
|
1367
|
+
when 575
|
1366
1368
|
raise APIException.new(
|
1367
1369
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1368
1370
|
' requests are receiving this status code for an' \
|
1369
1371
|
' extended period of time.',
|
1370
1372
|
_response
|
1371
1373
|
)
|
1372
|
-
|
1374
|
+
when 576
|
1373
1375
|
raise APIException.new(
|
1374
1376
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1375
1377
|
' requests are receiving this status code for an' \
|
1376
1378
|
' extended period of time.',
|
1377
1379
|
_response
|
1378
1380
|
)
|
1379
|
-
|
1381
|
+
when 577
|
1380
1382
|
raise APIException.new(
|
1381
1383
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1382
1384
|
' requests are receiving this status code for an' \
|
1383
1385
|
' extended period of time.',
|
1384
1386
|
_response
|
1385
1387
|
)
|
1386
|
-
|
1388
|
+
when 578
|
1387
1389
|
raise APIException.new(
|
1388
1390
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1389
1391
|
' requests are receiving this status code for an' \
|
1390
1392
|
' extended period of time.',
|
1391
1393
|
_response
|
1392
1394
|
)
|
1393
|
-
|
1395
|
+
when 579
|
1394
1396
|
raise APIException.new(
|
1395
1397
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1396
1398
|
' requests are receiving this status code for an' \
|
1397
1399
|
' extended period of time.',
|
1398
1400
|
_response
|
1399
1401
|
)
|
1400
|
-
|
1402
|
+
when 580
|
1401
1403
|
raise APIException.new(
|
1402
1404
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1403
1405
|
' requests are receiving this status code for an' \
|
1404
1406
|
' extended period of time.',
|
1405
1407
|
_response
|
1406
1408
|
)
|
1407
|
-
|
1409
|
+
when 581
|
1408
1410
|
raise APIException.new(
|
1409
1411
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1410
1412
|
' requests are receiving this status code for an' \
|
1411
1413
|
' extended period of time.',
|
1412
1414
|
_response
|
1413
1415
|
)
|
1414
|
-
|
1416
|
+
when 582
|
1415
1417
|
raise APIException.new(
|
1416
1418
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1417
1419
|
' requests are receiving this status code for an' \
|
1418
1420
|
' extended period of time.',
|
1419
1421
|
_response
|
1420
1422
|
)
|
1421
|
-
|
1423
|
+
when 583
|
1422
1424
|
raise APIException.new(
|
1423
1425
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1424
1426
|
' requests are receiving this status code for an' \
|
1425
1427
|
' extended period of time.',
|
1426
1428
|
_response
|
1427
1429
|
)
|
1428
|
-
|
1430
|
+
when 584
|
1429
1431
|
raise APIException.new(
|
1430
1432
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1431
1433
|
' requests are receiving this status code for an' \
|
1432
1434
|
' extended period of time.',
|
1433
1435
|
_response
|
1434
1436
|
)
|
1435
|
-
|
1437
|
+
when 585
|
1436
1438
|
raise APIException.new(
|
1437
1439
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1438
1440
|
' requests are receiving this status code for an' \
|
1439
1441
|
' extended period of time.',
|
1440
1442
|
_response
|
1441
1443
|
)
|
1442
|
-
|
1444
|
+
when 586
|
1443
1445
|
raise APIException.new(
|
1444
1446
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1445
1447
|
' requests are receiving this status code for an' \
|
1446
1448
|
' extended period of time.',
|
1447
1449
|
_response
|
1448
1450
|
)
|
1449
|
-
|
1451
|
+
when 587
|
1450
1452
|
raise APIException.new(
|
1451
1453
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1452
1454
|
' requests are receiving this status code for an' \
|
1453
1455
|
' extended period of time.',
|
1454
1456
|
_response
|
1455
1457
|
)
|
1456
|
-
|
1458
|
+
when 588
|
1457
1459
|
raise APIException.new(
|
1458
1460
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1459
1461
|
' requests are receiving this status code for an' \
|
1460
1462
|
' extended period of time.',
|
1461
1463
|
_response
|
1462
1464
|
)
|
1463
|
-
|
1465
|
+
when 589
|
1464
1466
|
raise APIException.new(
|
1465
1467
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1466
1468
|
' requests are receiving this status code for an' \
|
1467
1469
|
' extended period of time.',
|
1468
1470
|
_response
|
1469
1471
|
)
|
1470
|
-
|
1472
|
+
when 590
|
1471
1473
|
raise APIException.new(
|
1472
1474
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1473
1475
|
' requests are receiving this status code for an' \
|
1474
1476
|
' extended period of time.',
|
1475
1477
|
_response
|
1476
1478
|
)
|
1477
|
-
|
1479
|
+
when 591
|
1478
1480
|
raise APIException.new(
|
1479
1481
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1480
1482
|
' requests are receiving this status code for an' \
|
1481
1483
|
' extended period of time.',
|
1482
1484
|
_response
|
1483
1485
|
)
|
1484
|
-
|
1486
|
+
when 592
|
1485
1487
|
raise APIException.new(
|
1486
1488
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1487
1489
|
' requests are receiving this status code for an' \
|
1488
1490
|
' extended period of time.',
|
1489
1491
|
_response
|
1490
1492
|
)
|
1491
|
-
|
1493
|
+
when 593
|
1492
1494
|
raise APIException.new(
|
1493
1495
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1494
1496
|
' requests are receiving this status code for an' \
|
1495
1497
|
' extended period of time.',
|
1496
1498
|
_response
|
1497
1499
|
)
|
1498
|
-
|
1500
|
+
when 594
|
1499
1501
|
raise APIException.new(
|
1500
1502
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1501
1503
|
' requests are receiving this status code for an' \
|
1502
1504
|
' extended period of time.',
|
1503
1505
|
_response
|
1504
1506
|
)
|
1505
|
-
|
1507
|
+
when 595
|
1506
1508
|
raise APIException.new(
|
1507
1509
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1508
1510
|
' requests are receiving this status code for an' \
|
1509
1511
|
' extended period of time.',
|
1510
1512
|
_response
|
1511
1513
|
)
|
1512
|
-
|
1514
|
+
when 596
|
1513
1515
|
raise APIException.new(
|
1514
1516
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1515
1517
|
' requests are receiving this status code for an' \
|
1516
1518
|
' extended period of time.',
|
1517
1519
|
_response
|
1518
1520
|
)
|
1519
|
-
|
1521
|
+
when 597
|
1520
1522
|
raise APIException.new(
|
1521
1523
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1522
1524
|
' requests are receiving this status code for an' \
|
1523
1525
|
' extended period of time.',
|
1524
1526
|
_response
|
1525
1527
|
)
|
1526
|
-
|
1528
|
+
when 598
|
1527
1529
|
raise APIException.new(
|
1528
1530
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1529
1531
|
' requests are receiving this status code for an' \
|
1530
1532
|
' extended period of time.',
|
1531
1533
|
_response
|
1532
1534
|
)
|
1533
|
-
|
1535
|
+
when 599
|
1534
1536
|
raise APIException.new(
|
1535
1537
|
'Unexpected error. Please contact Bandwidth Support if your' \
|
1536
1538
|
' requests are receiving this status code for an' \
|