regaliator 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +16 -0
  3. data/.ruby-version +1 -0
  4. data/Gemfile +4 -0
  5. data/Guardfile +36 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +116 -0
  8. data/Rakefile +11 -0
  9. data/lib/regaliator/api_version_error.rb +7 -0
  10. data/lib/regaliator/client.rb +9 -0
  11. data/lib/regaliator/configuration.rb +25 -0
  12. data/lib/regaliator/endpoint.rb +17 -0
  13. data/lib/regaliator/request.rb +100 -0
  14. data/lib/regaliator/response.rb +40 -0
  15. data/lib/regaliator/v15/account.rb +11 -0
  16. data/lib/regaliator/v15/bill.rb +23 -0
  17. data/lib/regaliator/v15/biller.rb +15 -0
  18. data/lib/regaliator/v15/client.rb +32 -0
  19. data/lib/regaliator/v15/rate.rb +15 -0
  20. data/lib/regaliator/v15/transaction.rb +23 -0
  21. data/lib/regaliator/v15.rb +7 -0
  22. data/lib/regaliator/v30/account.rb +11 -0
  23. data/lib/regaliator/v30/bill.rb +35 -0
  24. data/lib/regaliator/v30/biller.rb +19 -0
  25. data/lib/regaliator/v30/client.rb +32 -0
  26. data/lib/regaliator/v30/rate.rb +15 -0
  27. data/lib/regaliator/v30/transaction.rb +11 -0
  28. data/lib/regaliator/v30.rb +7 -0
  29. data/lib/regaliator/v31.rb +14 -0
  30. data/lib/regaliator/version.rb +3 -0
  31. data/lib/regaliator.rb +59 -0
  32. data/regaliator.gemspec +34 -0
  33. data/test/fixtures/vcr_cassettes/V31/account/failed_info.yml +48 -0
  34. data/test/fixtures/vcr_cassettes/V31/account/successful_info.yml +50 -0
  35. data/test/fixtures/vcr_cassettes/V31/bill/create.yml +52 -0
  36. data/test/fixtures/vcr_cassettes/V31/bill/list.yml +71 -0
  37. data/test/fixtures/vcr_cassettes/V31/bill/pay.yml +52 -0
  38. data/test/fixtures/vcr_cassettes/V31/bill/refresh.yml +52 -0
  39. data/test/fixtures/vcr_cassettes/V31/bill/show.yml +51 -0
  40. data/test/fixtures/vcr_cassettes/V31/bill/update.yml +53 -0
  41. data/test/fixtures/vcr_cassettes/V31/bill/xdata.yml +51 -0
  42. data/test/fixtures/vcr_cassettes/V31/biller/credentials.yml +256 -0
  43. data/test/fixtures/vcr_cassettes/V31/biller/topups.yml +209 -0
  44. data/test/fixtures/vcr_cassettes/V31/biller/utilities.yml +611 -0
  45. data/test/fixtures/vcr_cassettes/V31/rate/history.yml +50 -0
  46. data/test/fixtures/vcr_cassettes/V31/rate/list.yml +50 -0
  47. data/test/fixtures/vcr_cassettes/V31/transaction/list.yml +52 -0
  48. data/test/fixtures/vcr_cassettes/V31/transaction/search.yml +52 -0
  49. data/test/fixtures/vcr_cassettes/v15/account/failed_info.yml +50 -0
  50. data/test/fixtures/vcr_cassettes/v15/account/successful_info.yml +52 -0
  51. data/test/fixtures/vcr_cassettes/v15/bill/check.yml +52 -0
  52. data/test/fixtures/vcr_cassettes/v15/bill/consult.yml +52 -0
  53. data/test/fixtures/vcr_cassettes/v15/bill/index.yml +176 -0
  54. data/test/fixtures/vcr_cassettes/v15/bill/pay.yml +52 -0
  55. data/test/fixtures/vcr_cassettes/v15/biller/topups.yml +212 -0
  56. data/test/fixtures/vcr_cassettes/v15/biller/utilities.yml +611 -0
  57. data/test/fixtures/vcr_cassettes/v15/rate/history.yml +52 -0
  58. data/test/fixtures/vcr_cassettes/v15/rate/list.yml +52 -0
  59. data/test/fixtures/vcr_cassettes/v15/transaction/cancel.yml +52 -0
  60. data/test/fixtures/vcr_cassettes/v15/transaction/list.yml +54 -0
  61. data/test/fixtures/vcr_cassettes/v15/transaction/pay.yml +52 -0
  62. data/test/fixtures/vcr_cassettes/v15/transaction/reverse.yml +52 -0
  63. data/test/fixtures/vcr_cassettes/v15/transaction/search.yml +54 -0
  64. data/test/fixtures/vcr_cassettes/v30/account/failed_info.yml +48 -0
  65. data/test/fixtures/vcr_cassettes/v30/account/successful_info.yml +50 -0
  66. data/test/fixtures/vcr_cassettes/v30/bill/create.yml +56 -0
  67. data/test/fixtures/vcr_cassettes/v30/bill/list.yml +54 -0
  68. data/test/fixtures/vcr_cassettes/v30/bill/pay.yml +56 -0
  69. data/test/fixtures/vcr_cassettes/v30/bill/refresh.yml +56 -0
  70. data/test/fixtures/vcr_cassettes/v30/bill/show.yml +55 -0
  71. data/test/fixtures/vcr_cassettes/v30/bill/update.yml +57 -0
  72. data/test/fixtures/vcr_cassettes/v30/bill/xdata.yml +50 -0
  73. data/test/fixtures/vcr_cassettes/v30/biller/credentials.yml +54 -0
  74. data/test/fixtures/vcr_cassettes/v30/biller/topups.yml +54 -0
  75. data/test/fixtures/vcr_cassettes/v30/biller/utilities.yml +54 -0
  76. data/test/fixtures/vcr_cassettes/v30/rate/history.yml +54 -0
  77. data/test/fixtures/vcr_cassettes/v30/rate/list.yml +54 -0
  78. data/test/fixtures/vcr_cassettes/v30/transaction/list.yml +56 -0
  79. data/test/fixtures/vcr_cassettes/v30/transaction/search.yml +56 -0
  80. data/test/regaliator/api_version_error_test.rb +14 -0
  81. data/test/regaliator/client_test.rb +19 -0
  82. data/test/regaliator/configuration_test.rb +115 -0
  83. data/test/regaliator/endpoint_test.rb +19 -0
  84. data/test/regaliator/v15/account_test.rb +37 -0
  85. data/test/regaliator/v15/bill_test.rb +67 -0
  86. data/test/regaliator/v15/biller_test.rb +35 -0
  87. data/test/regaliator/v15/client_test.rb +23 -0
  88. data/test/regaliator/v15/rate_test.rb +35 -0
  89. data/test/regaliator/v15/transaction_test.rb +62 -0
  90. data/test/regaliator/v15_test.rb +10 -0
  91. data/test/regaliator/v30/account_test.rb +37 -0
  92. data/test/regaliator/v30/bill_test.rb +80 -0
  93. data/test/regaliator/v30/biller_test.rb +44 -0
  94. data/test/regaliator/v30/client_test.rb +23 -0
  95. data/test/regaliator/v30/rate_test.rb +35 -0
  96. data/test/regaliator/v30/transaction_test.rb +35 -0
  97. data/test/regaliator/v30_test.rb +10 -0
  98. data/test/regaliator/v31/account_test.rb +37 -0
  99. data/test/regaliator/v31/bill_test.rb +84 -0
  100. data/test/regaliator/v31/biller_test.rb +44 -0
  101. data/test/regaliator/v31/client_test.rb +23 -0
  102. data/test/regaliator/v31/rate_test.rb +35 -0
  103. data/test/regaliator/v31/transaction_test.rb +35 -0
  104. data/test/regaliator/v31_test.rb +10 -0
  105. data/test/regaliator/version_test.rb +10 -0
  106. data/test/regaliator_test.rb +66 -0
  107. data/test/test_helper.rb +26 -0
  108. metadata +394 -0
