regaliator 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +16 -0
  3. data/.ruby-version +1 -0
  4. data/Gemfile +4 -0
  5. data/Guardfile +36 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +116 -0
  8. data/Rakefile +11 -0
  9. data/lib/regaliator/api_version_error.rb +7 -0
  10. data/lib/regaliator/client.rb +9 -0
  11. data/lib/regaliator/configuration.rb +25 -0
  12. data/lib/regaliator/endpoint.rb +17 -0
  13. data/lib/regaliator/request.rb +100 -0
  14. data/lib/regaliator/response.rb +40 -0
  15. data/lib/regaliator/v15/account.rb +11 -0
  16. data/lib/regaliator/v15/bill.rb +23 -0
  17. data/lib/regaliator/v15/biller.rb +15 -0
  18. data/lib/regaliator/v15/client.rb +32 -0
  19. data/lib/regaliator/v15/rate.rb +15 -0
  20. data/lib/regaliator/v15/transaction.rb +23 -0
  21. data/lib/regaliator/v15.rb +7 -0
  22. data/lib/regaliator/v30/account.rb +11 -0
  23. data/lib/regaliator/v30/bill.rb +35 -0
  24. data/lib/regaliator/v30/biller.rb +19 -0
  25. data/lib/regaliator/v30/client.rb +32 -0
  26. data/lib/regaliator/v30/rate.rb +15 -0
  27. data/lib/regaliator/v30/transaction.rb +11 -0
  28. data/lib/regaliator/v30.rb +7 -0
  29. data/lib/regaliator/v31.rb +14 -0
  30. data/lib/regaliator/version.rb +3 -0
  31. data/lib/regaliator.rb +59 -0
  32. data/regaliator.gemspec +34 -0
  33. data/test/fixtures/vcr_cassettes/V31/account/failed_info.yml +48 -0
  34. data/test/fixtures/vcr_cassettes/V31/account/successful_info.yml +50 -0
  35. data/test/fixtures/vcr_cassettes/V31/bill/create.yml +52 -0
  36. data/test/fixtures/vcr_cassettes/V31/bill/list.yml +71 -0
  37. data/test/fixtures/vcr_cassettes/V31/bill/pay.yml +52 -0
  38. data/test/fixtures/vcr_cassettes/V31/bill/refresh.yml +52 -0
  39. data/test/fixtures/vcr_cassettes/V31/bill/show.yml +51 -0
  40. data/test/fixtures/vcr_cassettes/V31/bill/update.yml +53 -0
  41. data/test/fixtures/vcr_cassettes/V31/bill/xdata.yml +51 -0
  42. data/test/fixtures/vcr_cassettes/V31/biller/credentials.yml +256 -0
  43. data/test/fixtures/vcr_cassettes/V31/biller/topups.yml +209 -0
  44. data/test/fixtures/vcr_cassettes/V31/biller/utilities.yml +611 -0
  45. data/test/fixtures/vcr_cassettes/V31/rate/history.yml +50 -0
  46. data/test/fixtures/vcr_cassettes/V31/rate/list.yml +50 -0
  47. data/test/fixtures/vcr_cassettes/V31/transaction/list.yml +52 -0
  48. data/test/fixtures/vcr_cassettes/V31/transaction/search.yml +52 -0
  49. data/test/fixtures/vcr_cassettes/v15/account/failed_info.yml +50 -0
  50. data/test/fixtures/vcr_cassettes/v15/account/successful_info.yml +52 -0
  51. data/test/fixtures/vcr_cassettes/v15/bill/check.yml +52 -0
  52. data/test/fixtures/vcr_cassettes/v15/bill/consult.yml +52 -0
  53. data/test/fixtures/vcr_cassettes/v15/bill/index.yml +176 -0
  54. data/test/fixtures/vcr_cassettes/v15/bill/pay.yml +52 -0
  55. data/test/fixtures/vcr_cassettes/v15/biller/topups.yml +212 -0
  56. data/test/fixtures/vcr_cassettes/v15/biller/utilities.yml +611 -0
  57. data/test/fixtures/vcr_cassettes/v15/rate/history.yml +52 -0
  58. data/test/fixtures/vcr_cassettes/v15/rate/list.yml +52 -0
  59. data/test/fixtures/vcr_cassettes/v15/transaction/cancel.yml +52 -0
  60. data/test/fixtures/vcr_cassettes/v15/transaction/list.yml +54 -0
  61. data/test/fixtures/vcr_cassettes/v15/transaction/pay.yml +52 -0
  62. data/test/fixtures/vcr_cassettes/v15/transaction/reverse.yml +52 -0
  63. data/test/fixtures/vcr_cassettes/v15/transaction/search.yml +54 -0
  64. data/test/fixtures/vcr_cassettes/v30/account/failed_info.yml +48 -0
  65. data/test/fixtures/vcr_cassettes/v30/account/successful_info.yml +50 -0
  66. data/test/fixtures/vcr_cassettes/v30/bill/create.yml +56 -0
  67. data/test/fixtures/vcr_cassettes/v30/bill/list.yml +54 -0
  68. data/test/fixtures/vcr_cassettes/v30/bill/pay.yml +56 -0
  69. data/test/fixtures/vcr_cassettes/v30/bill/refresh.yml +56 -0
  70. data/test/fixtures/vcr_cassettes/v30/bill/show.yml +55 -0
  71. data/test/fixtures/vcr_cassettes/v30/bill/update.yml +57 -0
  72. data/test/fixtures/vcr_cassettes/v30/bill/xdata.yml +50 -0
  73. data/test/fixtures/vcr_cassettes/v30/biller/credentials.yml +54 -0
  74. data/test/fixtures/vcr_cassettes/v30/biller/topups.yml +54 -0
  75. data/test/fixtures/vcr_cassettes/v30/biller/utilities.yml +54 -0
  76. data/test/fixtures/vcr_cassettes/v30/rate/history.yml +54 -0
  77. data/test/fixtures/vcr_cassettes/v30/rate/list.yml +54 -0
  78. data/test/fixtures/vcr_cassettes/v30/transaction/list.yml +56 -0
  79. data/test/fixtures/vcr_cassettes/v30/transaction/search.yml +56 -0
  80. data/test/regaliator/api_version_error_test.rb +14 -0
  81. data/test/regaliator/client_test.rb +19 -0
  82. data/test/regaliator/configuration_test.rb +115 -0
  83. data/test/regaliator/endpoint_test.rb +19 -0
  84. data/test/regaliator/v15/account_test.rb +37 -0
  85. data/test/regaliator/v15/bill_test.rb +67 -0
  86. data/test/regaliator/v15/biller_test.rb +35 -0
  87. data/test/regaliator/v15/client_test.rb +23 -0
  88. data/test/regaliator/v15/rate_test.rb +35 -0
  89. data/test/regaliator/v15/transaction_test.rb +62 -0
  90. data/test/regaliator/v15_test.rb +10 -0
  91. data/test/regaliator/v30/account_test.rb +37 -0
  92. data/test/regaliator/v30/bill_test.rb +80 -0
  93. data/test/regaliator/v30/biller_test.rb +44 -0
  94. data/test/regaliator/v30/client_test.rb +23 -0
  95. data/test/regaliator/v30/rate_test.rb +35 -0
  96. data/test/regaliator/v30/transaction_test.rb +35 -0
  97. data/test/regaliator/v30_test.rb +10 -0
  98. data/test/regaliator/v31/account_test.rb +37 -0
  99. data/test/regaliator/v31/bill_test.rb +84 -0
  100. data/test/regaliator/v31/biller_test.rb +44 -0
  101. data/test/regaliator/v31/client_test.rb +23 -0
  102. data/test/regaliator/v31/rate_test.rb +35 -0
  103. data/test/regaliator/v31/transaction_test.rb +35 -0
  104. data/test/regaliator/v31_test.rb +10 -0
  105. data/test/regaliator/version_test.rb +10 -0
  106. data/test/regaliator_test.rb +66 -0
  107. data/test/test_helper.rb +26 -0
  108. metadata +394 -0
