regaliator 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +16 -0
- data/.ruby-version +1 -0
- data/Gemfile +4 -0
- data/Guardfile +36 -0
- data/LICENSE.txt +22 -0
- data/README.md +116 -0
- data/Rakefile +11 -0
- data/lib/regaliator/api_version_error.rb +7 -0
- data/lib/regaliator/client.rb +9 -0
- data/lib/regaliator/configuration.rb +25 -0
- data/lib/regaliator/endpoint.rb +17 -0
- data/lib/regaliator/request.rb +100 -0
- data/lib/regaliator/response.rb +40 -0
- data/lib/regaliator/v15/account.rb +11 -0
- data/lib/regaliator/v15/bill.rb +23 -0
- data/lib/regaliator/v15/biller.rb +15 -0
- data/lib/regaliator/v15/client.rb +32 -0
- data/lib/regaliator/v15/rate.rb +15 -0
- data/lib/regaliator/v15/transaction.rb +23 -0
- data/lib/regaliator/v15.rb +7 -0
- data/lib/regaliator/v30/account.rb +11 -0
- data/lib/regaliator/v30/bill.rb +35 -0
- data/lib/regaliator/v30/biller.rb +19 -0
- data/lib/regaliator/v30/client.rb +32 -0
- data/lib/regaliator/v30/rate.rb +15 -0
- data/lib/regaliator/v30/transaction.rb +11 -0
- data/lib/regaliator/v30.rb +7 -0
- data/lib/regaliator/v31.rb +14 -0
- data/lib/regaliator/version.rb +3 -0
- data/lib/regaliator.rb +59 -0
- data/regaliator.gemspec +34 -0
- data/test/fixtures/vcr_cassettes/V31/account/failed_info.yml +48 -0
- data/test/fixtures/vcr_cassettes/V31/account/successful_info.yml +50 -0
- data/test/fixtures/vcr_cassettes/V31/bill/create.yml +52 -0
- data/test/fixtures/vcr_cassettes/V31/bill/list.yml +71 -0
- data/test/fixtures/vcr_cassettes/V31/bill/pay.yml +52 -0
- data/test/fixtures/vcr_cassettes/V31/bill/refresh.yml +52 -0
- data/test/fixtures/vcr_cassettes/V31/bill/show.yml +51 -0
- data/test/fixtures/vcr_cassettes/V31/bill/update.yml +53 -0
- data/test/fixtures/vcr_cassettes/V31/bill/xdata.yml +51 -0
- data/test/fixtures/vcr_cassettes/V31/biller/credentials.yml +256 -0
- data/test/fixtures/vcr_cassettes/V31/biller/topups.yml +209 -0
- data/test/fixtures/vcr_cassettes/V31/biller/utilities.yml +611 -0
- data/test/fixtures/vcr_cassettes/V31/rate/history.yml +50 -0
- data/test/fixtures/vcr_cassettes/V31/rate/list.yml +50 -0
- data/test/fixtures/vcr_cassettes/V31/transaction/list.yml +52 -0
- data/test/fixtures/vcr_cassettes/V31/transaction/search.yml +52 -0
- data/test/fixtures/vcr_cassettes/v15/account/failed_info.yml +50 -0
- data/test/fixtures/vcr_cassettes/v15/account/successful_info.yml +52 -0
- data/test/fixtures/vcr_cassettes/v15/bill/check.yml +52 -0
- data/test/fixtures/vcr_cassettes/v15/bill/consult.yml +52 -0
- data/test/fixtures/vcr_cassettes/v15/bill/index.yml +176 -0
- data/test/fixtures/vcr_cassettes/v15/bill/pay.yml +52 -0
- data/test/fixtures/vcr_cassettes/v15/biller/topups.yml +212 -0
- data/test/fixtures/vcr_cassettes/v15/biller/utilities.yml +611 -0
- data/test/fixtures/vcr_cassettes/v15/rate/history.yml +52 -0
- data/test/fixtures/vcr_cassettes/v15/rate/list.yml +52 -0
- data/test/fixtures/vcr_cassettes/v15/transaction/cancel.yml +52 -0
- data/test/fixtures/vcr_cassettes/v15/transaction/list.yml +54 -0
- data/test/fixtures/vcr_cassettes/v15/transaction/pay.yml +52 -0
- data/test/fixtures/vcr_cassettes/v15/transaction/reverse.yml +52 -0
- data/test/fixtures/vcr_cassettes/v15/transaction/search.yml +54 -0
- data/test/fixtures/vcr_cassettes/v30/account/failed_info.yml +48 -0
- data/test/fixtures/vcr_cassettes/v30/account/successful_info.yml +50 -0
- data/test/fixtures/vcr_cassettes/v30/bill/create.yml +56 -0
- data/test/fixtures/vcr_cassettes/v30/bill/list.yml +54 -0
- data/test/fixtures/vcr_cassettes/v30/bill/pay.yml +56 -0
- data/test/fixtures/vcr_cassettes/v30/bill/refresh.yml +56 -0
- data/test/fixtures/vcr_cassettes/v30/bill/show.yml +55 -0
- data/test/fixtures/vcr_cassettes/v30/bill/update.yml +57 -0
- data/test/fixtures/vcr_cassettes/v30/bill/xdata.yml +50 -0
- data/test/fixtures/vcr_cassettes/v30/biller/credentials.yml +54 -0
- data/test/fixtures/vcr_cassettes/v30/biller/topups.yml +54 -0
- data/test/fixtures/vcr_cassettes/v30/biller/utilities.yml +54 -0
- data/test/fixtures/vcr_cassettes/v30/rate/history.yml +54 -0
- data/test/fixtures/vcr_cassettes/v30/rate/list.yml +54 -0
- data/test/fixtures/vcr_cassettes/v30/transaction/list.yml +56 -0
- data/test/fixtures/vcr_cassettes/v30/transaction/search.yml +56 -0
- data/test/regaliator/api_version_error_test.rb +14 -0
- data/test/regaliator/client_test.rb +19 -0
- data/test/regaliator/configuration_test.rb +115 -0
- data/test/regaliator/endpoint_test.rb +19 -0
- data/test/regaliator/v15/account_test.rb +37 -0
- data/test/regaliator/v15/bill_test.rb +67 -0
- data/test/regaliator/v15/biller_test.rb +35 -0
- data/test/regaliator/v15/client_test.rb +23 -0
- data/test/regaliator/v15/rate_test.rb +35 -0
- data/test/regaliator/v15/transaction_test.rb +62 -0
- data/test/regaliator/v15_test.rb +10 -0
- data/test/regaliator/v30/account_test.rb +37 -0
- data/test/regaliator/v30/bill_test.rb +80 -0
- data/test/regaliator/v30/biller_test.rb +44 -0
- data/test/regaliator/v30/client_test.rb +23 -0
- data/test/regaliator/v30/rate_test.rb +35 -0
- data/test/regaliator/v30/transaction_test.rb +35 -0
- data/test/regaliator/v30_test.rb +10 -0
- data/test/regaliator/v31/account_test.rb +37 -0
- data/test/regaliator/v31/bill_test.rb +84 -0
- data/test/regaliator/v31/biller_test.rb +44 -0
- data/test/regaliator/v31/client_test.rb +23 -0
- data/test/regaliator/v31/rate_test.rb +35 -0
- data/test/regaliator/v31/transaction_test.rb +35 -0
- data/test/regaliator/v31_test.rb +10 -0
- data/test/regaliator/version_test.rb +10 -0
- data/test/regaliator_test.rb +66 -0
- data/test/test_helper.rb +26 -0
- metadata +394 -0
@@ -0,0 +1,611 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://api.regalii.dev/billers/utilities
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
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.v1.5+json
|
14
|
+
User-Agent:
|
15
|
+
- Regaliator gem v4.0.0.pre
|
16
|
+
Content-Type:
|
17
|
+
- application/json
|
18
|
+
Date:
|
19
|
+
- Sat, 14 Jan 2017 03:21:22 GMT
|
20
|
+
Content-Md5:
|
21
|
+
- mZFLkyvTelC5g8XnyQrpOw==
|
22
|
+
Authorization:
|
23
|
+
- APIAuth testing:V6UHzG90e9gMjIjhOAl1i76Vpzk=
|
24
|
+
response:
|
25
|
+
status:
|
26
|
+
code: 200
|
27
|
+
message: OK
|
28
|
+
headers:
|
29
|
+
X-Frame-Options:
|
30
|
+
- SAMEORIGIN
|
31
|
+
X-Xss-Protection:
|
32
|
+
- 1; mode=block
|
33
|
+
X-Content-Type-Options:
|
34
|
+
- nosniff
|
35
|
+
X-Pagination:
|
36
|
+
- '{"total_entries":729,"total_pages":1,"previous_page":null,"current_page":1,"next_page":null}'
|
37
|
+
Content-Type:
|
38
|
+
- application/json; charset=utf-8
|
39
|
+
Etag:
|
40
|
+
- W/"c2fb848da2af65561c766484a8cc8c46"
|
41
|
+
Cache-Control:
|
42
|
+
- max-age=0, private, must-revalidate
|
43
|
+
X-Request-Id:
|
44
|
+
- 1f3cca38-e95f-4f8a-ac5c-cb4de8c5d718
|
45
|
+
X-Runtime:
|
46
|
+
- '2.616566'
|
47
|
+
Transfer-Encoding:
|
48
|
+
- chunked
|
49
|
+
body:
|
50
|
+
encoding: UTF-8
|
51
|
+
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
|
52
|
+
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
|
53
|
+
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
|
54
|
+
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
|
55
|
+
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
|
56
|
+
- 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
|
57
|
+
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
|
58
|
+
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
|
59
|
+
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
|
60
|
+
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
|
61
|
+
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
|
62
|
+
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
|
63
|
+
- 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
|
64
|
+
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
|
65
|
+
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
|
66
|
+
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
|
67
|
+
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
|
68
|
+
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
|
69
|
+
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
|
70
|
+
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
|
71
|
+
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
|
72
|
+
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
|
73
|
+
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
|
74
|
+
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
|
75
|
+
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,
|
76
|
+
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
|
77
|
+
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
|
78
|
+
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
|
79
|
+
(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
|
80
|
+
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
|
81
|
+
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
|
82
|
+
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
|
83
|
+
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
|
84
|
+
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
|
85
|
+
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
|
86
|
+
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
|
87
|
+
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
|
88
|
+
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
|
89
|
+
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
|
90
|
+
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
|
91
|
+
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
|
92
|
+
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
|
93
|
+
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
|
94
|
+
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
|
95
|
+
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
|
96
|
+
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
|
97
|
+
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
|
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":6271,"name":"Aspire
|
99
|
+
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
|
100
|
+
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
|
101
|
+
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
|
102
|
+
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
|
103
|
+
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
|
104
|
+
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
|
105
|
+
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
|
106
|
+
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
|
107
|
+
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)
|
108
|
+
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
|
109
|
+
[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
|
110
|
+
- 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
|
111
|
+
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
|
112
|
+
Republic Credit Card","country":"US","currency":"USD","biller_type":"Credit
|
113
|
+
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
|
114
|
+
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
|
115
|
+
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
|
116
|
+
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
|
117
|
+
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
|
118
|
+
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
|
119
|
+
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
|
120
|
+
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
|
121
|
+
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
|
122
|
+
of America Mastercard","country":"US","currency":"USD","biller_type":"Credit
|
123
|
+
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
|
124
|
+
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
|
125
|
+
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
|
126
|
+
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
|
127
|
+
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
|
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":6274,"name":"Barclays
|
129
|
+
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
|
130
|
+
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
|
131
|
+
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
|
132
|
+
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
|
133
|
+
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
|
134
|
+
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
|
135
|
+
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
|
136
|
+
(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
|
137
|
+
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
|
138
|
+
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
|
139
|
+
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
|
140
|
+
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
|
141
|
+
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
|
142
|
+
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
|
143
|
+
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
|
144
|
+
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
|
145
|
+
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
|
146
|
+
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
|
147
|
+
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
|
148
|
+
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
|
149
|
+
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
|
150
|
+
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
|
151
|
+
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
|
152
|
+
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
|
153
|
+
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
|
154
|
+
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
|
155
|
+
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
|
156
|
+
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
|
157
|
+
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
|
158
|
+
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
|
159
|
+
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
|
160
|
+
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
|
161
|
+
[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
|
162
|
+
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
|
163
|
+
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
|
164
|
+
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
|
165
|
+
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
|
166
|
+
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
|
167
|
+
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
|
168
|
+
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
|
169
|
+
[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
|
170
|
+
[Deprecated]","country":"MX","currency":"MXN","biller_type":"Electricity","bill_type":"account_number","can_check_balance":true,"mask":"999
|
171
|
+
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
|
172
|
+
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
|
173
|
+
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
|
174
|
+
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
|
175
|
+
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
|
176
|
+
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
|
177
|
+
(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
|
178
|
+
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
|
179
|
+
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
|
180
|
+
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
|
181
|
+
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
|
182
|
+
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
|
183
|
+
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
|
184
|
+
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
|
185
|
+
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
|
186
|
+
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
|
187
|
+
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
|
188
|
+
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
|
189
|
+
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
|
190
|
+
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
|
191
|
+
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
|
192
|
+
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)
|
193
|
+
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
|
194
|
+
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
|
195
|
+
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
|
196
|
+
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
|
197
|
+
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
|
198
|
+
Tv","country":"DO","currency":"DOP","biller_type":"Cable","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
|
199
|
+
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
|
200
|
+
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
|
201
|
+
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
|
202
|
+
[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
|
203
|
+
[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
|
204
|
+
[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
|
205
|
+
[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,
|
206
|
+
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
|
207
|
+
(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
|
208
|
+
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
|
209
|
+
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
|
210
|
+
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
|
211
|
+
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
|
212
|
+
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
|
213
|
+
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
|
214
|
+
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
|
215
|
+
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
|
216
|
+
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
|
217
|
+
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
|
218
|
+
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
|
219
|
+
Claro","country":"DO","currency":"DOP","biller_type":"Landline","bill_type":"phone_number","can_check_balance":true,"mask":"(999)
|
220
|
+
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
|
221
|
+
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
|
222
|
+
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
|
223
|
+
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
|
224
|
+
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
|
225
|
+
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
|
226
|
+
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
|
227
|
+
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
|
228
|
+
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
|
229
|
+
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
|
230
|
+
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
|
231
|
+
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
|
232
|
+
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
|
233
|
+
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
|
234
|
+
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
|
235
|
+
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
|
236
|
+
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
|
237
|
+
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
|
238
|
+
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
|
239
|
+
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
|
240
|
+
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
|
241
|
+
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
|
242
|
+
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
|
243
|
+
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
|
244
|
+
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
|
245
|
+
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
|
246
|
+
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,
|
247
|
+
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
|
248
|
+
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
|
249
|
+
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
|
250
|
+
Financial Services","country":"US","currency":"USD","biller_type":"Credit
|
251
|
+
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
|
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":6409,"name":"Delta
|
253
|
+
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
|
254
|
+
[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
|
255
|
+
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
|
256
|
+
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
|
257
|
+
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
|
258
|
+
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
|
259
|
+
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
|
260
|
+
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
|
261
|
+
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
|
262
|
+
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
|
263
|
+
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
|
264
|
+
[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
|
265
|
+
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
|
266
|
+
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
|
267
|
+
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
|
268
|
+
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
|
269
|
+
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
|
270
|
+
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
|
271
|
+
[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
|
272
|
+
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
|
273
|
+
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
|
274
|
+
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
|
275
|
+
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
|
276
|
+
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
|
277
|
+
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
|
278
|
+
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
|
279
|
+
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
|
280
|
+
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
|
281
|
+
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
|
282
|
+
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
|
283
|
+
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
|
284
|
+
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
|
285
|
+
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
|
286
|
+
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
|
287
|
+
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
|
288
|
+
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
|
289
|
+
Premier Bank Credit Card","country":"US","currency":"USD","biller_type":"Credit
|
290
|
+
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
|
291
|
+
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
|
292
|
+
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
|
293
|
+
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
|
294
|
+
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
|
295
|
+
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
|
296
|
+
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
|
297
|
+
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
|
298
|
+
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
|
299
|
+
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
|
300
|
+
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
|
301
|
+
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
|
302
|
+
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
|
303
|
+
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
|
304
|
+
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,
|
305
|
+
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
|
306
|
+
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
|
307
|
+
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
|
308
|
+
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
|
309
|
+
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
|
310
|
+
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
|
311
|
+
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
|
312
|
+
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
|
313
|
+
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
|
314
|
+
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
|
315
|
+
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
|
316
|
+
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
|
317
|
+
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
|
318
|
+
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
|
319
|
+
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,
|
320
|
+
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,
|
321
|
+
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
|
322
|
+
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
|
323
|
+
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
|
324
|
+
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
|
325
|
+
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
|
326
|
+
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
|
327
|
+
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
|
328
|
+
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
|
329
|
+
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
|
330
|
+
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
|
331
|
+
(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)
|
332
|
+
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
|
333
|
+
- 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
|
334
|
+
Rewards Credit Card","country":"US","currency":"USD","biller_type":"Credit
|
335
|
+
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
|
336
|
+
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
|
337
|
+
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
|
338
|
+
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
|
339
|
+
- 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
|
340
|
+
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
|
341
|
+
(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
|
342
|
+
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
|
343
|
+
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
|
344
|
+
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
|
345
|
+
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
|
346
|
+
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
|
347
|
+
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
|
348
|
+
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
|
349
|
+
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
|
350
|
+
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
|
351
|
+
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
|
352
|
+
Bryant Credit Card","country":"US","currency":"USD","biller_type":"Credit
|
353
|
+
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
|
354
|
+
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
|
355
|
+
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
|
356
|
+
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
|
357
|
+
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
|
358
|
+
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
|
359
|
+
Consumer Credit Card","country":"US","currency":"USD","biller_type":"Credit
|
360
|
+
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
|
361
|
+
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
|
362
|
+
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
|
363
|
+
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
|
364
|
+
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
|
365
|
+
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
|
366
|
+
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
|
367
|
+
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,
|
368
|
+
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
|
369
|
+
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
|
370
|
+
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
|
371
|
+
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
|
372
|
+
Assoc. of Ja Insurance","country":"JM","currency":"JMD","biller_type":"Insurance","bill_type":"account_number","can_check_balance":false,"mask":"999
|
373
|
+
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
|
374
|
+
[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
|
375
|
+
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
|
376
|
+
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,
|
377
|
+
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
|
378
|
+
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
|
379
|
+
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
|
380
|
+
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
|
381
|
+
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
|
382
|
+
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
|
383
|
+
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
|
384
|
+
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
|
385
|
+
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,
|
386
|
+
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
|
387
|
+
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
|
388
|
+
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
|
389
|
+
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
|
390
|
+
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)
|
391
|
+
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
|
392
|
+
[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
|
393
|
+
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
|
394
|
+
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
|
395
|
+
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
|
396
|
+
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
|
397
|
+
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
|
398
|
+
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
|
399
|
+
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
|
400
|
+
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
|
401
|
+
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
|
402
|
+
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
|
403
|
+
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
|
404
|
+
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
|
405
|
+
Federal Credit Union","country":"US","currency":"USD","biller_type":"Credit
|
406
|
+
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
|
407
|
+
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
|
408
|
+
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
|
409
|
+
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
|
410
|
+
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
|
411
|
+
York \u0026 Co. Rewards Credit Card","country":"US","currency":"USD","biller_type":"Credit
|
412
|
+
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)
|
413
|
+
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
|
414
|
+
[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
|
415
|
+
[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
|
416
|
+
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
|
417
|
+
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
|
418
|
+
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
|
419
|
+
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
|
420
|
+
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
|
421
|
+
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
|
422
|
+
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
|
423
|
+
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
|
424
|
+
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
|
425
|
+
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
|
426
|
+
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
|
427
|
+
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,
|
428
|
+
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
|
429
|
+
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":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: Sat, 14 Jan 2017 03:21:25 GMT
|
611
|
+
recorded_with: VCR 2.9.3
|