@@ -0,0 +1,611 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.regalii.dev/billers/utilities
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - application/vnd.regalii.v3.1+json
14
+ User-Agent:
15
+ - Regaliator gem v4.0.0
16
+ Content-Type:
17
+ - application/json
18
+ Date:
19
+ - Fri, 20 Jan 2017 18:17:41 GMT
20
+ Authorization:
21
+ - APIAuth testing:Cz4HA9vzYkp55fC26u9ZiC6e/kA=
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ X-Frame-Options:
28
+ - SAMEORIGIN
29
+ X-Xss-Protection:
30
+ - 1; mode=block
31
+ X-Content-Type-Options:
32
+ - nosniff
33
+ X-Pagination:
34
+ - '{"total_entries":730,"total_pages":1,"previous_page":null,"current_page":1,"next_page":null}'
35
+ Content-Type:
36
+ - application/json; charset=utf-8
37
+ Etag:
38
+ - W/"7b5b93916df14899da4bbe865ddca402"
39
+ Cache-Control:
40
+ - max-age=0, private, must-revalidate
41
+ X-Request-Id:
42
+ - 405cde6d-e536-42ea-9849-7e0278624909
43
+ X-Runtime:
44
+ - '0.830430'
45
+ Transfer-Encoding:
46
+ - chunked
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"billers":[{"id":6398,"name":"21st Century Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6399,"name":"AAA
50
+ Auto Club Group","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6400,"name":"AAA
51
+ Auto Club of Southern California","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6401,"name":"AAA
52
+ Northern California, Nevada and Utah","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6266,"name":"ACS","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3261,"name":"Adani
53
+ Energy Limited","country":"IN","currency":"INR","biller_type":"Gas","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":3182,"name":"Adosapaco
54
+ - Agua de Oaxaca","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"27","has_xdata":false},{"id":6123,"name":"Advanced
55
+ Disposal","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3042,"name":"Advantage
56
+ General","country":"JM","currency":"JMD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"5..6","has_xdata":false},{"id":6267,"name":"AES","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6093,"name":"Aetna","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3202,"name":"Agua
57
+ de Celaya (JUMAPA)","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"30","has_xdata":false},{"id":3162,"name":"Agua
58
+ de Salamanca (CMAPAS)","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"account_number","can_check_balance":false,"mask":"99999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"5","has_xdata":false},{"id":12541,"name":"Agua
59
+ de Saltillo","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":"99999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"22","has_xdata":false},{"id":6928,"name":"AGUA
60
+ EPA","country":"EC","currency":"USD","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":3172,"name":"Aguakan
61
+ - Agua de Quintana Roo","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"27","has_xdata":false},{"id":6925,"name":"AGUAPEN","country":"EC","currency":"USD","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":1471,"name":"Aguas
62
+ de San Pedro","country":"HN","currency":"HNL","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":2471,"name":"Aircel
63
+ Postpaid","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":2241,"name":"Airtel
64
+ DTH","country":"IN","currency":"INR","biller_type":"Satellite","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":2441,"name":"Airtel
65
+ Landline","country":"IN","currency":"INR","biller_type":"Landline","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":3291,"name":"Airtel
66
+ Topup Mobile","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6041,"name":"Alabama
67
+ Power","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6268,"name":"Alaska
68
+ USA Federal Credit Union","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6124,"name":"Alaska
69
+ Waste","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6046,"name":"Alliant
70
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6402,"name":"Allied
71
+ Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6024,"name":"Allstate","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":"","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"","has_xdata":false},{"id":6205,"name":"Ally
72
+ Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6269,"name":"Ally
73
+ Bank","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6926,"name":"AMAGUA","country":"EC","currency":"USD","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6125,"name":"Amarillo,
74
+ TX Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6304,"name":"Amazon.com
75
+ Store Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6044,"name":"Ambit
76
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12532,"name":"AMD
77
+ (Durango)","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":null,"account_number_digits":"6","has_xdata":false},{"id":6049,"name":"Ameren","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6126,"name":"American
78
+ Disposal Services","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6305,"name":"American
79
+ Eagle","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6050,"name":"American
80
+ Electric Power Ohio","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6014,"name":"American
81
+ Express","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6091,"name":"American
82
+ Family","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":8508,"name":"American
83
+ Family Insurance","country":"US","currency":"USD","biller_type":"Utility","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"8..11","has_xdata":false},{"id":6403,"name":"American
84
+ General Life Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6404,"name":"American
85
+ Home Shield","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6127,"name":"American
86
+ Utility Management","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6128,"name":"American
87
+ Water","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6405,"name":"Amica","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3082,"name":"Anbell","country":"JM","currency":"JMD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6129,"name":"Anchorage
88
+ Water and Wastewater Utility","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6394,"name":"Anthem
89
+ Blue Cross","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6107,"name":"AOL","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6051,"name":"Appalachian
90
+ Power","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6130,"name":"Aqua
91
+ Pennsylvania","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12494,"name":"Arabela","country":"MX","currency":"MXN","biller_type":"Media
92
+ Subscription","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"8","has_xdata":false},{"id":6052,"name":"Arizona
93
+ Public Service","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6364,"name":"Armstrong","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6115,"name":"Armstrong","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6025,"name":"Armstrong
94
+ Utilities","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6251,"name":"Armstrong
95
+ Zoom","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6270,"name":"Arvest
96
+ Bank","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6271,"name":"Aspire
97
+ Resources Inc.","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6272,"name":"Associated
98
+ Bank","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6406,"name":"Assurant
99
+ Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":5,"name":"Aster","country":"DO","currency":"DOP","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":"999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"6","has_xdata":false},{"id":8531,"name":"At\u0026T","country":"US","currency":"USD","biller_type":"Utility","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"13..17","has_xdata":false},{"id":5993,"name":"AT\u0026T
100
+ Mobility","country":"US","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":5991,"name":"AT\u0026T
101
+ U-Verse","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6021,"name":"AT\u0026T
102
+ U-Verse","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6915,"name":"AT\u0026T
103
+ U-Verse Priority","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6917,"name":"Atmos
104
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12495,"name":"Avon","country":"MX","currency":"MXN","biller_type":"Media
105
+ Subscription","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"14","has_xdata":false},{"id":1781,"name":"Axtel","country":"MX","currency":"MXN","biller_type":"Landline","bill_type":"phone_number","can_check_balance":false,"mask":"(999)
106
+ 999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"10","has_xdata":false},{"id":36,"name":"Axtel
107
+ [Barcode]","country":"MX","currency":"MXN","biller_type":"Landline","bill_type":"bar_code","can_check_balance":false,"mask":"99999999999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"26","has_xdata":false},{"id":3192,"name":"AyDM
108
+ - Agua y Drenaje Monterrey","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":"","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"32","has_xdata":false},{"id":2571,"name":"Banamex","country":"MX","currency":"MXN","biller_type":"Credit
109
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999-9999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6332,"name":"Banana
110
+ Republic Credit Card","country":"US","currency":"USD","biller_type":"Credit
111
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2611,"name":"Banco
112
+ Azteca","country":"MX","currency":"MXN","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999-9999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2762,"name":"Banco
113
+ Banisi","country":"PA","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":true,"mask":"9999-9999-9999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":2742,"name":"Banco
114
+ Ficohsa","country":"PA","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":true,"mask":"9999-9999-9999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":2752,"name":"Banco
115
+ Lafise","country":"PA","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":true,"mask":"9999-9999-9999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6206,"name":"Banco
116
+ Popular","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6273,"name":"Banco
117
+ Popular","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":971,"name":"Banco
118
+ Popular Dominicano","country":"DO","currency":"DOP","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6207,"name":"Bank
119
+ of America","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6018,"name":"Bank
120
+ of America Mastercard","country":"US","currency":"USD","biller_type":"Credit
121
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6019,"name":"Bank
122
+ of America Visa","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6208,"name":"Bank
123
+ of the West","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2581,"name":"Banorte","country":"MX","currency":"MXN","biller_type":"Credit
124
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999-9999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2591,"name":"Banregio","country":"MX","currency":"MXN","biller_type":"Credit
125
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999-9999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6109,"name":"Barclays","country":"US","currency":"USD","biller_type":"Credit
126
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6274,"name":"Barclays
127
+ Online Banking","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6209,"name":"BB\u0026T","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6110,"name":"BB\u0026T","country":"US","currency":"USD","biller_type":"Credit
128
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2561,"name":"BBVA
129
+ Bancomer","country":"MX","currency":"MXN","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999-9999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6210,"name":"BBVA
130
+ Compass","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6333,"name":"Belk
131
+ Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6334,"name":"Best
132
+ Buy Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6365,"name":"Best
133
+ Buy Geek Squad","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6045,"name":"BGE
134
+ (Baltimore)","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3611,"name":"Bhagalpur
135
+ Electricity","country":"IN","currency":"INR","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":3311,"name":"BIG
136
+ TV DTH","country":"IN","currency":"INR","biller_type":"Satellite","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6131,"name":"Birmingham
137
+ Water Works","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6395,"name":"Blue
138
+ Shield of California","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6396,"name":"BlueCross
139
+ BlueShield of Illinois","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6397,"name":"BlueCross
140
+ BlueShield of Texas","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6211,"name":"BMO
141
+ Harris Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6275,"name":"BMO
142
+ Harris Bank","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6263,"name":"Boost
143
+ Mobile","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6366,"name":"Bresnan
144
+ Communications","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6252,"name":"Bright
145
+ House Networks","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6027,"name":"Bright
146
+ House Networks","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6306,"name":"Bright
147
+ House Networks VOIP","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2271,"name":"BSES
148
+ Rajdhani","country":"IN","currency":"INR","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":3321,"name":"BSNL","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6367,"name":"Buckeye
149
+ Cable System","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6307,"name":"C
150
+ Spire Wireless","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":13,"name":"Caasd","country":"DO","currency":"DOP","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"2..8","has_xdata":false},{"id":32,"name":"Caasd
151
+ Oriental","country":"DO","currency":"DOP","biller_type":"Water","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":2632,"name":"Cable
152
+ Onda","country":"PA","currency":"USD","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":"99999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6308,"name":"Cable
153
+ One","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6368,"name":"Cable
154
+ One","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6117,"name":"Cable
155
+ ONE","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3142,"name":"Cablemas","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"32","has_xdata":false},{"id":1831,"name":"Cablevision","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":"9999999-9","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"8..10","has_xdata":false},{"id":39,"name":"Cablevision
156
+ Monterrey [Barcode]","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"bar_code","can_check_balance":false,"mask":"99999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"20","has_xdata":false},{"id":12538,"name":"Cablevision
157
+ Monterrey [Barcode]","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"bar_code","can_check_balance":false,"mask":"99999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"20","has_xdata":false},{"id":6036,"name":"Cablevision
158
+ VOIP","country":"US","currency":"USD","biller_type":"Landline","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":531,"name":"Caess","country":"SV","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"7","has_xdata":false},{"id":2832,"name":"Caess
159
+ [Barcode]","country":"SV","currency":"USD","biller_type":"Electricity","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":6132,"name":"California
160
+ Water Service Company","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6011,"name":"Capital
161
+ One","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6212,"name":"Capital
162
+ One 360","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6213,"name":"Capital
163
+ One Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1491,"name":"Casa
164
+ Claro","country":"HN","currency":"HNL","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":2481,"name":"Cellone","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":12518,"name":"CENECO","country":"PH","currency":"","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6214,"name":"Cenlar","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6053,"name":"CenterPoint
165
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6264,"name":"CenturyLink","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6022,"name":"CenturyLink","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6028,"name":"CenturyLink","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1451,"name":"Ceutec","country":"HN","currency":"HNL","biller_type":"Education","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":35,"name":"CFE","country":"MX","currency":"MXN","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"999
166
+ 999 999 999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"12","has_xdata":false},{"id":1841,"name":"CFE
167
+ [barcode]","country":"MX","currency":"MXN","biller_type":"Electricity","bill_type":"bar_code","can_check_balance":false,"mask":"999999999999999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"30","has_xdata":false},{"id":12517,"name":"CFE
168
+ [Deprecated]","country":"MX","currency":"MXN","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"999
169
+ 999 999 999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"12","has_xdata":false},{"id":6133,"name":"Charlotte-Mecklenburg
170
+ Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6369,"name":"Charter
171
+ Business","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":5997,"name":"Charter
172
+ Communications","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6370,"name":"Charter
173
+ Communications","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6037,"name":"Charter
174
+ VOIP","country":"US","currency":"USD","biller_type":"Landline","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6215,"name":"Chase","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6015,"name":"Chase
175
+ (JP Morgan)","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6276,"name":"Chase
176
+ Student Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6371,"name":"Choice
177
+ Cable TV","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6407,"name":"Cigna","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12519,"name":"Cignal","country":"PH","currency":"","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6253,"name":"Cincinnati
178
+ Bell","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6309,"name":"Cincinnati
179
+ Bell","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6372,"name":"Cincinnati
180
+ Bell","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2772,"name":"Citi","country":"PA","currency":"USD","biller_type":"Credit
181
+ Cards","bill_type":"account_number","can_check_balance":true,"mask":"9999-9999-9999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6216,"name":"Citi
182
+ Mortgage","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6277,"name":"Citi
183
+ Student Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6104,"name":"Citibank","country":"US","currency":"USD","biller_type":"Credit
184
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6012,"name":"Citigroup","country":"US","currency":"USD","biller_type":"Credit
185
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6217,"name":"Citizens
186
+ Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6094,"name":"Citizens
187
+ Bank Student Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6134,"name":"Citizens
188
+ Energy Group","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6135,"name":"Clark
189
+ Public Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6373,"name":"Clarksville
190
+ Department of Electricity","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":25,"name":"Claro","country":"DO","currency":"DOP","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
191
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6946,"name":"Claro","country":"EC","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":371,"name":"Claro","country":"SV","currency":"USD","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":1171,"name":"Claro","country":"GT","currency":"GTQ","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":true,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":1181,"name":"Claro","country":"GT","currency":"GTQ","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":421,"name":"Claro","country":"SV","currency":"USD","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":true,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":491,"name":"Claro","country":"SV","currency":"USD","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":2722,"name":"Claro
192
+ Celular","country":"PA","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":12521,"name":"Claro
193
+ DR","country":"DO","currency":"DOP","biller_type":"DRCell","bill_type":"phone_number","can_check_balance":false,"mask":"999-999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":1481,"name":"Claro
194
+ Movil","country":"HN","currency":"HNL","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":true,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":1201,"name":"Claro
195
+ Turbonet","country":"GT","currency":"GTQ","biller_type":"Internet","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6,"name":"Claro
196
+ Tv","country":"DO","currency":"DOP","biller_type":"Cable","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
197
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":2642,"name":"Claro
198
+ Tv","country":"PA","currency":"USD","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":1191,"name":"Claro
199
+ TV","country":"GT","currency":"GTQ","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":"99999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":2822,"name":"Claro
200
+ [Barcode]","country":"SV","currency":"USD","biller_type":"Cable","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":2792,"name":"Claro
201
+ [Barcode]","country":"SV","currency":"USD","biller_type":"Landline","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":2812,"name":"Claro
202
+ [Barcode]","country":"SV","currency":"USD","biller_type":"PostPaidCell","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":6254,"name":"Clearwire","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1331,"name":"Clesa","country":"SV","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"7","has_xdata":false},{"id":2852,"name":"Clesa
203
+ [Barcode]","country":"SV","currency":"USD","biller_type":"Electricity","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":6136,"name":"Cleveland,
204
+ OH Water","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12499,"name":"CMAPAS
205
+ (Salamanca)","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"5","has_xdata":false},{"id":6943,"name":"CNEL
206
+ Bolivar","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6940,"name":"CNEL
207
+ El Oro","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6937,"name":"CNEL
208
+ Esmeraldas","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6936,"name":"CNEL
209
+ Guayaquil","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6934,"name":"CNEL
210
+ Guayas Los Rios","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6935,"name":"CNEL
211
+ Los Rios","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6939,"name":"CNEL
212
+ Manabi","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6941,"name":"CNEL
213
+ Milagro","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6938,"name":"CNEL
214
+ Santa Elena","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6944,"name":"CNEL
215
+ Santo Domindo","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6942,"name":"CNEL
216
+ Sucumbios","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6945,"name":"CNT","country":"EC","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6949,"name":"CNT","country":"EC","currency":"USD","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6950,"name":"CNT","country":"EC","currency":"USD","biller_type":"Landline","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6951,"name":"CNT","country":"EC","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":7,"name":"Codetel
217
+ Claro","country":"DO","currency":"DOP","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
218
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6137,"name":"Colorado
219
+ Springs Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2962,"name":"Combined
220
+ Comm","country":"JM","currency":"JMD","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":8525,"name":"Comcast","country":"US","currency":"USD","biller_type":"Utility","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"9..20","has_xdata":false},{"id":6310,"name":"Comcast
221
+ Business Class","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6374,"name":"Comcast
222
+ Business Class","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6038,"name":"Comcast
223
+ Digital Voice VOIP","country":"US","currency":"USD","biller_type":"Landline","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6916,"name":"Comcast
224
+ Priority","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":4,"account_number_digits":null,"has_xdata":false},{"id":5987,"name":"Comcast
225
+ Xfinity","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":5998,"name":"Comcast
226
+ Xfinity","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6054,"name":"ComEd","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6278,"name":"Commerce
227
+ Bank","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6408,"name":"Commerce
228
+ Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6375,"name":"Comporium","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6033,"name":"Con
229
+ Edison","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3331,"name":"Connect
230
+ Broadband","country":"IN","currency":"INR","biller_type":"Landline","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6138,"name":"Conservice","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6376,"name":"Consolidated
231
+ Communications","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6377,"name":"Consolidated
232
+ Communications (formerly SureWest)","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6055,"name":"Consumers
233
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1321,"name":"Convergence","country":"GT","currency":"GTQ","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":1701,"name":"Convergence","country":"GT","currency":"GTQ","biller_type":"Landline","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":2521,"name":"Coppel","country":"MX","currency":"MXN","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":31,"name":"Coraasan","country":"DO","currency":"DOP","biller_type":"Water","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":2972,"name":"Cornwall
234
+ Communication Ltd","country":"JM","currency":"JMD","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"7..10","has_xdata":false},{"id":6139,"name":"Corpus
235
+ Christi, TX Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":5999,"name":"Cox
236
+ Communications","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6005,"name":"Cox
237
+ Communications","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6311,"name":"Cox
238
+ Communications","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6039,"name":"Cox
239
+ Communications VOIP","country":"US","currency":"USD","biller_type":"Landline","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":7600,"name":"Cps
240
+ Energy","country":"US","currency":"USD","biller_type":"Utility","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"10","has_xdata":false},{"id":6140,"name":"CR\u0026R
241
+ Waste Services","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6335,"name":"Credit
242
+ One Bank","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6312,"name":"Cricket
243
+ Wireless","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2301,"name":"Dakshin
244
+ Gujarat Vij","country":"IN","currency":"INR","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"10","has_xdata":false},{"id":6141,"name":"Dallas,
245
+ TX","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6142,"name":"Deffenbaugh
246
+ Industries","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3092,"name":"DeKal
247
+ Wireless","country":"JM","currency":"JMD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6336,"name":"Dell
248
+ Financial Services","country":"US","currency":"USD","biller_type":"Credit
249
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":541,"name":"Delsur","country":"SV","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"7","has_xdata":false},{"id":2842,"name":"Delsur
250
+ [Barcode]","country":"SV","currency":"USD","biller_type":"Electricity","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":6409,"name":"Delta
251
+ Community Credit Union","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1351,"name":"Deusem","country":"SV","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"7","has_xdata":false},{"id":2872,"name":"Deusem
252
+ [Barcode]","country":"SV","currency":"USD","biller_type":"Electricity","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":3132,"name":"Digicel","country":"JM","currency":"JMD","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"7..11","has_xdata":false},{"id":12526,"name":"Digicel
253
+ Haiti","country":"DO","currency":"DOP","biller_type":"DRCell","bill_type":"phone_number","can_check_balance":false,"mask":"99-99-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":6218,"name":"Digital
254
+ Federal Credit Union","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6410,"name":"Direct
255
+ General","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6914,"name":"DirectTV
256
+ Priority","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":4,"account_number_digits":null,"has_xdata":false},{"id":5988,"name":"DirecTV","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6016,"name":"Discover
257
+ Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6279,"name":"Discover
258
+ Personal Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6095,"name":"Discover
259
+ Student Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1771,"name":"Dish","country":"MX","currency":"MXN","biller_type":"Satellite","bill_type":"account_number","can_check_balance":true,"mask":"99999?999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":48,"account_number_digits":"5..8","has_xdata":false},{"id":5989,"name":"DISH
260
+ Network","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3351,"name":"DISH
261
+ TV DTH","country":"IN","currency":"INR","biller_type":"Satellite","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":38,"name":"Dish
262
+ [Barcode]","country":"MX","currency":"MXN","biller_type":"Satellite","bill_type":"bar_code","can_check_balance":true,"mask":"9999999999999?9","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"13..14","has_xdata":false},{"id":2451,"name":"Docomo
263
+ Postpaid ","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3361,"name":"Docomo
264
+ Postpaid Cellular","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6057,"name":"Dominion","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6058,"name":"DTE
265
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6059,"name":"Duke
266
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6280,"name":"E*TRADE
267
+ Bank","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6930,"name":"E.E.Q","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6026,"name":"Earthlink","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6143,"name":"EBMUD","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6281,"name":"ECSI","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6144,"name":"EDCO","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2662,"name":"Edechi","country":"PA","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":3,"name":"Edeeste","country":"DO","currency":"DOP","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"7","has_xdata":false},{"id":2672,"name":"Edemet","country":"PA","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":2,"name":"Edenorte","country":"DO","currency":"DOP","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"7","has_xdata":false},{"id":1,"name":"Edesur","country":"DO","currency":"DOP","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"7","has_xdata":false},{"id":6282,"name":"EdFinancial
268
+ Services","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6932,"name":"EEASA","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":1141,"name":"EEGSA","country":"GT","currency":"GTQ","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":1341,"name":"EEO","country":"SV","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"7","has_xdata":false},{"id":2862,"name":"EEO
269
+ [Barcode]","country":"SV","currency":"USD","biller_type":"Electricity","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":6929,"name":"EERCS","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6933,"name":"EERSA","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":2531,"name":"Elektra","country":"MX","currency":"MXN","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6923,"name":"EMAPAI","country":"EC","currency":"USD","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6924,"name":"EMAPAP","country":"EC","currency":"USD","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6931,"name":"EMELNORTE","country":"EC","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":821,"name":"Enee","country":"HN","currency":"HNL","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":1151,"name":"Energuate
270
+ Deocsa","country":"GT","currency":"GTQ","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":1161,"name":"Energuate
271
+ Deorsa","country":"GT","currency":"GTQ","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":12550,"name":"Enlace
272
+ TP [Barcode]","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"bar_code","can_check_balance":true,"mask":"99999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"17","has_xdata":true},{"id":2682,"name":"Ensa","country":"PA","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6060,"name":"Entergy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6918,"name":"Entergy
273
+ Texas","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6313,"name":"EPB","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6378,"name":"EPB","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6922,"name":"EPMAPS
274
+ Quito","country":"EC","currency":"USD","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":6411,"name":"eRenterPlan","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6412,"name":"Erie
275
+ Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6413,"name":"esurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6061,"name":"Eversource","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6337,"name":"EXPRESS
276
+ NEXT Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6255,"name":"FairPoint
277
+ Communications","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6379,"name":"Fairpoint
278
+ Communications","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2541,"name":"Famsa","country":"MX","currency":"MXN","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6089,"name":"Farmers","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6283,"name":"FedLoan
279
+ Servicing","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6219,"name":"Fifth
280
+ Third Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6338,"name":"Fifth
281
+ Third Bank","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2782,"name":"Finangente","country":"PA","currency":"USD","biller_type":"Credit
282
+ Cards","bill_type":"account_number","can_check_balance":true,"mask":"9999-9999-9999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6339,"name":"Fingerhut
283
+ Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6284,"name":"First
284
+ Mark Services","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6220,"name":"First
285
+ Niagara Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6221,"name":"First
286
+ Premier Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6340,"name":"First
287
+ Premier Bank Credit Card","country":"US","currency":"USD","biller_type":"Credit
288
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6222,"name":"First
289
+ Tech","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6062,"name":"FirstEnergy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6285,"name":"FirstMerit
290
+ Bank","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6223,"name":"Flagstar
291
+ Bank MyLoans","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6286,"name":"Flagstar
292
+ Bank MyLoans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6063,"name":"Florida
293
+ Power \u0026 Light","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6920,"name":"FLORIDA
294
+ SUNPASS","country":"US","currency":"USD","biller_type":"Toll","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2982,"name":"Flow","country":"JM","currency":"JMD","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":"9999
295
+ 9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"8","has_xdata":false},{"id":6145,"name":"Fort
296
+ Worth, TX Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6314,"name":"Frontier","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6380,"name":"Frontier","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6035,"name":"Frontier
297
+ Communications","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6341,"name":"Gap
298
+ Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":43,"name":"Gas
299
+ Natural Mexico [Barcode]","country":"MX","currency":"MXN","biller_type":"Gas","bill_type":"bar_code","can_check_balance":false,"mask":"9999999999999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"28","has_xdata":false},{"id":6315,"name":"GCI","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6381,"name":"GCI","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6023,"name":"GEICO","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6287,"name":"Genesis
300
+ Lending","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6064,"name":"Georgia
301
+ Power","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6414,"name":"Gerber
302
+ Life Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6146,"name":"Gilbert,
303
+ AZ Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6415,"name":"Globe
304
+ Life and Accident Insurance Company","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3152,"name":"Gobierno
305
+ de Chihuahua","country":"MX","currency":"MXN","biller_type":"Government","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"24","has_xdata":false},{"id":6288,"name":"Golden
306
+ 1 Credit Union","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6316,"name":"Grande
307
+ Communications","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6118,"name":"Grande
308
+ Communications","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6382,"name":"Grande
309
+ Communications","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6289,"name":"Granite
310
+ State Management \u0026 Resources","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6290,"name":"Great
311
+ Lakes","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6224,"name":"Green
312
+ Tree Servicing (My Account)","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6147,"name":"Groot
313
+ Industries","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3052,"name":"Guardian
314
+ Life Limited","country":"JM","currency":"JMD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6148,"name":"Gwinnett
315
+ County Water","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6317,"name":"H2O
316
+ Wireless","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6149,"name":"Hampton
317
+ Roads Sanitation District","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6150,"name":"Hillsborough,
318
+ FL County Water","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6151,"name":"Houston,
319
+ TX Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6225,"name":"HSBC","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2551,"name":"HSBC","country":"MX","currency":"MXN","biller_type":"Credit
320
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999-9999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6318,"name":"Hughes
321
+ Network Systems","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6256,"name":"HughesNet","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6416,"name":"Humana
322
+ Insurance Company","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6417,"name":"Huntington
323
+ National Bank","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6226,"name":"Huntington
324
+ National Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12514,"name":"IAVE","country":"MX","currency":"MXN","biller_type":"toll","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":2702,"name":"IDAAN","country":"PA","currency":"USD","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":2501,"name":"IDEA
325
+ Postpaid","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":12552,"name":"Ilusion","country":"MX","currency":"MXN","biller_type":"Media
326
+ Subscription","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":null,"account_number_digits":"17","has_xdata":false},{"id":6152,"name":"Indiana
327
+ American Water","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2421,"name":"Indraprastha
328
+ Gas","country":"IN","currency":"INR","biller_type":"Gas","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":44,"name":"Infonavit","country":"MX","currency":"MXN","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":true,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"10","has_xdata":false},{"id":6927,"name":"INTERAGUA","country":"EC","currency":"USD","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":12533,"name":"INTERAPAS
329
+ (San Luis Potosi)","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":"","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":null,"account_number_digits":"23","has_xdata":false},{"id":3242,"name":"iROKOtv","country":"NG","currency":"NGN","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":2901,"name":"Iusacell","country":"MX","currency":"MXN","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
330
+ 999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"10","has_xdata":false},{"id":12491,"name":"Iusacell","country":"MX","currency":"MXN","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":true,"mask":"999-999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"10","has_xdata":false},{"id":6900,"name":"Izzi","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":"99999999?99","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"8..10","has_xdata":false},{"id":12545,"name":"JAD
331
+ - Agua de Matamoros","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":"99999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"14","has_xdata":false},{"id":6342,"name":"JCPenney
332
+ Rewards Credit Card","country":"US","currency":"USD","biller_type":"Credit
333
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6153,"name":"JEA
334
+ Electric","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1411,"name":"Jetstereo","country":"HN","currency":"HNL","biller_type":"Credit
335
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999-9999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"16","has_xdata":false},{"id":2992,"name":"JM
336
+ Cable Vision","country":"JM","currency":"JMD","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":"99999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"5","has_xdata":false},{"id":12534,"name":"JMAS
337
+ - Chihuahua","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":null,"account_number_digits":"22","has_xdata":false},{"id":6154,"name":"Johnson
338
+ County, KS Wastewater","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3032,"name":"JPS","country":"JM","currency":"JMD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":"","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"","has_xdata":false},{"id":12506,"name":"JUMAPA
339
+ (Celaya)","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"30","has_xdata":false},{"id":6155,"name":"Kansas
340
+ City, MO Water Services","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6343,"name":"Kay
341
+ Jewelers","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6065,"name":"KCP\u0026L","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6227,"name":"KeyBank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6156,"name":"Kimble
342
+ Companies","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6157,"name":"Knoxville
343
+ Utilities Board","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6344,"name":"Kohl''s
344
+ Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12554,"name":"L''bel
345
+ Belcorp Cyzone","country":"MX","currency":"MXN","biller_type":"Media Subscription","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":null,"account_number_digits":"9","has_xdata":false},{"id":12555,"name":"L''bel
346
+ Belcorp Esika","country":"MX","currency":"MXN","biller_type":"Media Subscription","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":null,"account_number_digits":"9","has_xdata":false},{"id":12553,"name":"L''bel
347
+ Belcorp L''ebel","country":"MX","currency":"MXN","biller_type":"Media Subscription","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":null,"account_number_digits":"9","has_xdata":false},{"id":19,"name":"La
348
+ Colonial","country":"DO","currency":"DOP","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6158,"name":"Lafayette
349
+ Utilities System","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6345,"name":"Lane
350
+ Bryant Credit Card","country":"US","currency":"USD","biller_type":"Credit
351
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6159,"name":"Las
352
+ Vegas Valley Water District","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6032,"name":"Liberty
353
+ Mutual","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3112,"name":"LIME","country":"JM","currency":"JMD","biller_type":"Landline","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"12..13","has_xdata":false},{"id":3122,"name":"LIME","country":"JM","currency":"JMD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"12..13","has_xdata":false},{"id":2491,"name":"Loop
354
+ Mobile","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6066,"name":"Los
355
+ Angeles Department of Water \u0026 Power","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6160,"name":"Louisville
356
+ Water Company","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6346,"name":"Lowe''s
357
+ Consumer Credit Card","country":"US","currency":"USD","biller_type":"Credit
358
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6228,"name":"M\u0026T
359
+ Bank Mortgage","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6347,"name":"Macy''s
360
+ Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3411,"name":"Madhya
361
+ Gujarat Vij","country":"IN","currency":"INR","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":2411,"name":"Mahanagar
362
+ Gas - Mumbai","country":"IN","currency":"INR","biller_type":"Gas","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":1891,"name":"Manila
363
+ Water","country":"PH","currency":"PHP","biller_type":"Water","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":3002,"name":"Mars
364
+ Cable Vision","country":"JM","currency":"JMD","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"2..5","has_xdata":false},{"id":6348,"name":"maurices
365
+ Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1811,"name":"Maxcom","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":"9999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"7","has_xdata":false},{"id":1911,"name":"Maynilad","country":"PH","currency":"PHP","biller_type":"Water","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6161,"name":"McKinney,
366
+ TX Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6257,"name":"Mediacom","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6258,"name":"Mediacom
367
+ Cable","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6319,"name":"Mediacom
368
+ Cable","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6383,"name":"Mediacom
369
+ Cable","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3062,"name":"Medical
370
+ Assoc. of Ja Insurance","country":"JM","currency":"JMD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":"999
371
+ 9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"7","has_xdata":false},{"id":1821,"name":"Megacable","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":"999-9999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":41,"name":"Megacable
372
+ [Barcode]","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"bar_code","can_check_balance":true,"mask":"99999999999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"26","has_xdata":false},{"id":1861,"name":"Meralco","country":"PH","currency":"PHP","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6418,"name":"Mercury
373
+ Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6229,"name":"Merrick
374
+ Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6162,"name":"Mesa,
375
+ AZ Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6114,"name":"MetLife
376
+ Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6163,"name":"Metro
377
+ Water Services","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6265,"name":"MetroPCS","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6164,"name":"Metropolitan
378
+ Utilities District","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6165,"name":"Miami-Dade
379
+ Water \u0026 Sewer","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6067,"name":"MidAmerican
380
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6320,"name":"Midcontinent
381
+ Communications","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6119,"name":"Midcontinent
382
+ Communications","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6384,"name":"Midcontinent
383
+ Communications","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6166,"name":"Minneapolis,
384
+ MN Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6167,"name":"Missouri
385
+ American Water","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6168,"name":"MLGW","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2652,"name":"Mocatel","country":"PA","currency":"USD","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6291,"name":"Mohela","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1431,"name":"Motomundo","country":"HN","currency":"HNL","biller_type":"Credit
386
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999-9999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"16","has_xdata":false},{"id":12525,"name":"Moun
387
+ Haiti","country":"DO","currency":"DOP","biller_type":"DRCell","bill_type":"phone_number","can_check_balance":false,"mask":"99-99-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":6292,"name":"Mountain
388
+ America Credit Union","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6947,"name":"Movistar","country":"EC","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":null,"has_xdata":false},{"id":2911,"name":"Movistar","country":"MX","currency":"MXN","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"(999)
389
+ 999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"10","has_xdata":false},{"id":2732,"name":"Movistar","country":"PA","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":1221,"name":"Movistar","country":"GT","currency":"GTQ","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":1231,"name":"Movistar","country":"GT","currency":"GTQ","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":true,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":1241,"name":"Movistar","country":"GT","currency":"GTQ","biller_type":"Internet","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":5985,"name":"Movistar
390
+ [Barcode]","country":"MX","currency":"MXN","biller_type":"PostPaidCell","bill_type":"bar_code","can_check_balance":false,"mask":"999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"18","has_xdata":false},{"id":3421,"name":"MTNL
391
+ Delhi","country":"IN","currency":"INR","biller_type":"Landline","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":3441,"name":"MTS","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":3451,"name":"MTS
392
+ Landline","country":"IN","currency":"INR","biller_type":"Landline","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":1721,"name":"Multicredit","country":"GT","currency":"GTQ","biller_type":"Credit
393
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":12539,"name":"Multimedios
394
+ Saltillo [Barcode]","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"bar_code","can_check_balance":false,"mask":"99999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"20","has_xdata":false},{"id":6293,"name":"Municipal
395
+ Credit Union","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12527,"name":"Natcom
396
+ Haiti","country":"DO","currency":"DOP","biller_type":"DRCell","bill_type":"phone_number","can_check_balance":false,"mask":"99-99-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":6419,"name":"National
397
+ General Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6047,"name":"National
398
+ Grid","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6230,"name":"Nationstar
399
+ Mortgage","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6092,"name":"Nationwide
400
+ Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12557,"name":"Natura","country":"MX","currency":"MXN","biller_type":"Media
401
+ Subscription","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":null,"account_number_digits":"11","has_xdata":false},{"id":6294,"name":"Navient","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6231,"name":"Navy
402
+ Federal Credit Union","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6349,"name":"Navy
403
+ Federal Credit Union","country":"US","currency":"USD","biller_type":"Credit
404
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1761,"name":"Neconsa","country":"GT","currency":"GTQ","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6295,"name":"Nelnet","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6096,"name":"Nelnet
405
+ Student Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6169,"name":"New
406
+ Jersey American Water","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6921,"name":"New
407
+ Mexico Gas","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6385,"name":"New
408
+ Wave Communications","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6350,"name":"New
409
+ York \u0026 Co. Rewards Credit Card","country":"US","currency":"USD","biller_type":"Credit
410
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2921,"name":"Nextel","country":"MX","currency":"MXN","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"(999)
411
+ 999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"10","has_xdata":false},{"id":12551,"name":"Nextel
412
+ [Barcode]","country":"MX","currency":"MXN","biller_type":"PostPaidCell","bill_type":"bar_code","can_check_balance":false,"mask":"99999999999999999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":24,"account_number_digits":"20","has_xdata":false},{"id":12492,"name":"Nextel
413
+ [Barcode]","country":"MX","currency":"MXN","biller_type":"PostPaidCell","bill_type":"bar_code","can_check_balance":false,"mask":"99999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"20","has_xdata":false},{"id":6068,"name":"NIPSCO","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6351,"name":"Nordstrom
414
+ Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6420,"name":"Northwestern
415
+ Mutual Life Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6321,"name":"nTelos
416
+ Wireless","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6069,"name":"NV
417
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3102,"name":"NWC","country":"JM","currency":"JMD","biller_type":"Water","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"12..14","has_xdata":false},{"id":6170,"name":"NWP
418
+ Services Corporation","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6171,"name":"NYC
419
+ Department of Environmental Protection","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1741,"name":"Occidente","country":"GT","currency":"GTQ","biller_type":"Credit
420
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6232,"name":"Ocwen
421
+ Loan Servicing","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2692,"name":"Oficina
422
+ De Electrificacion de BDT","country":"PA","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6172,"name":"Oklahoma
423
+ City","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6173,"name":"Oklahoma
424
+ City, OK Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6070,"name":"Oklahoma
425
+ Gas \u0026 Electric","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6174,"name":"Olathe,
426
+ KS Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6352,"name":"Old
427
+ Navy Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6322,"name":"Optimum","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6386,"name":"Optimum","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12,"name":"Orange","country":"DO","currency":"DOP","biller_type":"Credit
428
+ Cards","bill_type":"phone_number","can_check_balance":false,"mask":"(999)
429
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":23,"name":"Orange","country":"DO","currency":"DOP","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
430
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6175,"name":"Orange
431
+ County, FL","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6176,"name":"Orange
432
+ County, FL Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12522,"name":"Orange
433
+ DR","country":"DO","currency":"DOP","biller_type":"DRCell","bill_type":"phone_number","can_check_balance":false,"mask":"999-999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6177,"name":"Orlando
434
+ Utilities Commission","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6323,"name":"Page
435
+ Plus Cellular","country":"US","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3461,"name":"Paschim
436
+ Gujarat Vij","country":"IN","currency":"INR","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"10","has_xdata":false},{"id":6178,"name":"Pasco
437
+ County, FL Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12513,"name":"Pase
438
+ Urbano","country":"MX","currency":"MXN","biller_type":"toll","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6353,"name":"PayPal","country":"US","currency":"USD","biller_type":"Credit
439
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6017,"name":"PayPal
440
+ Credit (formerly Bill Me Later)","country":"US","currency":"USD","biller_type":"Credit
441
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6071,"name":"PECO","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6179,"name":"Pennsylvania
442
+ American Water","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6233,"name":"Pentagon
443
+ Federal Credit Union","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6296,"name":"People''s
444
+ United Bank","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6072,"name":"Pepco","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6073,"name":"PG\u0026E","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3232,"name":"PHCN
445
+ Prepaid (EKO)","country":"NG","currency":"NGN","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":3222,"name":"PHEN","country":"NG","currency":"NGN","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6180,"name":"Phoenix,
446
+ AZ Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6181,"name":"Plano,
447
+ TX Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2011,"name":"PLDT","country":"PH","currency":"PHP","biller_type":"Landline","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6105,"name":"PNC
448
+ Bank","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6097,"name":"PNC
449
+ Bank Student Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6234,"name":"PNC
450
+ Mortgage","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6919,"name":"PNM","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6042,"name":"Portland
451
+ General Electric","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6074,"name":"PPL
452
+ Electric Utilities","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6421,"name":"Primerica","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6031,"name":"Progressive","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6422,"name":"Progressive
453
+ Home Advantage by Homesite","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6182,"name":"Progressive
454
+ Waste Solutions","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1731,"name":"Promerica","country":"GT","currency":"GTQ","biller_type":"Credit
455
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":16,"name":"Proseguros","country":"DO","currency":"DOP","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"","has_xdata":false},{"id":6183,"name":"PSEG","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6075,"name":"PSEG","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6076,"name":"Public
456
+ Service Company of Oklahoma","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6048,"name":"Puget
457
+ Sound Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6235,"name":"Quicken
458
+ Loans","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6324,"name":"Qwest","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6184,"name":"Raleigh,
459
+ NC Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6006,"name":"RCN","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6325,"name":"RCN","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6120,"name":"RCN","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6236,"name":"Regions","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6111,"name":"Regions
460
+ Bank","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3471,"name":"Reliance
461
+ CDMA","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":3481,"name":"Reliance
462
+ Communications Infrastructure Ltd","country":"IN","currency":"INR","biller_type":"Landline","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":3491,"name":"Reliance
463
+ GSM","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6077,"name":"Reliant
464
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6185,"name":"Republic
465
+ Services","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6078,"name":"Rocky
466
+ Mountain Power","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6186,"name":"Rumpke","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6187,"name":"Sacramento
467
+ County, CA Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6423,"name":"SafeAuto
468
+ Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6424,"name":"Safeco
469
+ Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3072,"name":"Sagicor
470
+ Life Ja","country":"JM","currency":"JMD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6237,"name":"Sallie
471
+ Mae Bank Savings \u0026 CDs","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6098,"name":"Sallie
472
+ Mae Student Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2882,"name":"Salnet
473
+ [Barcode]","country":"SV","currency":"USD","biller_type":"Internet","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":6188,"name":"Salt
474
+ River Project","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6079,"name":"Salt
475
+ River Project","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6354,"name":"Sam''s
476
+ Club Personal Credit Card","country":"US","currency":"USD","biller_type":"Credit
477
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6189,"name":"San
478
+ Antonio Water System","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6080,"name":"San
479
+ Diego Gas \u0026 Electric","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6190,"name":"San
480
+ Jose, CA Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2951,"name":"Sanaa-Tgu","country":"HN","currency":"HNL","biller_type":"Water","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6191,"name":"Santa
481
+ Maria Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2601,"name":"Santander","country":"MX","currency":"MXN","biller_type":"Credit
482
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999-9999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6238,"name":"Santander
483
+ Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6081,"name":"SCE\u0026G","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6239,"name":"SchoolsFirst
484
+ Federal Credit Union","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6297,"name":"SchoolsFirst
485
+ Federal Credit Union","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12535,"name":"SEAPAL
486
+ (Puerto Vallarta)","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":null,"account_number_digits":"","has_xdata":false},{"id":6355,"name":"Sears
487
+ Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6043,"name":"Seattle
488
+ City Light","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6298,"name":"Security
489
+ Service Federal Credit Union","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":20,"name":"Seguros
490
+ Ban Reservas","country":"DO","currency":"DOP","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":17,"name":"Seguros
491
+ Pepin","country":"DO","currency":"DOP","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":18,"name":"Seguros
492
+ Universal","country":"DO","currency":"DOP","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":12546,"name":"SENCORP
493
+ - Agua de Temixco","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":"99999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"16","has_xdata":false},{"id":6121,"name":"Service
494
+ Electric Broadband Cable","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6387,"name":"Service
495
+ Electric Cable TV \u0026 Communications","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6299,"name":"Seterus","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6388,"name":"Shentel","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1791,"name":"Siapa","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"account_number","can_check_balance":false,"mask":"99999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"8","has_xdata":false},{"id":45,"name":"Siapa
496
+ - Guadalajara [Barcode]","country":"MX","currency":"MXN","biller_type":"Water","bill_type":"bar_code","can_check_balance":false,"mask":"9999999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"22","has_xdata":false},{"id":1751,"name":"Siman","country":"GT","currency":"GTQ","biller_type":"Credit
497
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6326,"name":"SIMPLE
498
+ Mobile","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3501,"name":"Siti
499
+ Energy Ltd","country":"IN","currency":"INR","biller_type":"Gas","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":40,"name":"Sky","country":"MX","currency":"MXN","biller_type":"Satellite","bill_type":"account_number","can_check_balance":true,"mask":"999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"12","has_xdata":false},{"id":2712,"name":"Sky","country":"PA","currency":"USD","biller_type":"Satellite","bill_type":"account_number","can_check_balance":true,"mask":"999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6891,"name":"Sky","country":"DO","currency":"DOP","biller_type":"Satellite","bill_type":"account_number","can_check_balance":true,"mask":"999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"12","has_xdata":false},{"id":2892,"name":"Sky
500
+ [Barcode]","country":"SV","currency":"USD","biller_type":"Satellite","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":2111,"name":"SkyCable","country":"PH","currency":"PHP","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":251,"name":"SkyMax","country":"DO","currency":"DOP","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":2071,"name":"Smart","country":"PH","currency":"PHP","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":2231,"name":"Smart
501
+ Broadband","country":"PH","currency":"PHP","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6082,"name":"SMUD","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3621,"name":"SNDL
502
+ Nagpur","country":"IN","currency":"INR","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6192,"name":"Snohomish
503
+ PUD","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6099,"name":"SoFi
504
+ Student Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6083,"name":"Southern
505
+ California Edison","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6193,"name":"Sparkletts
506
+ Bottled Water","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":5994,"name":"Sprint","country":"US","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":261,"name":"StarCable","country":"DO","currency":"DOP","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":"99999999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"11","has_xdata":false},{"id":6240,"name":"State
507
+ Employees'' Credit Union","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6241,"name":"State
508
+ Farm","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6020,"name":"State
509
+ Farm","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6356,"name":"State
510
+ Farm","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6194,"name":"Stockton,
511
+ CA Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6327,"name":"Suddenlink","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6389,"name":"Suddenlink","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6259,"name":"Suddenlink
512
+ Communications","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3511,"name":"Sun
513
+ TV DTH recharge","country":"IN","currency":"INR","biller_type":"Satellite","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6242,"name":"Suncoast
514
+ Credit Union","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6112,"name":"SunTrust
515
+ Bank","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6243,"name":"SunTrust
516
+ Mortgage","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6100,"name":"SunTrust
517
+ Student Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6260,"name":"SureWest","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3252,"name":"Swift
518
+ 4G Subscription","country":"NG","currency":"NGN","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6357,"name":"Synchrony
519
+ Financial","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6003,"name":"T-Mobile","country":"US","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6108,"name":"Tacoma
520
+ Public Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6195,"name":"Tallahassee,
521
+ FL Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6056,"name":"Tampa
522
+ Electric","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6358,"name":"Target
523
+ REDcard","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3541,"name":"Tata
524
+ Indicom","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":2251,"name":"Tata
525
+ SKY","country":"IN","currency":"INR","biller_type":"Satellite","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":2461,"name":"Tata
526
+ TeleServices","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3561,"name":"Tata
527
+ TeleServices Cellular","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":3551,"name":"Tata
528
+ Teleservices Landline","country":"IN","currency":"INR","biller_type":"Landline","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6244,"name":"TCF
529
+ Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6245,"name":"TD
530
+ Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6113,"name":"TD
531
+ Bank","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6390,"name":"TDS","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":2931,"name":"Telcel","country":"MX","currency":"MXN","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
532
+ 999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"10","has_xdata":false},{"id":12536,"name":"Telecable","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":null,"account_number_digits":"","has_xdata":false},{"id":4,"name":"Telecable
533
+ Tricom","country":"DO","currency":"DOP","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":401,"name":"Telecom","country":"SV","currency":"USD","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":2802,"name":"Telecom
534
+ [Barcode]","country":"SV","currency":"USD","biller_type":"Landline","bill_type":"bar_code","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":14,"account_number_digits":null,"has_xdata":false},{"id":1301,"name":"Telecomunique","country":"GT","currency":"GTQ","biller_type":"Landline","bill_type":"phone_number","can_check_balance":false,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":1311,"name":"Telecomunique","country":"GT","currency":"GTQ","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":12515,"name":"Televia","country":"MX","currency":"MXN","biller_type":"toll","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":37,"name":"Telmex","country":"MX","currency":"MXN","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
535
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"10","has_xdata":true},{"id":12516,"name":"Telmex
536
+ Online","country":"MX","currency":"MXN","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
537
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"10","has_xdata":false},{"id":12520,"name":"Telmex
538
+ [Barcode]","country":"MX","currency":"MXN","biller_type":"Landline","bill_type":"bar_code","can_check_balance":false,"mask":"99999999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"20","has_xdata":false},{"id":12540,"name":"Telnor","country":"MX","currency":"MXN","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
539
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"10","has_xdata":false},{"id":2631,"name":"Telnor
540
+ [Barcode]","country":"MX","currency":"MXN","biller_type":"Landline","bill_type":"bar_code","can_check_balance":false,"mask":"99999999999999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"20","has_xdata":false},{"id":3012,"name":"Telstar","country":"JM","currency":"JMD","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":"99999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":"5","has_xdata":false},{"id":12500,"name":"Tesoreria
541
+ del Distrito Federal","country":"MX","currency":"MXN","biller_type":"Government","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"20","has_xdata":false},{"id":6425,"name":"Texas
542
+ Farm Bureau Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6426,"name":"The
543
+ General Insurance","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6359,"name":"The
544
+ Home Depot Consumer Credit Card","country":"US","currency":"USD","biller_type":"Credit
545
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6102,"name":"The
546
+ New York Times","country":"US","currency":"USD","biller_type":"Media Subscriptions","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6196,"name":"Tiger
547
+ Sanitation","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1281,"name":"Tigo","country":"GT","currency":"GTQ","biller_type":"Internet","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":1261,"name":"Tigo","country":"GT","currency":"GTQ","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":1271,"name":"Tigo","country":"GT","currency":"GTQ","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":true,"mask":"9999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"8","has_xdata":false},{"id":5992,"name":"Time
548
+ Warner Cable","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6008,"name":"Time
549
+ Warner Cable","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6328,"name":"Time
550
+ Warner Cable","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6007,"name":"Time
551
+ Warner Cable Business Class","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6040,"name":"Time
552
+ Warner Cable VOIP","country":"US","currency":"USD","biller_type":"Landline","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6360,"name":"TJX
553
+ Rewards Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12493,"name":"TotalPlay","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":"99
554
+ 99 99 9 999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"10","has_xdata":true},{"id":12549,"name":"TotalPlay
555
+ [Barcode]","country":"MX","currency":"MXN","biller_type":"Cable","bill_type":"bar_code","can_check_balance":true,"mask":"99999999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"17","has_xdata":true},{"id":6361,"name":"Toys
556
+ R Us","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12498,"name":"Tramites
557
+ Vehiculares de Chihuahua (Tijuana)","country":"MX","currency":"MXN","biller_type":"Government","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":24,"account_number_digits":"24","has_xdata":false},{"id":6090,"name":"Travelers","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":14,"name":"Tricom","country":"DO","currency":"DOP","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
558
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":22,"name":"Tricom","country":"DO","currency":"DOP","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":true,"mask":"(999)
559
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":12524,"name":"Tricom
560
+ DR","country":"DO","currency":"DOP","biller_type":"DRCell","bill_type":"phone_number","can_check_balance":false,"mask":"999-999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6948,"name":"TV
561
+ Cable En Línea","country":"EC","currency":"USD","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6084,"name":"TXU
562
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6013,"name":"U.S.
563
+ Bank","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6300,"name":"U.S.
564
+ Bank","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6246,"name":"U.S.
565
+ Bank Home Mortgage (CareNet)","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6103,"name":"U.S.
566
+ Cellular","country":"US","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1421,"name":"Ultramotor","country":"HN","currency":"HNL","biller_type":"Credit
567
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":"9999-9999-9999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"16","has_xdata":false},{"id":2941,"name":"Unefon","country":"MX","currency":"MXN","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"(999)
568
+ 999-9999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":"10","has_xdata":false},{"id":1441,"name":"Unitec","country":"HN","currency":"HNL","biller_type":"Education","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6197,"name":"United
569
+ Water","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1461,"name":"Universidad
570
+ Tecnologica Honduras","country":"HN","currency":"HNL","biller_type":"Education","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6301,"name":"University
571
+ Accounting Service","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6247,"name":"USAA","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6034,"name":"USAA","country":"US","currency":"USD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6106,"name":"USAA","country":"US","currency":"USD","biller_type":"Credit
572
+ Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3581,"name":"Uttar
573
+ Gujarat Vij","country":"IN","currency":"INR","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6085,"name":"Vectren","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3022,"name":"Venus
574
+ Cable","country":"JM","currency":"JMD","biller_type":"Cable","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":48,"account_number_digits":null,"has_xdata":false},{"id":6009,"name":"Verizon
575
+ Business","country":"US","currency":"USD","biller_type":"Landline","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":5990,"name":"Verizon
576
+ Fios","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6000,"name":"Verizon
577
+ FiOS","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6010,"name":"Verizon
578
+ Residential","country":"US","currency":"USD","biller_type":"Landline","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6029,"name":"Verizon
579
+ Residential","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6030,"name":"Verizon
580
+ Small Business","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":5996,"name":"Verizon
581
+ Wireless","country":"US","currency":"USD","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":91,"name":"VeTV","country":"MX","currency":"MXN","biller_type":"Satellite","bill_type":"account_number","can_check_balance":true,"mask":"999999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"12","has_xdata":false},{"id":6362,"name":"Victoria''s
582
+ Secret Angel Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":3591,"name":"Videocon
583
+ DTH","country":"IN","currency":"INR","biller_type":"Satellite","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6116,"name":"Virgin
584
+ Mobile","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":8,"name":"Viva","country":"DO","currency":"DOP","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
585
+ 999-9999","requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":24,"name":"Viva","country":"DO","currency":"DOP","biller_type":"PostPaidCell","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":12523,"name":"Viva
586
+ DR","country":"DO","currency":"DOP","biller_type":"DRCell","bill_type":"phone_number","can_check_balance":false,"mask":"999-999-9999","requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":2511,"name":"Vodafone
587
+ Postpaid","country":"IN","currency":"INR","biller_type":"PostPaidCell","bill_type":"phone_number","can_check_balance":false,"mask":"9999999999","requires_name_on_account":true,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":"10","has_xdata":false},{"id":6302,"name":"VyStar
588
+ Credit Union","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6363,"name":"Walmart
589
+ Credit Card","country":"US","currency":"USD","biller_type":"Credit Cards","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6198,"name":"Washington
590
+ Suburban Sanitary Commission","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6199,"name":"Waste
591
+ Connections","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6200,"name":"Waste
592
+ Industries","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6201,"name":"Waste
593
+ Management","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6202,"name":"Waste
594
+ Pro","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6329,"name":"Wave
595
+ Broadband","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6122,"name":"Wave
596
+ Broadband","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6391,"name":"Wave
597
+ Broadband","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6086,"name":"We
598
+ Energies","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6248,"name":"Wells
599
+ Fargo","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6249,"name":"Wells
600
+ Fargo Home Mortgage (CareNet)","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6101,"name":"Wells
601
+ Fargo Student Loans","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6087,"name":"Westar
602
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6203,"name":"Wichita,
603
+ KS Utilities","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6261,"name":"WildBlue","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":15,"name":"Wind","country":"DO","currency":"DOP","biller_type":"Cable","bill_type":"account_number","can_check_balance":true,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6262,"name":"Windstream","country":"US","currency":"USD","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6330,"name":"Windstream","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6392,"name":"Windstream","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6250,"name":"Woodforest
604
+ National Bank","country":"US","currency":"USD","biller_type":"Mortgage","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6303,"name":"Woodforest
605
+ National Bank","country":"US","currency":"USD","biller_type":"Loan","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6331,"name":"WOW!","country":"US","currency":"USD","biller_type":"Phone","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6393,"name":"WOW!","country":"US","currency":"USD","biller_type":"Television","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":6088,"name":"Xcel
606
+ Energy","country":"US","currency":"USD","biller_type":"Electricity","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":1711,"name":"Yego","country":"GT","currency":"GTQ","biller_type":"Internet","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":0,"account_number_digits":null,"has_xdata":false},{"id":6204,"name":"YES
607
+ Energy Mgmt.","country":"US","currency":"USD","biller_type":"Utilities","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":72,"account_number_digits":null,"has_xdata":false},{"id":12556,"name":"Yves
608
+ Rocher","country":"MX","currency":"MXN","biller_type":"Media Subscription","bill_type":"account_number","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":false,"hours_to_fulfill":null,"account_number_digits":"15","has_xdata":false},{"id":12537,"name":"Zacatecas","country":"MX","currency":"MXN","biller_type":"Government","bill_type":"bar_code","can_check_balance":false,"mask":null,"requires_name_on_account":false,"supports_partial_payments":true,"hours_to_fulfill":null,"account_number_digits":"28","has_xdata":false}]}'
609
+ http_version:
610
+ recorded_at: Fri, 20 Jan 2017 18:17:42 GMT
611
+ recorded_with: VCR 2.9.3