@@ -0,0 +1,52 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://api.regalii.dev/rates/history
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:18:06 GMT
20
+ Content-Md5:
21
+ - mZFLkyvTelC5g8XnyQrpOw==
22
+ Authorization:
23
+ - APIAuth testing:MYECMMDEUGYe+CS/SQt2fysl8BA=
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
+ Content-Type:
36
+ - application/json; charset=utf-8
37
+ Etag:
38
+ - W/"a10cc8cb07e1d049c76f06205b0a4ff9"
39
+ Cache-Control:
40
+ - max-age=0, private, must-revalidate
41
+ X-Request-Id:
42
+ - 1184305f-d4ed-4057-aae5-aea7e1ed40f3
43
+ X-Runtime:
44
+ - '0.145673'
45
+ Transfer-Encoding:
46
+ - chunked
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"2017-01-13":{},"2017-01-12":{},"2017-01-11":{},"2017-01-10":{},"2017-01-09":{},"2017-01-08":{},"2017-01-07":{},"2017-01-06":{},"2017-01-05":{},"2017-01-04":{},"2017-01-03":{},"2017-01-02":{},"2017-01-01":{},"2016-12-31":{},"2016-12-30":{},"2016-12-29":{},"2016-12-28":{},"2016-12-27":{},"2016-12-26":{},"2016-12-25":{},"2016-12-24":{},"2016-12-23":{},"2016-12-22":{},"2016-12-21":{},"2016-12-20":{},"2016-12-19":{},"2016-12-18":{},"2016-12-17":{},"2016-12-16":{},"2016-12-15":{},"2016-12-14":{}}'
50
+ http_version:
51
+ recorded_at: Sat, 14 Jan 2017 03:18:06 GMT
52
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,52 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://api.regalii.dev/rates
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:18:06 GMT
20
+ Content-Md5:
21
+ - mZFLkyvTelC5g8XnyQrpOw==
22
+ Authorization:
23
+ - APIAuth testing:HgNEoobM5MWQ0HamX/GyukDPsHM=
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
+ Content-Type:
36
+ - application/json; charset=utf-8
37
+ Etag:
38
+ - W/"64b2e57f343fefa48ce2410586b51df2"
39
+ Cache-Control:
40
+ - max-age=0, private, must-revalidate
41
+ X-Request-Id:
42
+ - 0cfdcc39-8448-44b9-b96f-25c81f138a0c
43
+ X-Runtime:
44
+ - '0.105806'
45
+ Transfer-Encoding:
46
+ - chunked
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"GBP":0.7892,"CAD":1.3171,"MXN":20.2181,"RD":45.3925,"NIO":28.5876,"GTQ":7.3642,"HNL":22.7156,"COP":3088.617,"BRL":3.325,"PEN":3.3473,"BOB":6.7776,"PHP":48.7303,"INR":67.2249,"JMD":126.5856,"NGN":308.4099}'
50
+ http_version:
51
+ recorded_at: Sat, 14 Jan 2017 03:18:06 GMT
52
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,52 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://api.regalii.dev/transaction/cancel
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"id":1}'
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
16
+ Content-Type:
17
+ - application/json
18
+ Date:
19
+ - Mon, 16 Jan 2017 18:18:44 GMT
20
+ Content-Md5:
21
+ - 0s4ouaf9fkQH4rD9SZt/5A==
22
+ Authorization:
23
+ - APIAuth testing:Cmh3c/jX53xYjDkiYi6yRTM0dso=
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
+ Content-Type:
36
+ - application/json; charset=utf-8
37
+ Etag:
38
+ - W/"df43dda2906a66cd5db74e33c0131b4c"
39
+ Cache-Control:
40
+ - max-age=0, private, must-revalidate
41
+ X-Request-Id:
42
+ - 306a8ff3-fb75-4865-8c5f-f000baab320b
43
+ X-Runtime:
44
+ - '0.112076'
45
+ Transfer-Encoding:
46
+ - chunked
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"code":"R0","message":"Transaction successful"}'
50
+ http_version:
51
+ recorded_at: Mon, 16 Jan 2017 18:18:44 GMT
52
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://api.regalii.dev/transactions
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:18:42 GMT
20
+ Content-Md5:
21
+ - mZFLkyvTelC5g8XnyQrpOw==
22
+ Authorization:
23
+ - APIAuth testing:YGDdhrX1t97FcsGx4GZu6NVJjH4=
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":5249,"total_pages":53,"previous_page":null,"current_page":1,"next_page":2}'
37
+ Content-Type:
38
+ - application/json; charset=utf-8
39
+ Etag:
40
+ - W/"ed3b2f283a1d467106e08a785944be46"
41
+ Cache-Control:
42
+ - max-age=0, private, must-revalidate
43
+ X-Request-Id:
44
+ - b0bac918-bd36-46b8-b0a4-025947d384f1
45
+ X-Runtime:
46
+ - '0.150165'
47
+ Transfer-Encoding:
48
+ - chunked
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"transactions":[{"id":467261,"external_id":null,"biller_id":61,"account_number":"9173460628","bill_amount":50.0,"bill_amount_currency":"usd","fx_rate":1.0,"bill_amount_usd":50.0,"bill_amount_chain_currency":50.0,"payment_transaction_fee":0.0,"payment_total_usd":50.0,"payment_total_chain_currency":50.0,"chain_earned":2.0,"chain_paid":48.0,"starting_balance":839.08,"ending_balance":887.08,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-08-22T23:59:12Z","payment_status":"fulfilled","bill_amount_local_currency":50.0,"local_currency":"USD"},{"id":467881,"external_id":null,"biller_id":61,"account_number":"9173460628","bill_amount":10.0,"bill_amount_currency":"usd","fx_rate":1.0,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.4,"chain_paid":9.6,"starting_balance":893.43,"ending_balance":903.03,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-08-23T16:42:16Z","payment_status":"fulfilled","bill_amount_local_currency":10.0,"local_currency":"USD"},{"id":518451,"external_id":null,"biller_id":61,"account_number":"9173460628","bill_amount":50.0,"bill_amount_currency":"usd","fx_rate":1.0,"bill_amount_usd":50.0,"bill_amount_chain_currency":50.0,"payment_transaction_fee":0.0,"payment_total_usd":50.0,"payment_total_chain_currency":50.0,"chain_earned":2.0,"chain_paid":48.0,"starting_balance":1104.51,"ending_balance":1152.51,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-09-23T17:52:50Z","payment_status":"fulfilled","bill_amount_local_currency":50.0,"local_currency":"USD"},{"id":518471,"external_id":null,"biller_id":61,"account_number":"9173460628","bill_amount":10.0,"bill_amount_currency":"usd","fx_rate":1.0,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.4,"chain_paid":9.6,"starting_balance":1152.51,"ending_balance":1162.11,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-09-23T18:03:19Z","payment_status":"fulfilled","bill_amount_local_currency":10.0,"local_currency":"USD"},{"id":574301,"external_id":null,"biller_id":61,"account_number":"9173460628","bill_amount":50.0,"bill_amount_currency":"usd","fx_rate":1.0,"bill_amount_usd":50.0,"bill_amount_chain_currency":50.0,"payment_transaction_fee":0.0,"payment_total_usd":50.0,"payment_total_chain_currency":50.0,"chain_earned":2.0,"chain_paid":48.0,"starting_balance":1398.42,"ending_balance":1446.42,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-10-24T16:04:21Z","payment_status":"fulfilled","bill_amount_local_currency":50.0,"local_currency":"USD"},{"id":574351,"external_id":null,"biller_id":61,"account_number":"9173460628","bill_amount":10.0,"bill_amount_currency":"usd","fx_rate":1.0,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.4,"chain_paid":9.6,"starting_balance":1446.42,"ending_balance":1456.02,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-10-24T16:14:57Z","payment_status":"fulfilled","bill_amount_local_currency":10.0,"local_currency":"USD"},{"id":600731,"external_id":null,"biller_id":1581,"account_number":"2291755924","bill_amount":5.0,"bill_amount_currency":"usd","fx_rate":13.3083,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.4,"chain_paid":4.6,"starting_balance":1678.43,"ending_balance":1683.03,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-11-06T22:04:47Z","payment_status":"fulfilled","bill_amount_local_currency":66.5415,"local_currency":"MXN"},{"id":625531,"external_id":null,"biller_id":1591,"account_number":"8441397711","bill_amount":10.0,"bill_amount_currency":"usd","fx_rate":13.2788,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":2.5,"chain_paid":7.5,"starting_balance":908.29,"ending_balance":915.79,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-11-19T05:20:22Z","payment_status":"fulfilled","bill_amount_local_currency":132.788,"local_currency":"MXN"},{"id":636111,"external_id":null,"biller_id":61,"account_number":"9173460628","bill_amount":50.0,"bill_amount_currency":"usd","fx_rate":1.0,"bill_amount_usd":50.0,"bill_amount_chain_currency":50.0,"payment_transaction_fee":0.0,"payment_total_usd":50.0,"payment_total_chain_currency":50.0,"chain_earned":2.0,"chain_paid":48.0,"starting_balance":1298.63,"ending_balance":1346.63,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-11-24T14:51:47Z","payment_status":"fulfilled","bill_amount_local_currency":50.0,"local_currency":"USD"},{"id":636221,"external_id":null,"biller_id":61,"account_number":"9173460628","bill_amount":10.0,"bill_amount_currency":"usd","fx_rate":1.0,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.4,"chain_paid":9.6,"starting_balance":1346.63,"ending_balance":1356.23,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-11-24T15:07:12Z","payment_status":"fulfilled","bill_amount_local_currency":10.0,"local_currency":"USD"},{"id":687971,"external_id":null,"biller_id":12,"account_number":"8299380100","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.2014,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":1571.6,"ending_balance":1562.5,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T02:49:34Z","payment_status":"fulfilled","bill_amount_local_currency":432.014,"local_currency":"RD"},{"id":688021,"external_id":null,"biller_id":7,"account_number":"8095537489","bill_amount":773.5,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":17.88,"bill_amount_chain_currency":17.88,"payment_transaction_fee":3.0,"payment_total_usd":20.88,"payment_total_chain_currency":20.88,"chain_earned":2.0,"chain_paid":18.88,"starting_balance":72318.4,"ending_balance":72299.52,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T13:08:15Z","payment_status":"fulfilled","bill_amount_local_currency":773.5,"local_currency":"RD"},{"id":688031,"external_id":null,"biller_id":7,"account_number":"8092435723","bill_amount":1722.09,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":39.81,"bill_amount_chain_currency":39.81,"payment_transaction_fee":3.0,"payment_total_usd":42.81,"payment_total_chain_currency":42.81,"chain_earned":2.0,"chain_paid":40.81,"starting_balance":72299.5,"ending_balance":72258.69,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T13:10:10Z","payment_status":"fulfilled","bill_amount_local_currency":1722.09,"local_currency":"RD"},{"id":688041,"external_id":null,"biller_id":7,"account_number":"8095637001","bill_amount":2288.83,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":52.91,"bill_amount_chain_currency":52.91,"payment_transaction_fee":3.0,"payment_total_usd":55.91,"payment_total_chain_currency":55.91,"chain_earned":2.0,"chain_paid":53.91,"starting_balance":72258.7,"ending_balance":72204.79,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T13:10:53Z","payment_status":"fulfilled","bill_amount_local_currency":2288.83,"local_currency":"RD"},{"id":688051,"external_id":null,"biller_id":1,"account_number":"5943223","bill_amount":1521.0,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":35.16,"bill_amount_chain_currency":35.16,"payment_transaction_fee":3.0,"payment_total_usd":38.16,"payment_total_chain_currency":38.16,"chain_earned":2.0,"chain_paid":36.16,"starting_balance":72204.8,"ending_balance":72168.64,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T13:11:37Z","payment_status":"fulfilled","bill_amount_local_currency":1521.0,"local_currency":"RD"},{"id":688061,"external_id":null,"biller_id":12,"account_number":"8099314131","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.2586,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":72168.6,"ending_balance":72159.5,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T13:12:21Z","payment_status":"fulfilled","bill_amount_local_currency":432.586,"local_currency":"RD"},{"id":688071,"external_id":null,"biller_id":12,"account_number":"8297308380","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.2586,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":72159.5,"ending_balance":72150.4,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T13:13:45Z","payment_status":"fulfilled","bill_amount_local_currency":432.586,"local_currency":"RD"},{"id":688081,"external_id":null,"biller_id":6,"account_number":"8097451813","bill_amount":9682.23,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":223.82,"bill_amount_chain_currency":223.82,"payment_transaction_fee":3.0,"payment_total_usd":226.82,"payment_total_chain_currency":226.82,"chain_earned":2.0,"chain_paid":224.82,"starting_balance":72150.4,"ending_balance":71925.58,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T13:30:35Z","payment_status":"fulfilled","bill_amount_local_currency":9682.23,"local_currency":"RD"},{"id":688471,"external_id":null,"biller_id":3,"account_number":"1203781","bill_amount":878.73,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":20.31,"bill_amount_chain_currency":20.31,"payment_transaction_fee":3.0,"payment_total_usd":19.25,"payment_total_chain_currency":19.25,"chain_earned":2.0,"chain_paid":17.25,"starting_balance":71925.6,"ending_balance":71908.35,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T15:48:49Z","payment_status":"fulfilled","bill_amount_local_currency":878.73,"local_currency":"RD"},{"id":688501,"external_id":null,"biller_id":3,"account_number":"1203781","bill_amount":878.73,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":20.31,"bill_amount_chain_currency":20.31,"payment_transaction_fee":3.0,"payment_total_usd":23.31,"payment_total_chain_currency":23.31,"chain_earned":2.0,"chain_paid":21.31,"starting_balance":71908.4,"ending_balance":71887.09,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T15:51:06Z","payment_status":"fulfilled","bill_amount_local_currency":878.73,"local_currency":"RD"},{"id":688651,"external_id":null,"biller_id":9,"account_number":"8294151301","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.2586,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":71887.1,"ending_balance":71882.55,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T16:46:27Z","payment_status":"fulfilled","bill_amount_local_currency":216.293,"local_currency":"RD"},{"id":688661,"external_id":null,"biller_id":11,"account_number":"8295238665","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.2586,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":71882.5,"ending_balance":71877.95,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T16:47:17Z","payment_status":"fulfilled","bill_amount_local_currency":216.293,"local_currency":"RD"},{"id":688761,"external_id":null,"biller_id":1051,"account_number":"2330615","bill_amount":4365.0,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":100.9,"bill_amount_chain_currency":100.9,"payment_transaction_fee":3.0,"payment_total_usd":83.72,"payment_total_chain_currency":83.72,"chain_earned":2.0,"chain_paid":81.72,"starting_balance":71878.0,"ending_balance":71796.27,"hours_to_fulfill":72,"sms_text":null,"created_at":"2014-12-16T17:01:36Z","payment_status":"fulfilled","bill_amount_local_currency":4365.0,"local_currency":"RD"},{"id":688771,"external_id":null,"biller_id":11,"account_number":"8094604838","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.2586,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":71796.3,"ending_balance":71787.2,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T17:02:03Z","payment_status":"fulfilled","bill_amount_local_currency":432.586,"local_currency":"RD"},{"id":688901,"external_id":null,"biller_id":7,"account_number":"8093808805","bill_amount":1867.72,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":43.18,"bill_amount_chain_currency":43.18,"payment_transaction_fee":3.0,"payment_total_usd":46.18,"payment_total_chain_currency":46.18,"chain_earned":2.0,"chain_paid":44.18,"starting_balance":71787.2,"ending_balance":71743.02,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T17:22:44Z","payment_status":"fulfilled","bill_amount_local_currency":1867.72,"local_currency":"RD"},{"id":689031,"external_id":null,"biller_id":1151,"account_number":"2090745","bill_amount":317.0,"bill_amount_currency":"GTQ","fx_rate":7.4737,"bill_amount_usd":42.42,"bill_amount_chain_currency":42.42,"payment_transaction_fee":3.0,"payment_total_usd":40.42,"payment_total_chain_currency":40.42,"chain_earned":2.0,"chain_paid":38.42,"starting_balance":71743.0,"ending_balance":71704.59,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T18:17:39Z","payment_status":"fulfilled","bill_amount_local_currency":317.0,"local_currency":"GTQ"},{"id":689441,"external_id":null,"biller_id":11,"account_number":"8494031220","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.2586,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":71704.6,"ending_balance":71700.05,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T20:30:12Z","payment_status":"fulfilled","bill_amount_local_currency":216.293,"local_currency":"RD"},{"id":689451,"external_id":null,"biller_id":12,"account_number":"8298500455","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.2586,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":71700.0,"ending_balance":71695.45,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T20:30:32Z","payment_status":"fulfilled","bill_amount_local_currency":216.293,"local_currency":"RD"},{"id":689461,"external_id":null,"biller_id":2,"account_number":"2204360","bill_amount":923.13,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":21.34,"bill_amount_chain_currency":21.34,"payment_transaction_fee":3.0,"payment_total_usd":24.34,"payment_total_chain_currency":24.34,"chain_earned":2.0,"chain_paid":22.34,"starting_balance":71695.5,"ending_balance":71673.16,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T20:35:44Z","payment_status":"fulfilled","bill_amount_local_currency":923.13,"local_currency":"RD"},{"id":689671,"external_id":null,"biller_id":40,"account_number":"501129907298","bill_amount":1.0,"bill_amount_currency":"MXN","fx_rate":14.4307,"bill_amount_usd":0.07,"bill_amount_chain_currency":0.07,"payment_transaction_fee":3.0,"payment_total_usd":3.07,"payment_total_chain_currency":3.07,"chain_earned":2.0,"chain_paid":1.07,"starting_balance":71673.2,"ending_balance":71672.13,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-16T21:46:54Z","payment_status":"fulfilled","bill_amount_local_currency":1.0,"local_currency":"MXN"},{"id":689701,"external_id":null,"biller_id":37,"account_number":"2444415601","bill_amount":1.0,"bill_amount_currency":"MXN","fx_rate":14.4307,"bill_amount_usd":0.07,"bill_amount_chain_currency":0.07,"payment_transaction_fee":3.0,"payment_total_usd":3.06,"payment_total_chain_currency":3.06,"chain_earned":2.0,"chain_paid":1.06,"starting_balance":71672.1,"ending_balance":71671.05,"hours_to_fulfill":48,"sms_text":null,"created_at":"2014-12-16T21:52:04Z","payment_status":"fulfilled","bill_amount_local_currency":1.0,"local_currency":"MXN"},{"id":690281,"external_id":null,"biller_id":2,"account_number":"2238208","bill_amount":459.75,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":10.63,"bill_amount_chain_currency":10.63,"payment_transaction_fee":3.0,"payment_total_usd":13.63,"payment_total_chain_currency":13.63,"chain_earned":2.0,"chain_paid":11.63,"starting_balance":71671.0,"ending_balance":71659.38,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T01:44:07Z","payment_status":"fulfilled","bill_amount_local_currency":459.75,"local_currency":"RD"},{"id":690301,"external_id":null,"biller_id":9,"account_number":"8097770617","bill_amount":6.0,"bill_amount_currency":"USD","fx_rate":43.2586,"bill_amount_usd":6.0,"bill_amount_chain_currency":6.0,"payment_transaction_fee":0.0,"payment_total_usd":6.0,"payment_total_chain_currency":6.0,"chain_earned":0.54,"chain_paid":5.46,"starting_balance":71659.4,"ending_balance":71653.94,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T01:54:02Z","payment_status":"fulfilled","bill_amount_local_currency":259.5516,"local_currency":"RD"},{"id":690311,"external_id":null,"biller_id":23,"account_number":"8296024312","bill_amount":1755.0,"bill_amount_currency":"RD","fx_rate":43.2586,"bill_amount_usd":40.57,"bill_amount_chain_currency":40.57,"payment_transaction_fee":3.0,"payment_total_usd":38.57,"payment_total_chain_currency":38.57,"chain_earned":2.0,"chain_paid":36.57,"starting_balance":71653.9,"ending_balance":71617.33,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T01:54:32Z","payment_status":"fulfilled","bill_amount_local_currency":1755.0,"local_currency":"RD"},{"id":690341,"external_id":null,"biller_id":2,"account_number":"8084603","bill_amount":7665.42,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":176.7,"bill_amount_chain_currency":176.7,"payment_transaction_fee":3.0,"payment_total_usd":174.7,"payment_total_chain_currency":174.7,"chain_earned":2.0,"chain_paid":172.7,"starting_balance":71617.3,"ending_balance":71444.6,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T12:04:15Z","payment_status":"fulfilled","bill_amount_local_currency":7665.42,"local_currency":"RD"},{"id":690351,"external_id":null,"biller_id":7,"account_number":"8095441646","bill_amount":1423.5,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":32.81,"bill_amount_chain_currency":32.81,"payment_transaction_fee":3.0,"payment_total_usd":30.81,"payment_total_chain_currency":30.81,"chain_earned":2.0,"chain_paid":28.81,"starting_balance":71444.6,"ending_balance":71415.79,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T12:21:12Z","payment_status":"fulfilled","bill_amount_local_currency":1423.5,"local_currency":"RD"},{"id":690591,"external_id":null,"biller_id":11,"account_number":"8297723012","bill_amount":25.0,"bill_amount_currency":"USD","fx_rate":43.3817,"bill_amount_usd":25.0,"bill_amount_chain_currency":25.0,"payment_transaction_fee":0.0,"payment_total_usd":25.0,"payment_total_chain_currency":25.0,"chain_earned":2.25,"chain_paid":22.75,"starting_balance":71415.8,"ending_balance":71393.05,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T15:19:34Z","payment_status":"fulfilled","bill_amount_local_currency":1084.5425,"local_currency":"RD"},{"id":690631,"external_id":null,"biller_id":3,"account_number":"1127659","bill_amount":185.74,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":4.28,"bill_amount_chain_currency":4.28,"payment_transaction_fee":3.0,"payment_total_usd":7.28,"payment_total_chain_currency":7.28,"chain_earned":2.0,"chain_paid":5.28,"starting_balance":71375.1,"ending_balance":71369.82,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T15:38:23Z","payment_status":"fulfilled","bill_amount_local_currency":185.74,"local_currency":"RD"},{"id":690641,"external_id":null,"biller_id":2,"account_number":"8473427","bill_amount":732.21,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":16.88,"bill_amount_chain_currency":16.88,"payment_transaction_fee":3.0,"payment_total_usd":19.88,"payment_total_chain_currency":19.88,"chain_earned":2.0,"chain_paid":17.88,"starting_balance":71393.0,"ending_balance":71375.13,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T15:38:46Z","payment_status":"fulfilled","bill_amount_local_currency":732.21,"local_currency":"RD"},{"id":690661,"external_id":null,"biller_id":7,"account_number":"8095992948","bill_amount":325.0,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":7.49,"bill_amount_chain_currency":7.49,"payment_transaction_fee":3.0,"payment_total_usd":10.49,"payment_total_chain_currency":10.49,"chain_earned":2.0,"chain_paid":8.49,"starting_balance":71369.8,"ending_balance":71361.3,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T15:39:00Z","payment_status":"fulfilled","bill_amount_local_currency":325.0,"local_currency":"RD"},{"id":690671,"external_id":null,"biller_id":7,"account_number":"8095600487","bill_amount":689.0,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":15.88,"bill_amount_chain_currency":15.88,"payment_transaction_fee":3.0,"payment_total_usd":18.88,"payment_total_chain_currency":18.88,"chain_earned":2.0,"chain_paid":16.88,"starting_balance":71361.3,"ending_balance":71344.41,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T15:39:40Z","payment_status":"fulfilled","bill_amount_local_currency":689.0,"local_currency":"RD"},{"id":690681,"external_id":null,"biller_id":11,"account_number":"8494075029","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.3817,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":71344.4,"ending_balance":71335.3,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T15:41:07Z","payment_status":"fulfilled","bill_amount_local_currency":433.817,"local_currency":"RD"},{"id":690821,"external_id":null,"biller_id":1,"account_number":"5217305","bill_amount":108.99,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":2.51,"bill_amount_chain_currency":2.51,"payment_transaction_fee":3.0,"payment_total_usd":5.51,"payment_total_chain_currency":5.51,"chain_earned":2.0,"chain_paid":3.51,"starting_balance":71335.3,"ending_balance":71331.79,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T16:24:29Z","payment_status":"fulfilled","bill_amount_local_currency":108.99,"local_currency":"RD"},{"id":690881,"external_id":null,"biller_id":11,"account_number":"8093962286","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.3817,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":71331.8,"ending_balance":71327.25,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T16:30:33Z","payment_status":"fulfilled","bill_amount_local_currency":216.9085,"local_currency":"RD"},{"id":691121,"external_id":null,"biller_id":37,"account_number":"7424233347","bill_amount":268.0,"bill_amount_currency":"MXN","fx_rate":14.4648,"bill_amount_usd":18.53,"bill_amount_chain_currency":18.53,"payment_transaction_fee":3.0,"payment_total_usd":11.53,"payment_total_chain_currency":11.53,"chain_earned":2.0,"chain_paid":9.53,"starting_balance":71327.2,"ending_balance":71317.67,"hours_to_fulfill":48,"sms_text":null,"created_at":"2014-12-17T17:42:31Z","payment_status":"fulfilled","bill_amount_local_currency":268.0,"local_currency":"MXN"},{"id":691361,"external_id":null,"biller_id":7,"account_number":"8093808316","bill_amount":689.0,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":15.88,"bill_amount_chain_currency":15.88,"payment_transaction_fee":3.0,"payment_total_usd":18.88,"payment_total_chain_currency":18.88,"chain_earned":2.0,"chain_paid":16.88,"starting_balance":71317.7,"ending_balance":71300.82,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T19:08:15Z","payment_status":"fulfilled","bill_amount_local_currency":689.0,"local_currency":"RD"},{"id":691401,"external_id":null,"biller_id":11,"account_number":"8299776906","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.3817,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":71300.8,"ending_balance":71296.25,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T19:13:18Z","payment_status":"fulfilled","bill_amount_local_currency":216.9085,"local_currency":"RD"},{"id":691411,"external_id":null,"biller_id":11,"account_number":"8292482099","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.3817,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":71296.2,"ending_balance":71291.65,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T19:17:01Z","payment_status":"fulfilled","bill_amount_local_currency":216.9085,"local_currency":"RD"},{"id":691451,"external_id":null,"biller_id":1151,"account_number":"5807934","bill_amount":330.0,"bill_amount_currency":"GTQ","fx_rate":7.4897,"bill_amount_usd":44.06,"bill_amount_chain_currency":44.06,"payment_transaction_fee":3.0,"payment_total_usd":42.06,"payment_total_chain_currency":42.06,"chain_earned":2.0,"chain_paid":40.06,"starting_balance":71291.6,"ending_balance":71251.54,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T19:36:38Z","payment_status":"fulfilled","bill_amount_local_currency":330.0,"local_currency":"GTQ"},{"id":691521,"external_id":null,"biller_id":12,"account_number":"8292633988","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.3817,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":71251.5,"ending_balance":71246.95,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T19:58:22Z","payment_status":"fulfilled","bill_amount_local_currency":216.9085,"local_currency":"RD"},{"id":691591,"external_id":null,"biller_id":1341,"account_number":"5142573","bill_amount":26.37,"bill_amount_currency":"USD","fx_rate":1.0,"bill_amount_usd":26.37,"bill_amount_chain_currency":26.37,"payment_transaction_fee":3.0,"payment_total_usd":29.37,"payment_total_chain_currency":29.37,"chain_earned":2.0,"chain_paid":27.37,"starting_balance":71247.0,"ending_balance":71219.63,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T20:15:12Z","payment_status":"fulfilled","bill_amount_local_currency":26.37,"local_currency":"USD"},{"id":691701,"external_id":null,"biller_id":14,"account_number":"8096854211","bill_amount":2608.4,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":60.13,"bill_amount_chain_currency":60.13,"payment_transaction_fee":3.0,"payment_total_usd":63.13,"payment_total_chain_currency":63.13,"chain_earned":2.0,"chain_paid":61.13,"starting_balance":71219.6,"ending_balance":71158.48,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T20:43:38Z","payment_status":"fulfilled","bill_amount_local_currency":2608.4,"local_currency":"RD"},{"id":691711,"external_id":null,"biller_id":12,"account_number":"8498548411","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.3817,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":71158.5,"ending_balance":71149.4,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T20:44:18Z","payment_status":"fulfilled","bill_amount_local_currency":433.817,"local_currency":"RD"},{"id":691902,"external_id":null,"biller_id":11,"account_number":"8296948246","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.3817,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":71149.4,"ending_balance":71140.3,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-17T21:54:40Z","payment_status":"fulfilled","bill_amount_local_currency":433.817,"local_currency":"RD"},{"id":692232,"external_id":null,"biller_id":11,"account_number":"8297742888","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.3817,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":71140.3,"ending_balance":71131.2,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T00:35:39Z","payment_status":"fulfilled","bill_amount_local_currency":433.817,"local_currency":"RD"},{"id":692312,"external_id":null,"biller_id":2,"account_number":"8308984","bill_amount":233.31,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":5.38,"bill_amount_chain_currency":5.38,"payment_transaction_fee":3.0,"payment_total_usd":3.38,"payment_total_chain_currency":3.38,"chain_earned":2.0,"chain_paid":1.38,"starting_balance":71131.2,"ending_balance":71129.82,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T02:08:16Z","payment_status":"fulfilled","bill_amount_local_currency":233.31,"local_currency":"RD"},{"id":692322,"external_id":null,"biller_id":7,"account_number":"8095982756","bill_amount":2877.77,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":66.34,"bill_amount_chain_currency":66.34,"payment_transaction_fee":3.0,"payment_total_usd":64.34,"payment_total_chain_currency":64.34,"chain_earned":2.0,"chain_paid":62.34,"starting_balance":71129.8,"ending_balance":71067.46,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T02:09:11Z","payment_status":"fulfilled","bill_amount_local_currency":2877.77,"local_currency":"RD"},{"id":692332,"external_id":null,"biller_id":3,"account_number":"3441622","bill_amount":727.77,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":16.78,"bill_amount_chain_currency":16.78,"payment_transaction_fee":3.0,"payment_total_usd":16.42,"payment_total_chain_currency":16.42,"chain_earned":2.0,"chain_paid":14.42,"starting_balance":71067.5,"ending_balance":71053.08,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T02:09:31Z","payment_status":"fulfilled","bill_amount_local_currency":727.77,"local_currency":"RD"},{"id":692402,"external_id":null,"biller_id":2,"account_number":"8060634","bill_amount":678.93,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":15.65,"bill_amount_chain_currency":15.65,"payment_transaction_fee":3.0,"payment_total_usd":15.52,"payment_total_chain_currency":15.52,"chain_earned":2.0,"chain_paid":13.52,"starting_balance":71053.1,"ending_balance":71039.58,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T03:08:59Z","payment_status":"fulfilled","bill_amount_local_currency":678.93,"local_currency":"RD"},{"id":692412,"external_id":null,"biller_id":7,"account_number":"8095765891","bill_amount":428.73,"bill_amount_currency":"RD","fx_rate":43.3817,"bill_amount_usd":9.88,"bill_amount_chain_currency":9.88,"payment_transaction_fee":3.0,"payment_total_usd":7.88,"payment_total_chain_currency":7.88,"chain_earned":2.0,"chain_paid":5.88,"starting_balance":71039.6,"ending_balance":71033.72,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T03:14:44Z","payment_status":"fulfilled","bill_amount_local_currency":428.73,"local_currency":"RD"},{"id":692422,"external_id":null,"biller_id":11,"account_number":"8095135010","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.5279,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":71033.7,"ending_balance":71024.6,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T11:04:08Z","payment_status":"fulfilled","bill_amount_local_currency":435.279,"local_currency":"RD"},{"id":692432,"external_id":null,"biller_id":40,"account_number":"501084367959","bill_amount":169.0,"bill_amount_currency":"MXN","fx_rate":14.3059,"bill_amount_usd":11.81,"bill_amount_chain_currency":11.81,"payment_transaction_fee":3.0,"payment_total_usd":9.81,"payment_total_chain_currency":9.81,"chain_earned":2.0,"chain_paid":7.81,"starting_balance":71024.6,"ending_balance":71016.79,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T11:06:17Z","payment_status":"fulfilled","bill_amount_local_currency":169.0,"local_currency":"MXN"},{"id":692442,"external_id":null,"biller_id":2,"account_number":"7160457","bill_amount":1596.79,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":36.68,"bill_amount_chain_currency":36.68,"payment_transaction_fee":3.0,"payment_total_usd":39.68,"payment_total_chain_currency":39.68,"chain_earned":2.0,"chain_paid":37.68,"starting_balance":71016.8,"ending_balance":70979.12,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T11:06:52Z","payment_status":"fulfilled","bill_amount_local_currency":1596.79,"local_currency":"RD"},{"id":692452,"external_id":null,"biller_id":44,"account_number":"0803016738","bill_amount":1450.0,"bill_amount_currency":"MXN","fx_rate":14.3059,"bill_amount_usd":101.36,"bill_amount_chain_currency":101.36,"payment_transaction_fee":3.0,"payment_total_usd":104.36,"payment_total_chain_currency":104.36,"chain_earned":2.0,"chain_paid":102.36,"starting_balance":70979.1,"ending_balance":70876.74,"hours_to_fulfill":24,"sms_text":null,"created_at":"2014-12-18T13:22:20Z","payment_status":"fulfilled","bill_amount_local_currency":1450.0,"local_currency":"MXN"},{"id":692472,"external_id":null,"biller_id":1601,"account_number":"42439423","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":7.5057,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.35,"chain_paid":4.65,"starting_balance":70876.7,"ending_balance":70872.05,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T14:21:22Z","payment_status":"fulfilled","bill_amount_local_currency":37.5286,"local_currency":"GTQ"},{"id":692532,"external_id":null,"biller_id":11,"account_number":"8295324706","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.5279,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":70872.0,"ending_balance":70862.9,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T14:52:01Z","payment_status":"fulfilled","bill_amount_local_currency":435.279,"local_currency":"RD"},{"id":692632,"external_id":null,"biller_id":2,"account_number":"3171968","bill_amount":804.06,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":18.47,"bill_amount_chain_currency":18.47,"payment_transaction_fee":3.0,"payment_total_usd":11.47,"payment_total_chain_currency":11.47,"chain_earned":2.0,"chain_paid":9.47,"starting_balance":70862.9,"ending_balance":70853.43,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T15:13:06Z","payment_status":"fulfilled","bill_amount_local_currency":804.06,"local_currency":"RD"},{"id":692642,"external_id":null,"biller_id":7,"account_number":"8092419269","bill_amount":689.0,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":15.83,"bill_amount_chain_currency":15.83,"payment_transaction_fee":3.0,"payment_total_usd":18.83,"payment_total_chain_currency":18.83,"chain_earned":2.0,"chain_paid":16.83,"starting_balance":70853.4,"ending_balance":70836.57,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T15:13:25Z","payment_status":"fulfilled","bill_amount_local_currency":689.0,"local_currency":"RD"},{"id":692692,"external_id":null,"biller_id":531,"account_number":"5028812","bill_amount":7.23,"bill_amount_currency":"USD","fx_rate":1.0,"bill_amount_usd":7.23,"bill_amount_chain_currency":7.23,"payment_transaction_fee":3.0,"payment_total_usd":5.23,"payment_total_chain_currency":5.23,"chain_earned":2.0,"chain_paid":3.23,"starting_balance":70836.6,"ending_balance":70833.37,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T15:30:38Z","payment_status":"fulfilled","bill_amount_local_currency":7.23,"local_currency":"USD"},{"id":692702,"external_id":null,"biller_id":11,"account_number":"8094868424","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.5279,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":70833.4,"ending_balance":70828.85,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T15:36:40Z","payment_status":"fulfilled","bill_amount_local_currency":217.6395,"local_currency":"RD"},{"id":692712,"external_id":null,"biller_id":1161,"account_number":"5509103","bill_amount":131.0,"bill_amount_currency":"GTQ","fx_rate":7.5057,"bill_amount_usd":17.45,"bill_amount_chain_currency":17.45,"payment_transaction_fee":3.0,"payment_total_usd":15.45,"payment_total_chain_currency":15.45,"chain_earned":2.0,"chain_paid":13.45,"starting_balance":70828.9,"ending_balance":70815.45,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T15:38:55Z","payment_status":"fulfilled","bill_amount_local_currency":131.0,"local_currency":"GTQ"},{"id":692972,"external_id":null,"biller_id":11,"account_number":"8092034723","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":43.5279,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.9,"chain_paid":9.1,"starting_balance":70815.4,"ending_balance":70806.3,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T17:38:53Z","payment_status":"fulfilled","bill_amount_local_currency":435.279,"local_currency":"RD"},{"id":693072,"external_id":null,"biller_id":12,"account_number":"8297127318","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.5279,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":70806.3,"ending_balance":70801.75,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T18:18:55Z","payment_status":"fulfilled","bill_amount_local_currency":217.6395,"local_currency":"RD"},{"id":693232,"external_id":null,"biller_id":1171,"account_number":"42144720","bill_amount":775.0,"bill_amount_currency":"GTQ","fx_rate":7.5057,"bill_amount_usd":103.25,"bill_amount_chain_currency":103.25,"payment_transaction_fee":3.0,"payment_total_usd":101.25,"payment_total_chain_currency":101.25,"chain_earned":2.0,"chain_paid":99.25,"starting_balance":70801.8,"ending_balance":70702.55,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T19:35:08Z","payment_status":"fulfilled","bill_amount_local_currency":775.0,"local_currency":"GTQ"},{"id":693982,"external_id":null,"biller_id":7,"account_number":"8099229880","bill_amount":711.58,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":16.35,"bill_amount_chain_currency":16.35,"payment_transaction_fee":3.0,"payment_total_usd":19.35,"payment_total_chain_currency":19.35,"chain_earned":2.0,"chain_paid":17.35,"starting_balance":70702.5,"ending_balance":70685.15,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T23:42:09Z","payment_status":"fulfilled","bill_amount_local_currency":711.58,"local_currency":"RD"},{"id":694002,"external_id":null,"biller_id":7,"account_number":"8095282395","bill_amount":1221.09,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":28.05,"bill_amount_chain_currency":28.05,"payment_transaction_fee":3.0,"payment_total_usd":31.05,"payment_total_chain_currency":31.05,"chain_earned":2.0,"chain_paid":29.05,"starting_balance":70685.1,"ending_balance":70656.05,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T23:52:19Z","payment_status":"fulfilled","bill_amount_local_currency":1221.09,"local_currency":"RD"},{"id":694012,"external_id":null,"biller_id":1,"account_number":"5466152","bill_amount":268.83,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":6.18,"bill_amount_chain_currency":6.18,"payment_transaction_fee":3.0,"payment_total_usd":9.18,"payment_total_chain_currency":9.18,"chain_earned":2.0,"chain_paid":7.18,"starting_balance":70656.0,"ending_balance":70648.82,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-18T23:54:04Z","payment_status":"fulfilled","bill_amount_local_currency":268.83,"local_currency":"RD"},{"id":694132,"external_id":null,"biller_id":1,"account_number":"5091356","bill_amount":2875.37,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":66.06,"bill_amount_chain_currency":66.06,"payment_transaction_fee":3.0,"payment_total_usd":69.06,"payment_total_chain_currency":69.06,"chain_earned":2.0,"chain_paid":67.06,"starting_balance":70648.8,"ending_balance":70581.74,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T01:34:51Z","payment_status":"fulfilled","bill_amount_local_currency":2875.37,"local_currency":"RD"},{"id":694142,"external_id":null,"biller_id":1,"account_number":"6140685","bill_amount":1007.49,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":23.15,"bill_amount_chain_currency":23.15,"payment_transaction_fee":3.0,"payment_total_usd":26.15,"payment_total_chain_currency":26.15,"chain_earned":2.0,"chain_paid":24.15,"starting_balance":70581.7,"ending_balance":70557.55,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T02:03:18Z","payment_status":"fulfilled","bill_amount_local_currency":1007.49,"local_currency":"RD"},{"id":694162,"external_id":null,"biller_id":7,"account_number":"8098964021","bill_amount":1290.42,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":29.65,"bill_amount_chain_currency":29.65,"payment_transaction_fee":3.0,"payment_total_usd":32.65,"payment_total_chain_currency":32.65,"chain_earned":2.0,"chain_paid":30.65,"starting_balance":70557.6,"ending_balance":70526.95,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T03:02:59Z","payment_status":"fulfilled","bill_amount_local_currency":1290.42,"local_currency":"RD"},{"id":694172,"external_id":null,"biller_id":2,"account_number":"8145172","bill_amount":1074.04,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":24.67,"bill_amount_chain_currency":24.67,"payment_transaction_fee":3.0,"payment_total_usd":27.67,"payment_total_chain_currency":27.67,"chain_earned":2.0,"chain_paid":25.67,"starting_balance":70527.0,"ending_balance":70501.33,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T03:03:23Z","payment_status":"fulfilled","bill_amount_local_currency":1074.04,"local_currency":"RD"},{"id":694182,"external_id":null,"biller_id":22,"account_number":"8096265928","bill_amount":939.13,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":21.58,"bill_amount_chain_currency":21.58,"payment_transaction_fee":3.0,"payment_total_usd":19.58,"payment_total_chain_currency":19.58,"chain_earned":2.0,"chain_paid":17.58,"starting_balance":70501.3,"ending_balance":70483.73,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T03:14:45Z","payment_status":"fulfilled","bill_amount_local_currency":939.13,"local_currency":"RD"},{"id":694192,"external_id":null,"biller_id":2,"account_number":"8591308","bill_amount":1074.04,"bill_amount_currency":"RD","fx_rate":43.5279,"bill_amount_usd":24.67,"bill_amount_chain_currency":24.67,"payment_transaction_fee":3.0,"payment_total_usd":22.74,"payment_total_chain_currency":22.74,"chain_earned":2.0,"chain_paid":20.74,"starting_balance":70483.7,"ending_balance":70462.96,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T03:23:10Z","payment_status":"fulfilled","bill_amount_local_currency":1074.04,"local_currency":"RD"},{"id":694202,"external_id":null,"biller_id":40,"account_number":"501085007489","bill_amount":429.0,"bill_amount_currency":"MXN","fx_rate":14.29,"bill_amount_usd":30.02,"bill_amount_chain_currency":30.02,"payment_transaction_fee":3.0,"payment_total_usd":33.02,"payment_total_chain_currency":33.02,"chain_earned":2.0,"chain_paid":31.02,"starting_balance":70463.0,"ending_balance":70431.98,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T10:50:07Z","payment_status":"fulfilled","bill_amount_local_currency":429.0,"local_currency":"MXN"},{"id":694212,"external_id":null,"biller_id":7,"account_number":"8092402045","bill_amount":199.46,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":4.59,"bill_amount_chain_currency":4.59,"payment_transaction_fee":3.0,"payment_total_usd":7.14,"payment_total_chain_currency":7.14,"chain_earned":2.0,"chain_paid":5.14,"starting_balance":70432.0,"ending_balance":70426.86,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T10:50:41Z","payment_status":"fulfilled","bill_amount_local_currency":199.46,"local_currency":"RD"},{"id":694222,"external_id":null,"biller_id":25,"account_number":"8098415307","bill_amount":325.0,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":7.48,"bill_amount_chain_currency":7.48,"payment_transaction_fee":3.0,"payment_total_usd":10.48,"payment_total_chain_currency":10.48,"chain_earned":2.0,"chain_paid":8.48,"starting_balance":70426.9,"ending_balance":70418.42,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T10:52:25Z","payment_status":"fulfilled","bill_amount_local_currency":325.0,"local_currency":"RD"},{"id":694232,"external_id":null,"biller_id":7,"account_number":"8092942816","bill_amount":689.0,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":15.86,"bill_amount_chain_currency":15.86,"payment_transaction_fee":3.0,"payment_total_usd":18.86,"payment_total_chain_currency":18.86,"chain_earned":2.0,"chain_paid":16.86,"starting_balance":70418.4,"ending_balance":70401.54,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T10:52:40Z","payment_status":"fulfilled","bill_amount_local_currency":689.0,"local_currency":"RD"},{"id":694242,"external_id":null,"biller_id":7,"account_number":"8097255307","bill_amount":1611.32,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":37.09,"bill_amount_chain_currency":37.09,"payment_transaction_fee":3.0,"payment_total_usd":40.09,"payment_total_chain_currency":40.09,"chain_earned":2.0,"chain_paid":38.09,"starting_balance":70401.5,"ending_balance":70363.41,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T10:52:55Z","payment_status":"fulfilled","bill_amount_local_currency":1611.32,"local_currency":"RD"},{"id":694252,"external_id":null,"biller_id":11,"account_number":"8295210210","bill_amount":20.0,"bill_amount_currency":"USD","fx_rate":43.4413,"bill_amount_usd":20.0,"bill_amount_chain_currency":20.0,"payment_transaction_fee":0.0,"payment_total_usd":20.0,"payment_total_chain_currency":20.0,"chain_earned":1.8,"chain_paid":18.2,"starting_balance":70363.4,"ending_balance":70345.2,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T13:37:43Z","payment_status":"fulfilled","bill_amount_local_currency":868.826,"local_currency":"RD"},{"id":694282,"external_id":null,"biller_id":37,"account_number":"7333340089","bill_amount":294.0,"bill_amount_currency":"MXN","fx_rate":14.29,"bill_amount_usd":20.57,"bill_amount_chain_currency":20.57,"payment_transaction_fee":3.0,"payment_total_usd":23.57,"payment_total_chain_currency":23.57,"chain_earned":2.0,"chain_paid":21.57,"starting_balance":70345.2,"ending_balance":70323.63,"hours_to_fulfill":48,"sms_text":null,"created_at":"2014-12-19T14:00:15Z","payment_status":"fulfilled","bill_amount_local_currency":294.0,"local_currency":"MXN"},{"id":694322,"external_id":null,"biller_id":3,"account_number":"3474269","bill_amount":732.6,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":16.86,"bill_amount_chain_currency":16.86,"payment_transaction_fee":3.0,"payment_total_usd":16.49,"payment_total_chain_currency":16.49,"chain_earned":2.0,"chain_paid":14.49,"starting_balance":70323.6,"ending_balance":70309.11,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T14:40:32Z","payment_status":"fulfilled","bill_amount_local_currency":732.6,"local_currency":"RD"},{"id":694332,"external_id":null,"biller_id":1,"account_number":"3043943","bill_amount":816.77,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":18.8,"bill_amount_chain_currency":18.8,"payment_transaction_fee":3.0,"payment_total_usd":21.8,"payment_total_chain_currency":21.8,"chain_earned":2.0,"chain_paid":19.8,"starting_balance":70309.1,"ending_balance":70289.3,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T14:41:01Z","payment_status":"fulfilled","bill_amount_local_currency":816.77,"local_currency":"RD"},{"id":694942,"external_id":null,"biller_id":12,"account_number":"8299707056","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.4413,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":70289.3,"ending_balance":70284.75,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T17:13:49Z","payment_status":"fulfilled","bill_amount_local_currency":217.2065,"local_currency":"RD"},{"id":694962,"external_id":null,"biller_id":25,"account_number":"8097252865","bill_amount":686.13,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":15.79,"bill_amount_chain_currency":15.79,"payment_transaction_fee":3.0,"payment_total_usd":13.79,"payment_total_chain_currency":13.79,"chain_earned":2.0,"chain_paid":11.79,"starting_balance":70284.8,"ending_balance":70273.01,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T17:17:09Z","payment_status":"fulfilled","bill_amount_local_currency":686.13,"local_currency":"RD"},{"id":695262,"external_id":null,"biller_id":25,"account_number":"8095784584","bill_amount":1949.06,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":44.87,"bill_amount_chain_currency":44.87,"payment_transaction_fee":3.0,"payment_total_usd":42.87,"payment_total_chain_currency":42.87,"chain_earned":2.0,"chain_paid":40.87,"starting_balance":70273.0,"ending_balance":70232.13,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T18:18:06Z","payment_status":"fulfilled","bill_amount_local_currency":1949.06,"local_currency":"RD"},{"id":695322,"external_id":null,"biller_id":7,"account_number":"8092263861","bill_amount":689.0,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":15.86,"bill_amount_chain_currency":15.86,"payment_transaction_fee":3.0,"payment_total_usd":18.86,"payment_total_chain_currency":18.86,"chain_earned":2.0,"chain_paid":16.86,"starting_balance":70232.1,"ending_balance":70215.24,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T18:43:06Z","payment_status":"fulfilled","bill_amount_local_currency":689.0,"local_currency":"RD"},{"id":695432,"external_id":null,"biller_id":11,"account_number":"8092831989","bill_amount":5.0,"bill_amount_currency":"USD","fx_rate":43.4413,"bill_amount_usd":5.0,"bill_amount_chain_currency":5.0,"payment_transaction_fee":0.0,"payment_total_usd":5.0,"payment_total_chain_currency":5.0,"chain_earned":0.45,"chain_paid":4.55,"starting_balance":70215.2,"ending_balance":70210.65,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T19:26:45Z","payment_status":"fulfilled","bill_amount_local_currency":217.2065,"local_currency":"RD"},{"id":695592,"external_id":null,"biller_id":14,"account_number":"8096211933","bill_amount":1451.78,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":33.42,"bill_amount_chain_currency":33.42,"payment_transaction_fee":3.0,"payment_total_usd":31.42,"payment_total_chain_currency":31.42,"chain_earned":2.0,"chain_paid":29.42,"starting_balance":70210.6,"ending_balance":70181.18,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T20:14:23Z","payment_status":"fulfilled","bill_amount_local_currency":1451.78,"local_currency":"RD"},{"id":696192,"external_id":null,"biller_id":901,"account_number":"4921062573309331","bill_amount":8000.0,"bill_amount_currency":"RD","fx_rate":43.4413,"bill_amount_usd":184.16,"bill_amount_chain_currency":184.16,"payment_transaction_fee":3.0,"payment_total_usd":187.16,"payment_total_chain_currency":187.16,"chain_earned":2.0,"chain_paid":185.16,"starting_balance":70181.2,"ending_balance":69996.05,"hours_to_fulfill":72,"sms_text":null,"created_at":"2014-12-19T23:06:49Z","payment_status":"fulfilled","bill_amount_local_currency":8000.0,"local_currency":"RD"},{"id":696302,"external_id":null,"biller_id":1691,"account_number":"95344446","bill_amount":10.0,"bill_amount_currency":"USD","fx_rate":1.0,"bill_amount_usd":10.0,"bill_amount_chain_currency":10.0,"payment_transaction_fee":0.0,"payment_total_usd":10.0,"payment_total_chain_currency":10.0,"chain_earned":0.7,"chain_paid":9.3,"starting_balance":69996.0,"ending_balance":69986.7,"hours_to_fulfill":0,"sms_text":null,"created_at":"2014-12-19T23:50:53Z","payment_status":"fulfilled","bill_amount_local_currency":10.0,"local_currency":"USD"}]}'
52
+ http_version:
53
+ recorded_at: Sat, 14 Jan 2017 03:18:42 GMT
54
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,52 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://api.regalii.dev/transaction/pay
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"id":1}'
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
16
+ Content-Type:
17
+ - application/json
18
+ Date:
19
+ - Mon, 16 Jan 2017 18:03:40 GMT
20
+ Content-Md5:
21
+ - 0s4ouaf9fkQH4rD9SZt/5A==
22
+ Authorization:
23
+ - APIAuth testing:Jt+winC31CGIJxrLV5AduzV/fc0=
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
+ Content-Type:
36
+ - application/json; charset=utf-8
37
+ Etag:
38
+ - W/"df43dda2906a66cd5db74e33c0131b4c"
39
+ Cache-Control:
40
+ - max-age=0, private, must-revalidate
41
+ X-Request-Id:
42
+ - 18f7c2d5-1ffd-4003-84aa-cb12619be938
43
+ X-Runtime:
44
+ - '0.152397'
45
+ Transfer-Encoding:
46
+ - chunked
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"code":"R0","message":"Transaction successful"}'
50
+ http_version:
51
+ recorded_at: Mon, 16 Jan 2017 18:03:40 GMT
52
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,52 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://api.regalii.dev/transaction/reverse
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"id":1}'
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
16
+ Content-Type:
17
+ - application/json
18
+ Date:
19
+ - Mon, 16 Jan 2017 18:11:51 GMT
20
+ Content-Md5:
21
+ - 0s4ouaf9fkQH4rD9SZt/5A==
22
+ Authorization:
23
+ - APIAuth testing:/NCix1wBnTaxXfoWhzjXUnyVzkA=
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
+ Content-Type:
36
+ - application/json; charset=utf-8
37
+ Etag:
38
+ - W/"df43dda2906a66cd5db74e33c0131b4c"
39
+ Cache-Control:
40
+ - max-age=0, private, must-revalidate
41
+ X-Request-Id:
42
+ - 9719a1e2-75a2-4ace-83ea-b53e4b6b788c
43
+ X-Runtime:
44
+ - '0.146881'
45
+ Transfer-Encoding:
46
+ - chunked
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"code":"R0","message":"Transaction successful"}'
50
+ http_version:
51
+ recorded_at: Mon, 16 Jan 2017 18:11:51 GMT
52
+ recorded_with: VCR 2.9.3