-
Notifications
You must be signed in to change notification settings - Fork 2
/
live-errors.html
6433 lines (6369 loc) · 187 KB
/
live-errors.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
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
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Error Codes</title>
<script src="scripts/toc.js" type="text/javascript"></script>
<style>
h1 {
color: #ffffff;
background: linear-gradient(to bottom, #3bd7ff 0%, #00bcec 100%)
}
h2 {
color: #ffffff;
background: linear-gradient(to bottom, #3bd7ff 0%, #00bcec 100%)
}
table.fixed {
table-layout: fixed;
width: 750px;
border: 1px solid black;
border-collapse: collapse;
}
/*Setting the table width is important!*/
table.fixed td {
overflow: hidden;
border: 1px solid black;
}
/*Hide text outside the cell.*/
table.fixed td:nth-of-type(1) {
width: 50px;
}
/*Setting the width of column 1.*/
table.fixed td:nth-of-type(2) {
width: 500px;
}
/*Setting the width of column 2.*/
table.fixed th:nth-of-type(1) {
width: 50px;
}
/*Setting the width of column 1.*/
table.fixed th:nth-of-type(2) {
width: 500px;
}
/*Setting the width of column 2.*/
table.fixed3 {
table-layout: fixed;
width: 750px;
border: 1px solid black;
border-collapse: collapse;
}
/*Setting the table width is important!*/
table.fixed3 td {
overflow: hidden;
border: 1px solid black;
}
/*Hide text outside the cell.*/
table.fixed3 td:nth-of-type(1) {
width: 50px;
}
/*Setting the width of column 1.*/
table.fixed3 td:nth-of-type(2) {
width: 50px;
}
/*Setting the width of column 2.*/
table.fixed3 td:nth-of-type(3) {
width: 450px;
}
/*Setting the width of column 3.*/
table.fixed3 th:nth-of-type(1) {
width: 50px;
}
/*Setting the width of column 1.*/
table.fixed3 th:nth-of-type(2) {
width: 50px;
}
/*Setting the width of column 2.*/
table.fixed3 th:nth-of-type(3) {
width: 450px;
}
/*Setting the width of column 3.*/
table.comment {
border-collapse: collapse;
background-color: #FFDDDD;
width: 100%;
}
div#toc a {
text-decoration: none;
font-family: Verdana, Helvetica, sans-serif;
}
div#toc a:hover {
text-decoration: underline;
}
div#toc ul {
list-style-type: none;
margin-left: 1.5em;
padding-left: 0;
}
</style>
</head>
<body onload="generateTOC(document.getElementById('toc'));">
<h1>Table of Contents</h1>
<div id="toc"></div>
<h1>Searching the Telephone Number Inventory</h1>
<h2>SearchErrorType</h2>
<table class="fixed">
<tr>
<th>Error Code</th>
<th>Error Description</th>
</tr>
<tr>
<td>4000</td>
<td>Please verify that your Area Code search input parameters are correct.</td>
</tr>
<tr>
<td>4001</td>
<td>Please verify that your Rate Center search input parameters are correct.</td>
</tr>
<tr>
<td>4002</td>
<td>Please verify that your NPA, NPA-NXX, or NPA-NXX-X search input parameters are correct.</td>
</tr>
<tr>
<td>4003</td>
<td>Please verify that your Toll Free Vanity search input parameters are correct.</td>
</tr>
<tr>
<td>4004</td>
<td>Please verify that your Toll Free Wild Card search input parameters are correct.</td>
</tr>
<tr>
<td>4005</td>
<td>Please verify that your City search input parameters are correct.</td>
</tr>
<tr>
<td>4006</td>
<td>Please verify that your State search input parameters are correct.</td>
</tr>
<tr>
<td>4007</td>
<td>Please verify that your Zip Code search input parameters are correct.</td>
</tr>
<tr>
<td>4008</td>
<td>Please verify that your LATA search input parameters are correct.</td>
</tr>
<tr>
<td>4009</td>
<td>Sorry, the search request could not be processed a system error occured; please retry your operation or contact inetwork support person.</td>
</tr>
<tr>
<td>4010</td>
<td>Provided search criteria are unsupported or are not valid</td>
</tr>
<tr>
<td>4011</td>
<td>Please verify that your Phone Number search input parameters are correct.</td>
</tr>
<tr>
<td>4014</td>
<td>Access denied for this search.</td>
</tr>
<tr>
<td>4015</td>
<td>Please verify that your Embed search query parameters are correct. Valid values are: AvailableNumberCount,Vendors,NpaNxxX,LocalRateCenters,Cities,Npa,ZipCodes</td>
</tr>
<tr>
<td>4016</td>
<td>Please verify that your Tier search query parameters are correct. Valid values are: [0-5]</td>
</tr>
<tr>
<td>4017</td>
<td>The telephone number '%s' does not exist</td>
</tr>
<tr>
<td>4018</td>
<td>Please verify that your PAGE search input parameter is correct.</td>
</tr>
<tr>
<td>4019</td>
<td>Embed parameter LocalRateCenters is not supported for specified search criteria</td>
</tr>
<tr>
<td>4020</td>
<td>Please verify that your orderBy search query parameter is correct. Valid values are: fullNumber,npaNxxx,npaNxx,areaCode</td>
</tr>
<tr>
<td>4021</td>
<td>The orderBy parameter is not supported for specified search criteria</td>
</tr>
<tr>
<td>4022</td>
<td>Please verify that your protected search query parameter is correct. Valid values are: NONE, ONLY, MIXED</td>
</tr>
<tr>
<td>4023</td>
<td>Bandwidth does not support ordering of new numbers in this area. Try searching in a different area.</td>
</tr>
<tr>
<td>4024</td>
<td>The numbers you have requested are in a restricted tier. Please contact your support team to learn how you can gain access to these numbers. Or simply try a new search.</td>
</tr>
<tr>
<td>4025</td>
<td>Embed parameter Npa cannot be used with embed parameter NpaNxxX.</td>
</tr>
<tr>
<td>4026</td>
<td>Embed parameter Npa cannot be used at this time.</td>
</tr>
</table>
<h1>Ordering Telephone Numbers</h1>
<h2>OrderErrorType</h2>
<table class="fixed">
<tr>
<th>Error Code</th>
<th>Error Description</th>
</tr>
<tr>
<td>5000</td>
<td>Invalid account specified</td>
</tr>
<tr>
<td>5001</td>
<td>Invalid input telephone number list</td>
</tr>
<tr>
<td>5002</td>
<td>Validation error</td>
</tr>
<tr>
<td>5003</td>
<td>Provisioning Failure</td>
</tr>
<tr>
<td>5004</td>
<td>Invalid Vendor</td>
</tr>
<tr>
<td>5005</td>
<td>Telephone Number Unavailable</td>
</tr>
<tr>
<td>5006</td>
<td>TelephoneNumber Disconnect Error</td>
</tr>
<tr>
<td>5007</td>
<td>Exceeded Maximum Ordering Capacity</td>
</tr>
<tr>
<td>5008</td>
<td>All telephone numbers specified are invalid</td>
</tr>
<tr>
<td>5009</td>
<td>Invalid Order Quantity</td>
</tr>
<tr>
<td>5010</td>
<td>Undefined LNP Operation</td>
</tr>
<tr>
<td>5011</td>
<td>No tiers were defined for the account</td>
</tr>
<tr>
<td>5012</td>
<td>The account is locked and the operation is not permissible</td>
</tr>
<tr>
<td>5013</td>
<td>The holding account could not be resolved, this is a system configuration issue, please report the problem to inetwork support</td>
</tr>
<tr>
<td>5014</td>
<td>The dlda request timed out. Please resubmit your request.</td>
</tr>
<tr>
<td>5015</td>
<td>The lidb request timed out. Please resubmit your request.</td>
</tr>
<tr>
<td>5016</td>
<td>The SiteId submitted is invalid.</td>
</tr>
<tr>
<td>5017</td>
<td>TelephoneNumber Move Error</td>
</tr>
<tr>
<td>5017</td>
<td>Only a partial quantity of the total telephone numbers ordered could be fulfilled</td>
</tr>
<tr>
<td>5018</td>
<td>The entire quantity of telephone numbers ordered is unavailable</td>
</tr>
<tr>
<td>5019</td>
<td>Order is pending. Please check the status of your order later. </td>
</tr>
<tr>
<td>5020</td>
<td>No default SIP peer is set on the account and site. Please create one then resubmit your request.</td>
</tr>
<tr>
<td>5021</td>
<td>No gateway profile set on the account. Please assign a gateway to your account and resubmit your request.</td>
</tr>
<tr>
<td>5022</td>
<td>SiteId is a required field.</td>
</tr>
<tr>
<td>5023</td>
<td>SIP peer submitted is invalid.</td>
</tr>
<tr>
<td>5024</td>
<td>For BatchId '%s', the quantity of telephonenumbers imported exceeds the batch max quantity of '%s'</td>
</tr>
<tr>
<td>5025</td>
<td>Both BatchId and BatchSize are required.</td>
</tr>
<tr>
<td>5026</td>
<td>Telephonenumber count exceeds BatchSize.</td>
</tr>
<tr>
<td>5027</td>
<td>BatchSize must be greater than 0.</td>
</tr>
<tr>
<td>5029</td>
<td>The BatchId '%s' has a BatchSize of '%s', not '%s'.</td>
</tr>
<tr>
<td>5030</td>
<td>The BatchId '%s' has been completed, can not add anymore telephonenumbers.</td>
</tr>
<tr>
<td>5031</td>
<td>The BatchId is invalid. BatchId must be between 1 and 10 alphanumeric characters.</td>
</tr>
<tr>
<td>5033</td>
<td>%s cannot be returned to service because network coverage is not available.</td>
</tr>
<tr>
<td>5034</td>
<td>%s cannot be returned to service because they are not owned by Bandwidth CLEC.</td>
</tr>
<tr>
<td>5035</td>
<td>%s order %s not found.</td>
</tr>
<tr>
<td>5036</td>
<td>Order %s has no admin parameters yet.</td>
</tr>
<tr>
<td>5037</td>
<td>Bandwidth prime name is too long (63 characters max).</td>
</tr>
<tr>
<td>5038</td>
<td>ActivityState is invalid. Valid values: changed, seen, responded, quiet</td>
</tr>
<tr>
<td>5039</td>
<td>AdminParameters is required.</td>
</tr>
<tr>
<td>5040</td>
<td>Note not found.</td>
</tr>
<tr>
<td>5051</td>
<td>Not authorized to perform operation on the account '%s'</td>
</tr>
<tr>
<td>5052</td>
<td>Customer order ID is invalid. Only alphanumeric values, dashes and spaces are allowed. Max length is 40 characters.</td>
</tr>
<tr>
<td>5520</td>
<td>Order backordered - awaiting additional numbers</td>
</tr>
<tr>
<td>5521</td>
<td>Order Backordered - no numbers allocated, awaiting available inventory to completely fulfill order</td>
</tr>
<tr>
<td>5522</td>
<td>Backorders are not compatible with Specific TN, TollFree Vanity or Local Vanity orders</td>
</tr>
<tr>
<td>5523</td>
<td>The account does not have the required tiers enabled for the requested numbers, therefore the backorder operation is not permitted; please contact Bandwidth support person to resolve this issue</td>
</tr>
<tr>
<td>5524</td>
<td>Rate centers required to fulfill this order are not set to support new TNs</td>
</tr>
<tr>
<td>5525</td>
<td>Due to limited supply in this area code, we can only allow backorders for %d numbers or less.%s</td>
</tr>
<tr>
<td>5526</td>
<td>Due to limited supply in this area code, we can only allow backorders for %d numbers or less. Your order quantity has been reduced to %d in order to adhere to these limits.</td>
</tr>
<tr>
<td>5527</td>
<td>Due to limited supply in this area code, backorders are not allowed.%s</td>
</tr>
<tr>
<td>5060</td>
<td>Only Backordered order can be closed.</td>
</tr>
<tr>
<td>5061</td>
<td>Order ID is invalid.</td>
</tr>
<tr>
<td>5062</td>
<td>PeerId is required for UC customers</td>
</tr>
<tr>
<td>5062</td>
<td>'%s' vendor does not exist.</td>
</tr>
<tr>
<td>5063</td>
<td>Bandwidth CLEC does not provide coverage for the required Rate Center.</td>
</tr>
<tr>
<td>5064</td>
<td>The BatchId '%s' has import billing type as '%s', not '%s'.</td>
</tr>
<tr>
<td>5070</td>
<td>Telephone number is invalid.</td>
</tr>
<tr>
<td>5071</td>
<td>Telephone number is not available on the system.</td>
</tr>
<tr>
<td>5072</td>
<td>Duplicate telephone number.</td>
</tr>
<tr>
<td>5073</td>
<td>Telephone number is required.</td>
</tr>
<tr>
<td>5074</td>
<td>Telephone number is not is service.</td>
</tr>
<tr>
<td>5076</td>
<td>Number does not belong to this account.</td>
</tr>
<tr>
<td>5077</td>
<td>There are no valid telephone numbers.</td>
</tr>
<tr>
<td>5078</td>
<td>Account has no '%s' product feature.</td>
</tr>
<tr>
<td>5079</td>
<td>CallingNameDisplay '%s' is invalid. Valid values are: %s</td>
</tr>
<tr>
<td>5080</td>
<td>Call Forwarding number '%s' is not a valid 10-digit telephone number.</td>
</tr>
<tr>
<td>5081</td>
<td>Number Format '%s' is invalid.</td>
</tr>
<tr>
<td>5082</td>
<td>Rewrite User '%s' is invalid.</td>
</tr>
<tr>
<td>5083</td>
<td>Requested profile not found, using default one.</td>
</tr>
<tr>
<td>5084</td>
<td>DisconnectMode '%s' is invalid. Valid values are: normal, soft-remove, purge</td>
</tr>
<tr>
<td>5085</td>
<td>Insufficient permissions for this DisconnectMode</td>
</tr>
<tr>
<td>5086</td>
<td>Order request timed out. Please resubmit your request.</td>
</tr>
<tr>
<td>5087</td>
<td>The input order type is not a valid entry.</td>
</tr>
<tr>
<td>5088</td>
<td>The specified call forwarding number %s cannot be the same as the origin telephone number %s.</td>
</tr>
<tr>
<td>13516</td>
<td>RPID Format '%s' is invalid.</td>
</tr>
<tr>
<td>13517</td>
<td>Toll Free number not allowed.</td>
</tr>
<tr>
<td>13518</td>
<td>CNAM for telephone number is applied at the Location level and it is not applicable at the TN level.</td>
</tr>
<tr>
<td>13519</td>
<td>Billing type is required. Valid values are: NOCHARGE, PORTIN, NEWNUMBER, PROJECTPORT.</td>
</tr>
<tr>
<td>13520</td>
<td>Order cannot contain duplicate telephone numbers</td>
</tr>
<tr>
<td>13521</td>
<td>The site associated with this order is locked.</td>
</tr>
<tr>
<td>13522</td>
<td>The count of telephone numbers in order exceeds the maximum size of %d</td>
</tr>
<tr>
<td>13523</td>
<td>Incorrect toll free vendor. The vendor for toll free orders should be 'Toll free vendor'</td>
</tr>
<tr>
<td>13524</td>
<td>Telephone numbers cannot be marked as Protected - the account has not been configured for Protected Numbers</td>
</tr>
<tr>
<td>13525</td>
<td>One or more of the telephone numbers was already in protected status, and remains Protected.</td>
</tr>
<tr>
<td>13526</td>
<td>Non-Tier-0 numbers are not candidates for Protected status.</td>
</tr>
<tr>
<td>13527</td>
<td>Toll free numbers are not candidates for Protected status.</td>
</tr>
<tr>
<td>13528</td>
<td>'Protected' telephone number attribute is not applicable for toll-free search and order criteria.</td>
</tr>
<tr>
<td>13529</td>
<td>Telephone number attribute '%s' is invalid. Valid values: Protected</td>
</tr>
<tr>
<td>13530</td>
<td>Duplicate telephone number attribute '%s'.</td>
</tr>
<tr>
<td>13531</td>
<td>Setting the initial status to 'Available' requires the imported telephone numbers to be Protected.</td>
</tr>
<tr>
<td>13532</td>
<td>Setting the initial telephone number status to '%s' is not valid - only 'Available' is supported.</td>
</tr>
<tr>
<td>13533</td>
<td>Site and Sip Peer IDs should not be specified on setting the initial telephone number status to 'Available'.</td>
</tr>
<tr>
<td>13534</td>
<td>Including Caller Name and/or Street Address is incompatible with deleting telephone specific address.</td>
</tr>
<tr>
<td>13535</td>
<td>Protected attribute '%s' is invalid. Valid values are: %s</td>
</tr>
<tr>
<td>13536</td>
<td>Protected attribute '%s' is invalid. Valid values: TRUE, FALSE, UNCHANGED</td>
</tr>
<tr>
<td>13537</td>
<td>The Protected Telephone Numbers setting is incompatible with an obsolete or purge disconnect</td>
</tr>
<tr>
<td>13538</td>
<td>This account does not support assignment of the Protected Telephone Numbers attribute</td>
</tr>
<tr>
<td>13539</td>
<td>The Bandwidth partners may have 'NOCHARGE' billing type only.</td>
</tr>
<tr>
<td>13540</td>
<td>You must identify the source of the Telephone Numbers (the Vendor), and for all Telephone Numbers supplied by a vendor other than Bandwidth CLEC, the numbers must be classified as Protected.</td>
</tr>
<tr>
<td>13541</td>
<td>Sms '%s' is invalid. Valid values are: %s</td>
</tr>
<tr>
<td>13542</td>
<td>Account is not completely configured or MESSAGING is not enabled.</td>
</tr>
<tr>
<td>13543</td>
<td>At least one of the TN option attributes must be applied for %s</td>
</tr>
<tr>
<td>13544</td>
<td>Default route is not configured for tier %d TNs</td>
</tr>
<tr>
<td>13545</td>
<td>FinalDestinationURI is too long (%s characters max).</td>
</tr>
<tr>
<td>13546</td>
<td>FinalDestinationURI is not a valid telephone number.</td>
</tr>
<tr>
<td>13547</td>
<td>FinalDestinationURI host portion must be a valid IPv4 address.</td>
</tr>
<tr>
<td>13548</td>
<td>FinalDestinationURI cannot begin with '%s'.</td>
</tr>
<tr>
<td>13549</td>
<td>FinalDestinationURI can contain only alphanumerics.</td>
</tr>
<tr>
<td>13550</td>
<td>The format of the FinalDestinationURI needs to match the form 'name@ip-address:port'.</td>
</tr>
<tr>
<td>13551</td>
<td>Protected telephone number '%s' does not belong to account with id = %d</td>
</tr>
<tr>
<td>13552</td>
<td>Telephone numbers already exist.</td>
</tr>
<tr>
<td>13553</td>
<td>External telephone number(s) cannot be used.</td>
</tr>
<tr>
<td>13554</td>
<td>TollFree telephone number(s) cannot be used.</td>
</tr>
<tr>
<td>13555</td>
<td>The External TNs attribute can only be set via an External TNs order.</td>
</tr>
<tr>
<td>13556</td>
<td>Only SMS attribute can be changed for External telephone number(s).</td>
</tr>
<tr>
<td>13557</td>
<td>Assignment action is invalid. Valid values: ASSIGN, UNASSIGN</td>
</tr>
<tr>
<td>13558</td>
<td>Number assignment is not allowed for external numbers.</td>
</tr>
<tr>
<td>13559</td>
<td>Number assignment is not allowed for numbers that are not in service.</td>
</tr>
<tr>
<td>13560</td>
<td>SMS attribute should be 'ON' for provisioning A2P</td>
</tr>
<tr>
<td>13561</td>
<td>A2P provisioning for Toll Free telephone numbers requires Toll Free to be enabled on corresponding Sip peer</td>
</tr>
<tr>
<td>13562</td>
<td>A2P provisioning for Long Code telephone numbers requires A2P Long Code with 'DefaultOn' or 'DefaultOff' values on corresponding Sip peer</td>
</tr>
</table>
<h2>ExternalTnsErrorType</h2>
<table class="fixed">
<tr>
<th>Error Code</th>
<th>Error Description</th>
</tr>
<tr>
<td>25000</td>
<td>Action is absent or invalid. Possible values: import, remove</td>
</tr>
<tr>
<td>25010</td>
<td>The customer provided telephone numbers capability is not allowed on this account.</td>
</tr>
<tr>
<td>25020</td>
<td>Provided '%s' and 'REMOVE' action cannot be used together.</td>
</tr>
<tr>
<td>25030</td>
<td>Telephone numbers does not belong to this account.</td>
</tr>
<tr>
<td>25040</td>
<td>Unable to remove telephone numbers from the Bandwidth Dashboard.</td>
</tr>
<tr>
<td>25050</td>
<td>Account configuration error: SPID is required.</td>
</tr>
<tr>
<td>25060</td>
<td>Bandwidth-owned telephone numbers cannot be imported as External TNs.</td>
</tr>
<tr>
<td>25070</td>
<td>The telephone numbers cannot be imported because their carrier ownership cannot be determined.</td>
</tr>
<tr>
<td>25080</td>
<td>Unable to provision telephone numbers. Please contact Bandwidth Support.</td>
</tr>
<tr>
<td>25090</td>
<td>Unable to import telephone numbers to the Bandwidth Dashboard.</td>
</tr>
</table>
<h2>ReservationErrors</h2>
<table class="fixed">
<tr>
<th>Error Code</th>
<th>Error Description</th>
</tr>
<tr>
<td>5040</td>
<td>Reservation failed: telephone number %s not found.</td>
</tr>
<tr>
<td>5041</td>
<td>Reservation failed: telephone number %s is not available.</td>
</tr>
<tr>
<td>5042</td>
<td>Reservation %s for account %d not found.</td>
</tr>
<tr>
<td>5043</td>
<td>Reservation %s not found.</td>
</tr>
<tr>
<td>5044</td>
<td>Reservation object is invalid.</td>
</tr>
<tr>
<td>5045</td>
<td>Reservation request param is invalid.</td>
</tr>
<tr>
<td>5046</td>
<td>Reservation not allowed for account %d .</td>
</tr>
<tr>
<td>5047</td>
<td>Cannot unreserve telephone number %s</td>
</tr>
</table>
<h2>VirtualInventoryError</h2>
<table class="fixed">
<tr>
<th>Error Code</th>
<th>Error Description</th>
</tr>
<tr>
<td>15000</td>
<td>Account '%s' does not have an account quota</td>
</tr>
<tr>
<td>15001</td>
<td>Account '%s' is already set up for Virtual Inventory</td>
</tr>
<tr>
<td>15002</td>
<td>Unable to lower %sQuota due to an existing criteria with a higher quantity</td>
</tr>
<tr>
<td>15003</td>
<td>AccountQuota of '%s' exceeds criteria quantity sum of '%s'</td>
</tr>
<tr>
<td>15004</td>
<td>%s Quota of '%s' exceeds AccountQuota of '%s'</td>
</tr>
<tr>
<td>15005</td>
<td>Criteria values may not overlap (e.g. if there already is a 919 criteria, 919234 cannot be added, however 918 can; if there already is 919234, 919 cannot be added, however 919235 can)</td>
</tr>
<tr>
<td>15006</td>
<td>Quantity '%s' exeeds CriteriaQuota of '%s'</td>
</tr>
<tr>
<td>15007</td>
<td>The sum of criteria quantities exceed AccountQuota of '%s'</td>
</tr>
<tr>
<td>15009</td>
<td>Account=%s does not have a criteria quota of type=%s</td>
</tr>
</table>
<h1>Porting Numbers In</h1>
<h2>LNP Checker API Call errors </h2>
<table class="fixed">
<tr>
<th>Error Code</th>
<th>Error Description</th>
</tr>
<tr>
<td>7000</td>
<td>API request has timed out</td>
</tr>
<tr>
<td>7102</td>
<td>Telephone number is required</td>
</tr>
<tr>
<td>7201</td>
<td>Telephone number is invalid</td>
</tr>
<tr>
<td>7205</td>
<td>Telephone number is already being processed on another order</td>
</tr>
<tr>
<td>7206</td>
<td>Telephone number is already in service</td>
</tr>
<tr>
<td>7472</td>
<td>Portability checking mode is not valid. Valid values: FALSE, TRUE, ONNETPORTABILITY, OFFNETPORTABILITY</td>
</tr>
<tr>
<td>7314</td>
<td>The number of telephone numbers provided exceeds the maximum %s</td>
</tr>
<tr>
<td>7316</td>
<td>At least one telephone number must be provided.</td>
</tr>
<tr>
<td>7360</td>
<td>Telephone number list can't contain duplicates.</td>
</tr>
<tr>
<td>7378</td>
<td>Porting is not available for numbers that are not in service on the losing carrier account</td>
</tr>
<tr>
<td>7386</td>
<td>You have mixed toll free and non-toll free numbers in the order. Please submit the toll free and non-toll free numbers in separate orders. These numbers are %s </td>
</tr>
<tr>
<td>7999</td>
<td>An internal error has occurred. Please contact support if this issue is not resolved in 1 business day</td>
</tr>
</table>
<h2>LNP or /portins errors </h2>
<table class="fixed">
<tr>
<th>Error Code</th>
<th>Error Description</th>
</tr>
<tr>
<td>7000</td>
<td>API request has timed out</td>
</tr>
<tr>
<td>7001</td>
<td>The account ID is required</td>
</tr>
<tr>
<td>7002</td>
<td>The account ID is invalid</td>
</tr>
<tr>
<td>7003</td>
<td>Unauthorized user</td>
</tr>
<tr>
<td>7004</td>
<td>Unable to provide coverage</td>
</tr>
<tr>
<td>7005</td>
<td>Unable to determine the next available FOC date</td>
</tr>
<tr>
<td>7100</td>
<td>The order ID is required</td>
</tr>
<tr>
<td>7101</td>
<td>At least one number must be specified to port</td>
</tr>
<tr>
<td>7102</td>
<td>Telephone number is required</td>
</tr>
<tr>
<td>7103</td>
<td>The billing telephone number (BTN) is required</td>
</tr>
<tr>
<td>7104</td>
<td>Subscriber information is required</td>
</tr>
<tr>
<td>7105</td>
<td>The subscriber name is required</td>
</tr>
<tr>
<td>7106</td>
<td>The subscriber type is required</td>
</tr>
<tr>
<td>7107</td>
<td>The service address is required</td>
</tr>
<tr>
<td>7108</td>
<td>The service address house number is required</td>
</tr>
<tr>
<td>7109</td>
<td>The service address street name is required</td>
</tr>
<tr>
<td>7110</td>
<td>The service address city is required</td>
</tr>
<tr>
<td>7111</td>
<td>The service address state code is required</td>
</tr>