boletosimples 0.6.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -12
  3. data/README.md +21 -59
  4. data/lib/boletosimples/configuration.rb +25 -28
  5. data/lib/boletosimples/last_request.rb +17 -10
  6. data/lib/boletosimples/middlewares/bearer.rb +12 -0
  7. data/lib/boletosimples/middlewares/custom_headers.rb +12 -0
  8. data/lib/boletosimples/middlewares/debug.rb +30 -0
  9. data/lib/boletosimples/middlewares/last_request.rb +3 -1
  10. data/lib/boletosimples/middlewares/raise_error.rb +9 -2
  11. data/lib/boletosimples/middlewares/user_agent.rb +3 -1
  12. data/lib/boletosimples/resources/bank_billet.rb +5 -11
  13. data/lib/boletosimples/resources/bank_billet_account.rb +3 -1
  14. data/lib/boletosimples/resources/bank_billet_discharge.rb +3 -1
  15. data/lib/boletosimples/resources/bank_billet_payment.rb +3 -1
  16. data/lib/boletosimples/resources/bank_billet_remittance.rb +3 -1
  17. data/lib/boletosimples/resources/base_model.rb +3 -1
  18. data/lib/boletosimples/resources/customer.rb +3 -1
  19. data/lib/boletosimples/resources/customer_import.rb +5 -3
  20. data/lib/boletosimples/resources/customer_subscription.rb +3 -10
  21. data/lib/boletosimples/resources/customer_subscription_import.rb +5 -3
  22. data/lib/boletosimples/resources/discharge.rb +4 -11
  23. data/lib/boletosimples/resources/email_delivery.rb +3 -1
  24. data/lib/boletosimples/resources/event.rb +3 -1
  25. data/lib/boletosimples/resources/installment.rb +3 -1
  26. data/lib/boletosimples/resources/remittance.rb +3 -1
  27. data/lib/boletosimples/resources/sms_delivery.rb +6 -0
  28. data/lib/boletosimples/resources/transaction.rb +3 -1
  29. data/lib/boletosimples/resources/webhook.rb +3 -1
  30. data/lib/boletosimples/resources/webhook_delivery.rb +3 -1
  31. data/lib/boletosimples/response_error.rb +10 -5
  32. data/lib/boletosimples/version.rb +3 -1
  33. data/lib/boletosimples.rb +6 -6
  34. data/spec/boletosimples/configuration_spec.rb +67 -80
  35. data/spec/boletosimples/last_request_spec.rb +17 -28
  36. data/spec/boletosimples/middlewares/custom_headers_spec.rb +26 -0
  37. data/spec/boletosimples/resources/bank_billet_account_spec.rb +57 -33
  38. data/spec/boletosimples/resources/bank_billet_discharge_spec.rb +7 -12
  39. data/spec/boletosimples/resources/bank_billet_payment_spec.rb +7 -12
  40. data/spec/boletosimples/resources/bank_billet_remittance_spec.rb +7 -12
  41. data/spec/boletosimples/resources/bank_billet_spec.rb +56 -42
  42. data/spec/boletosimples/resources/customer_import_spec.rb +41 -30
  43. data/spec/boletosimples/resources/customer_spec.rb +57 -39
  44. data/spec/boletosimples/resources/customer_subscription_import_spec.rb +41 -30
  45. data/spec/boletosimples/resources/customer_subscription_spec.rb +61 -33
  46. data/spec/boletosimples/resources/discharge_spec.rb +64 -11
  47. data/spec/boletosimples/resources/email_delivery_spec.rb +6 -11
  48. data/spec/boletosimples/resources/event_spec.rb +7 -12
  49. data/spec/boletosimples/resources/installment_spec.rb +61 -32
  50. data/spec/boletosimples/resources/remittance_spec.rb +7 -12
  51. data/spec/boletosimples/resources/sms_delivery_spec.rb +12 -0
  52. data/spec/boletosimples/resources/transactions_spec.rb +7 -12
  53. data/spec/boletosimples/resources/webhook_delivery_spec.rb +7 -12
  54. data/spec/boletosimples/resources/webhook_spec.rb +7 -12
  55. data/spec/fixtures/discharge.RET +3 -0
  56. data/spec/fixtures/vcr_cassettes/custom_headers.yml +113 -0
  57. data/spec/fixtures/vcr_cassettes/last_request/bank_billets.yml +409 -95
  58. data/spec/fixtures/vcr_cassettes/resources/bank_billet/all.yml +101 -99
  59. data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/success.yml +55 -95
  60. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_params.yml +55 -27
  61. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_root.yml +51 -24
  62. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/valid.yml +64 -34
  63. data/spec/fixtures/vcr_cassettes/resources/bank_billet/duplicate/success.yml +97 -0
  64. data/spec/fixtures/vcr_cassettes/resources/bank_billet/find.yml +73 -34
  65. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/all.yml +82 -27
  66. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_params.yml +57 -27
  67. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_root.yml +53 -26
  68. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/valid.yml +64 -28
  69. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/find.yml +61 -25
  70. data/spec/fixtures/vcr_cassettes/resources/bank_billet_discharge/all.yml +59 -46
  71. data/spec/fixtures/vcr_cassettes/resources/bank_billet_payment/all.yml +74 -71
  72. data/spec/fixtures/vcr_cassettes/resources/bank_billet_remittance/all.yml +63 -47
  73. data/spec/fixtures/vcr_cassettes/resources/customer/all.yml +141 -39
  74. data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_params.yml +54 -25
  75. data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_root.yml +54 -24
  76. data/spec/fixtures/vcr_cassettes/resources/customer/create/valid.yml +56 -28
  77. data/spec/fixtures/vcr_cassettes/resources/customer/find.yml +56 -26
  78. data/spec/fixtures/vcr_cassettes/resources/customer_import/all.yml +58 -59
  79. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_params.yml +53 -51
  80. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_root.yml +54 -52
  81. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/valid.yml +58 -67
  82. data/spec/fixtures/vcr_cassettes/resources/customer_import/find.yml +55 -53
  83. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/all.yml +65 -51
  84. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_params.yml +56 -50
  85. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_root.yml +52 -48
  86. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/valid.yml +63 -52
  87. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/find.yml +61 -51
  88. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/next_charge.yml +60 -132
  89. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/all.yml +58 -54
  90. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_params.yml +53 -52
  91. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_root.yml +55 -53
  92. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/valid.yml +58 -69
  93. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/find.yml +55 -54
  94. data/spec/fixtures/vcr_cassettes/resources/discharge/all.yml +63 -34
  95. data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_params.yml +86 -0
  96. data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_root.yml +85 -0
  97. data/spec/fixtures/vcr_cassettes/resources/discharge/create/valid.yml +100 -0
  98. data/spec/fixtures/vcr_cassettes/resources/discharge/find.yml +89 -0
  99. data/spec/fixtures/vcr_cassettes/resources/email_delivery/all.yml +40 -43
  100. data/spec/fixtures/vcr_cassettes/resources/event/all.yml +326 -167
  101. data/spec/fixtures/vcr_cassettes/resources/installment/all.yml +113 -51
  102. data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_params.yml +57 -52
  103. data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_root.yml +52 -48
  104. data/spec/fixtures/vcr_cassettes/resources/installment/create/valid.yml +63 -52
  105. data/spec/fixtures/vcr_cassettes/resources/installment/find.yml +83 -51
  106. data/spec/fixtures/vcr_cassettes/resources/remittance/all.yml +83 -62
  107. data/spec/fixtures/vcr_cassettes/resources/sns_delivery/all.yml +89 -0
  108. data/spec/fixtures/vcr_cassettes/resources/transaction/all.yml +73 -60
  109. data/spec/fixtures/vcr_cassettes/resources/web_hook/all.yml +59 -34
  110. data/spec/fixtures/vcr_cassettes/resources/webhook_delivery/all.yml +2684 -55
  111. data/spec/spec_helper.rb +3 -20
  112. data/spec/support/stub_env.rb +7 -0
  113. data/spec/support/vcr.rb +3 -4
  114. metadata +42 -176
  115. data/.coveralls.yml +0 -2
  116. data/.gitignore +0 -19
  117. data/.ruby-version +0 -1
  118. data/.travis.yml +0 -46
  119. data/Gemfile +0 -4
  120. data/Rakefile +0 -14
  121. data/boletosimples.gemspec +0 -38
  122. data/gemfiles/rails_42.gemfile +0 -8
  123. data/gemfiles/rails_50.gemfile +0 -8
  124. data/gemfiles/rails_51.gemfile +0 -8
  125. data/gemfiles/rails_52.gemfile +0 -9
  126. data/lib/boletosimples/extra.rb +0 -8
  127. data/lib/boletosimples/resources/partner/user.rb +0 -7
  128. data/lib/oauth2_patch.rb +0 -24
  129. data/spec/boletosimples/extra_spec.rb +0 -31
  130. data/spec/boletosimples/resources/partner/user_spec.rb +0 -19
  131. data/spec/fixtures/vcr_cassettes/configuration/client_credentials/invalid.yml +0 -64
  132. data/spec/fixtures/vcr_cassettes/configuration/client_credentials/valid.yml +0 -56
  133. data/spec/fixtures/vcr_cassettes/extra/userinfo/authenticated.yml +0 -58
  134. data/spec/fixtures/vcr_cassettes/extra/userinfo/not_authenticated.yml +0 -54
  135. data/spec/fixtures/vcr_cassettes/last_request/userinfo.yml +0 -58
  136. data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/failure.yml +0 -118
  137. data/spec/fixtures/vcr_cassettes/resources/partner/user/create.yml +0 -60
  138. data/spec/spec.opts +0 -8
@@ -2,128 +2,442 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://sandbox.boletosimples.com.br/api/v1/bank_billets?access_token=BOLETOSIMPLES_ACCESS_TOKEN
5
+ uri: https://api-sandbox.kobana.com.br/v1/bank_billets?page=2
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BoletoSimples Ruby Client v0.1.0 (contato@boletosimples.com.br)
11
+ - email@minhaempresa.com.br
12
12
  Authorization:
13
- - Token token="BOLETOSIMPLES_ACCESS_TOKEN"
13
+ - Bearer BOLETOSIMPLES_API_TOKEN
14
+ Accept:
15
+ - application/json
14
16
  Accept-Encoding:
15
17
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
- Accept:
17
- - "*/*"
18
18
  response:
19
19
  status:
20
20
  code: 200
21
21
  message: OK
22
22
  headers:
23
- Server:
24
- - Cowboy
23
+ Content-Type:
24
+ - application/json; charset=utf-8
25
+ Transfer-Encoding:
26
+ - chunked
25
27
  Connection:
26
28
  - keep-alive
27
- Strict-Transport-Security:
28
- - max-age=2592000
29
+ Server:
30
+ - Cowboy
31
+ X-Frame-Options:
32
+ - DENY
33
+ X-Xss-Protection:
34
+ - 1; mode=block
35
+ X-Content-Type-Options:
36
+ - nosniff
37
+ X-Download-Options:
38
+ - noopen
39
+ X-Permitted-Cross-Domain-Policies:
40
+ - none
41
+ Referrer-Policy:
42
+ - strict-origin-when-cross-origin
43
+ Expect-Ct:
44
+ - max-age=0, report-uri="https://boletosimples.report-uri.com/r/d/ct/reportOnly"
45
+ Cross-Origin-Resource-Policy:
46
+ - cross-origin
47
+ Cross-Origin-Embedder-Policy:
48
+ - unsafe-none
49
+ Cross-Origin-Opener-Policy:
50
+ - unsafe-none
29
51
  Link:
30
- - <https://sandbox.boletosimples.com.br/api/v1/bank_billets?access_token=BOLETOSIMPLES_ACCESS_TOKEN&page=5>;
31
- rel="last", <https://sandbox.boletosimples.com.br/api/v1/bank_billets?access_token=BOLETOSIMPLES_ACCESS_TOKEN&page=2>;
32
- rel="next"
33
- Total:
34
- - '111'
35
- Content-Type:
36
- - application/json; charset=utf-8
52
+ - <https://api-sandbox.kobana.com.br/api/v1/bank_billets?page=1>; rel="first",
53
+ <https://api-sandbox.kobana.com.br/api/v1/bank_billets?page=1>; rel="prev",
54
+ <https://api-sandbox.kobana.com.br/api/v1/bank_billets?page=3>; rel="next"
55
+ Per-Page:
56
+ - '50'
57
+ Page:
58
+ - '2'
37
59
  X-Ratelimit-Limit:
38
- - '500'
60
+ - '100'
39
61
  X-Ratelimit-Remaining:
40
- - '475'
62
+ - '44'
41
63
  Etag:
42
- - W/"da9156a80f9c17441d998ded6a046282"
64
+ - W/"2b5b4d40c2f34b5210f98def5efabf15"
43
65
  Cache-Control:
44
66
  - must-revalidate, private, max-age=0
45
67
  X-Request-Id:
46
- - e96219cf-685f-4982-b0bc-0f5d9b26ba4e
68
+ - fdf7d097-ba5a-44fe-8640-e073d596b495
47
69
  X-Runtime:
48
- - '0.069265'
70
+ - '0.239694'
49
71
  Date:
50
- - Sun, 08 Mar 2015 19:55:19 GMT
72
+ - Tue, 22 Feb 2022 17:42:38 GMT
51
73
  X-Rack-Cache:
52
74
  - miss
75
+ Strict-Transport-Security:
76
+ - max-age=31556952; includeSubDomains; preload
53
77
  Vary:
54
- - Accept-Encoding
55
- Transfer-Encoding:
56
- - chunked
78
+ - Origin,Accept-Encoding
79
+ X-Rack-Cors:
80
+ - miss; no-origin
57
81
  Via:
58
- - 1.1 vegur
82
+ - 1.1 vegur, 1.1 ee5a1fbfd85d9d25aef83ca16d91afca.cloudfront.net (CloudFront)
83
+ X-Cache:
84
+ - Miss from cloudfront
85
+ X-Amz-Cf-Pop:
86
+ - MIA3-C1
87
+ X-Amz-Cf-Id:
88
+ - SGxJ88xstnS5M5P_5242XXcz_oSuS0KGJ0Ml0sfT-j6mI88ffDUBxg==
59
89
  body:
60
90
  encoding: UTF-8
61
- string: '[{"id":850,"expire_at":"2014-01-01","paid_at":null,"description":"Despesas
62
- do contrato 0012","status":"canceled","shorten_url":"http://staging.bole.to/niriavev","customer_person_type":"individual","customer_person_name":"Joao
63
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
64
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
65
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","notification_url":"http://example.com.br/notify","send_email_on_creation":null,"created_via_api":true,"customer_city_name":"Rio
66
- de Janeiro","paid_amount":0.0,"amount":9.01},{"id":799,"expire_at":"2015-01-01","paid_at":null,"description":"Cobrança
67
- XPTO","status":"opened","shorten_url":"http://staging.bole.to/niq5avd4","customer_person_type":"individual","customer_person_name":"Joao
68
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
69
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
70
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":"Rio
71
- de Janeiro","paid_amount":0.0,"amount":9.99},{"id":798,"expire_at":"2014-01-01","paid_at":null,"description":"Despesas
72
- do contrato 0012","status":"canceled","shorten_url":"http://staging.bole.to/niq6avd3","customer_person_type":"individual","customer_person_name":"Joao
73
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
74
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
75
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","notification_url":"http://example.com.br/notify","send_email_on_creation":null,"created_via_api":true,"customer_city_name":"Rio
76
- de Janeiro","paid_amount":0.0,"amount":9.01},{"id":797,"expire_at":"2014-01-01","paid_at":null,"description":"Despesas
77
- do contrato 0012","status":"opened","shorten_url":"http://staging.bole.to/niq7avd2","customer_person_type":"individual","customer_person_name":"Joao
78
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
79
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
80
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","notification_url":"http://example.com.br/notify","send_email_on_creation":null,"created_via_api":true,"customer_city_name":"Rio
81
- de Janeiro","paid_amount":0.0,"amount":9.01},{"id":796,"expire_at":"2014-01-01","paid_at":null,"description":"Despesas
82
- do contrato 0012","status":"opened","shorten_url":"http://staging.bole.to/niq8avd1","customer_person_type":"individual","customer_person_name":"Joao
83
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
84
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
85
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","notification_url":"http://example.com.br/notify","send_email_on_creation":null,"created_via_api":true,"customer_city_name":"Rio
86
- de Janeiro","paid_amount":0.0,"amount":9.01},{"id":793,"expire_at":"2015-01-02","paid_at":null,"description":"Teste
87
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nioiavbv","customer_person_type":"individual","customer_person_name":"Rodolfo
88
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":7.2},{"id":792,"expire_at":"2015-01-02","paid_at":null,"description":"Teste
89
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/niojavbw","customer_person_type":"individual","customer_person_name":"Fernanda
90
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":7.2},{"id":791,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
91
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nioaavbn","customer_person_type":"individual","customer_person_name":"Rodolfo
92
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":790,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
93
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/niozavbm","customer_person_type":"individual","customer_person_name":"Rodolfo
94
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":789,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
95
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nioyavbl","customer_person_type":"individual","customer_person_name":"Rodolfo
96
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":788,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
97
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nioxavbk","customer_person_type":"individual","customer_person_name":"Rodolfo
98
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":787,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
99
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/niowavbj","customer_person_type":"individual","customer_person_name":"Rodolfo
100
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":786,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
101
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/niovavbi","customer_person_type":"individual","customer_person_name":"Rodolfo
102
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":785,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
103
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/niouavbh","customer_person_type":"individual","customer_person_name":"Rodolfo
104
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":784,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
105
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/niotavbg","customer_person_type":"individual","customer_person_name":"Rodolfo
106
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":783,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
107
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nioravbe","customer_person_type":"individual","customer_person_name":"Rodolfo
108
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":782,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
109
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/niosavbf","customer_person_type":"individual","customer_person_name":"Rodolfo
110
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":781,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
111
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/niopavbc","customer_person_type":"individual","customer_person_name":"Rodolfo
112
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":780,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
113
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nionavba","customer_person_type":"individual","customer_person_name":"Rodolfo
114
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":779,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
115
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/niooavbb","customer_person_type":"individual","customer_person_name":"Rodolfo
116
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":778,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
117
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nio1avb8","customer_person_type":"individual","customer_person_name":"Rodolfo
118
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":777,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
119
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nio1avb9","customer_person_type":"individual","customer_person_name":"Rodolfo
120
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":776,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
121
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nio2avb7","customer_person_type":"individual","customer_person_name":"Rodolfo
122
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":775,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
123
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nio3avb6","customer_person_type":"individual","customer_person_name":"Rodolfo
124
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1},{"id":774,"expire_at":"2015-01-01","paid_at":null,"description":"Teste
125
- de geração de boleto","status":"opened","shorten_url":"http://staging.bole.to/nio4avb5","customer_person_type":"individual","customer_person_name":"Rodolfo
126
- Lima","customer_cnpj_cpf":"748.885.399-79","customer_address":null,"customer_state":null,"customer_neighborhood":null,"customer_zipcode":"24360-440","customer_address_number":null,"customer_address_complement":null,"customer_phone_number":null,"customer_email":null,"notification_url":null,"send_email_on_creation":null,"created_via_api":true,"customer_city_name":null,"paid_amount":0.0,"amount":9.1}]'
127
- http_version:
128
- recorded_at: Sun, 08 Mar 2015 19:55:19 GMT
129
- recorded_with: VCR 2.9.3
91
+ string: '[{"id":472585,"expire_at":"2026-03-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
92
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
93
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/ewezro","formats":{"default":"https://sandbox.bole.to/3/ewezro","png":"https://sandbox.bole.to/3/ewezro.png","pdf":"https://sandbox.bole.to/3/ewezro.pdf","boleto_hibrido":"https://sandbox.bole.to/3/ewezro/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/ewezro/boleto_pix","barcode":"https://sandbox.bole.to/3/ewezro/barcode","envelope":"https://sandbox.bole.to/3/ewezro/envelope","letter":"https://sandbox.bole.to/3/ewezro/letter","line":"https://sandbox.bole.to/3/ewezro/line","recibo":"https://sandbox.bole.to/3/ewezro/recibo","carne":"https://sandbox.bole.to/3/ewezro/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
94
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
95
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
96
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000140-1","processed_our_number_raw":"140000000000001401","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
97
+ 20000.100048 00000.014043 5 13940000012312","our_number":"000000000000140","customer_subscription_id":null,"installment_total":50,"installment_number":50,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/ewezro/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:19-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10495139400000123121233220000100040000001404","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/ewezro","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434033,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472585,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
98
+ de Título","created_at":"2022-02-22T14:41:20-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472584,"expire_at":"2026-02-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
99
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
100
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/kekdyr","formats":{"default":"https://sandbox.bole.to/3/kekdyr","png":"https://sandbox.bole.to/3/kekdyr.png","pdf":"https://sandbox.bole.to/3/kekdyr.pdf","boleto_hibrido":"https://sandbox.bole.to/3/kekdyr/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/kekdyr/boleto_pix","barcode":"https://sandbox.bole.to/3/kekdyr/barcode","envelope":"https://sandbox.bole.to/3/kekdyr/envelope","letter":"https://sandbox.bole.to/3/kekdyr/letter","line":"https://sandbox.bole.to/3/kekdyr/line","recibo":"https://sandbox.bole.to/3/kekdyr/recibo","carne":"https://sandbox.bole.to/3/kekdyr/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
101
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
102
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
103
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000139-8","processed_our_number_raw":"140000000000001398","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
104
+ 20000.100048 00000.013904 9 13660000012312","our_number":"000000000000139","customer_subscription_id":null,"installment_total":50,"installment_number":49,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/kekdyr/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:19-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499136600000123121233220000100040000001390","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/kekdyr","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434032,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472584,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
105
+ de Título","created_at":"2022-02-22T14:41:20-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472583,"expire_at":"2026-01-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
106
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
107
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/qdowzq","formats":{"default":"https://sandbox.bole.to/3/qdowzq","png":"https://sandbox.bole.to/3/qdowzq.png","pdf":"https://sandbox.bole.to/3/qdowzq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/qdowzq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/qdowzq/boleto_pix","barcode":"https://sandbox.bole.to/3/qdowzq/barcode","envelope":"https://sandbox.bole.to/3/qdowzq/envelope","letter":"https://sandbox.bole.to/3/qdowzq/letter","line":"https://sandbox.bole.to/3/qdowzq/line","recibo":"https://sandbox.bole.to/3/qdowzq/recibo","carne":"https://sandbox.bole.to/3/qdowzq/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
108
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
109
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
110
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000138-0","processed_our_number_raw":"140000000000001380","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
111
+ 20000.100048 00000.013821 9 13350000012312","our_number":"000000000000138","customer_subscription_id":null,"installment_total":50,"installment_number":48,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/qdowzq/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:19-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499133500000123121233220000100040000001382","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/qdowzq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434031,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472583,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
112
+ de Título","created_at":"2022-02-22T14:41:20-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472582,"expire_at":"2025-12-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
113
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
114
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/gnvddg","formats":{"default":"https://sandbox.bole.to/3/gnvddg","png":"https://sandbox.bole.to/3/gnvddg.png","pdf":"https://sandbox.bole.to/3/gnvddg.pdf","boleto_hibrido":"https://sandbox.bole.to/3/gnvddg/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/gnvddg/boleto_pix","barcode":"https://sandbox.bole.to/3/gnvddg/barcode","envelope":"https://sandbox.bole.to/3/gnvddg/envelope","letter":"https://sandbox.bole.to/3/gnvddg/letter","line":"https://sandbox.bole.to/3/gnvddg/line","recibo":"https://sandbox.bole.to/3/gnvddg/recibo","carne":"https://sandbox.bole.to/3/gnvddg/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
115
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
116
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
117
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000137-1","processed_our_number_raw":"140000000000001371","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
118
+ 20000.100048 00000.013748 9 13040000012312","our_number":"000000000000137","customer_subscription_id":null,"installment_total":50,"installment_number":47,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/gnvddg/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:19-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499130400000123121233220000100040000001374","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/gnvddg","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434029,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472582,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
119
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472581,"expire_at":"2025-11-24","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
120
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
121
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/jnbrry","formats":{"default":"https://sandbox.bole.to/3/jnbrry","png":"https://sandbox.bole.to/3/jnbrry.png","pdf":"https://sandbox.bole.to/3/jnbrry.pdf","boleto_hibrido":"https://sandbox.bole.to/3/jnbrry/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/jnbrry/boleto_pix","barcode":"https://sandbox.bole.to/3/jnbrry/barcode","envelope":"https://sandbox.bole.to/3/jnbrry/envelope","letter":"https://sandbox.bole.to/3/jnbrry/letter","line":"https://sandbox.bole.to/3/jnbrry/line","recibo":"https://sandbox.bole.to/3/jnbrry/recibo","carne":"https://sandbox.bole.to/3/jnbrry/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
122
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
123
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
124
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000136-3","processed_our_number_raw":"140000000000001363","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
125
+ 20000.100048 00000.013664 1 12750000012312","our_number":"000000000000136","customer_subscription_id":null,"installment_total":50,"installment_number":46,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/jnbrry/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:19-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491127500000123121233220000100040000001366","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/jnbrry","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434030,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472581,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
126
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472580,"expire_at":"2025-10-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
127
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
128
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/lodlle","formats":{"default":"https://sandbox.bole.to/3/lodlle","png":"https://sandbox.bole.to/3/lodlle.png","pdf":"https://sandbox.bole.to/3/lodlle.pdf","boleto_hibrido":"https://sandbox.bole.to/3/lodlle/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/lodlle/boleto_pix","barcode":"https://sandbox.bole.to/3/lodlle/barcode","envelope":"https://sandbox.bole.to/3/lodlle/envelope","letter":"https://sandbox.bole.to/3/lodlle/letter","line":"https://sandbox.bole.to/3/lodlle/line","recibo":"https://sandbox.bole.to/3/lodlle/recibo","carne":"https://sandbox.bole.to/3/lodlle/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
129
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
130
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
131
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000135-5","processed_our_number_raw":"140000000000001355","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
132
+ 20000.100048 00000.013581 6 12430000012312","our_number":"000000000000135","customer_subscription_id":null,"installment_total":50,"installment_number":45,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/lodlle/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:19-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10496124300000123121233220000100040000001358","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/lodlle","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434026,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472580,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
133
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472579,"expire_at":"2025-09-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
134
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
135
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/yqrnnb","formats":{"default":"https://sandbox.bole.to/3/yqrnnb","png":"https://sandbox.bole.to/3/yqrnnb.png","pdf":"https://sandbox.bole.to/3/yqrnnb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrnnb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrnnb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrnnb/barcode","envelope":"https://sandbox.bole.to/3/yqrnnb/envelope","letter":"https://sandbox.bole.to/3/yqrnnb/letter","line":"https://sandbox.bole.to/3/yqrnnb/line","recibo":"https://sandbox.bole.to/3/yqrnnb/recibo","carne":"https://sandbox.bole.to/3/yqrnnb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
136
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
137
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
138
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000134-7","processed_our_number_raw":"140000000000001347","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
139
+ 20000.100048 00000.013409 1 12130000012312","our_number":"000000000000134","customer_subscription_id":null,"installment_total":50,"installment_number":44,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/yqrnnb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:19-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491121300000123121233220000100040000001340","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/yqrnnb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434028,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472579,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
140
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472578,"expire_at":"2025-08-25","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
141
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
142
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/mvzyyd","formats":{"default":"https://sandbox.bole.to/3/mvzyyd","png":"https://sandbox.bole.to/3/mvzyyd.png","pdf":"https://sandbox.bole.to/3/mvzyyd.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyyd/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyyd/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyyd/barcode","envelope":"https://sandbox.bole.to/3/mvzyyd/envelope","letter":"https://sandbox.bole.to/3/mvzyyd/letter","line":"https://sandbox.bole.to/3/mvzyyd/line","recibo":"https://sandbox.bole.to/3/mvzyyd/recibo","carne":"https://sandbox.bole.to/3/mvzyyd/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
143
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
144
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
145
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000133-9","processed_our_number_raw":"140000000000001339","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
146
+ 20000.100048 00000.013318 4 11840000012312","our_number":"000000000000133","customer_subscription_id":null,"installment_total":50,"installment_number":43,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/mvzyyd/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10494118400000123121233220000100040000001331","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyyd","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434027,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472578,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
147
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472577,"expire_at":"2025-07-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
148
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
149
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/rdvrrv","formats":{"default":"https://sandbox.bole.to/3/rdvrrv","png":"https://sandbox.bole.to/3/rdvrrv.png","pdf":"https://sandbox.bole.to/3/rdvrrv.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrrv/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrrv/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrrv/barcode","envelope":"https://sandbox.bole.to/3/rdvrrv/envelope","letter":"https://sandbox.bole.to/3/rdvrrv/letter","line":"https://sandbox.bole.to/3/rdvrrv/line","recibo":"https://sandbox.bole.to/3/rdvrrv/recibo","carne":"https://sandbox.bole.to/3/rdvrrv/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
150
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
151
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
152
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000132-0","processed_our_number_raw":"140000000000001320","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
153
+ 20000.100048 00000.013235 3 11510000012312","our_number":"000000000000132","customer_subscription_id":null,"installment_total":50,"installment_number":42,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/rdvrrv/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493115100000123121233220000100040000001323","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrrv","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434025,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472577,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
154
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472576,"expire_at":"2025-06-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
155
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
156
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/zgmjjq","formats":{"default":"https://sandbox.bole.to/3/zgmjjq","png":"https://sandbox.bole.to/3/zgmjjq.png","pdf":"https://sandbox.bole.to/3/zgmjjq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjjq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjjq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjjq/barcode","envelope":"https://sandbox.bole.to/3/zgmjjq/envelope","letter":"https://sandbox.bole.to/3/zgmjjq/letter","line":"https://sandbox.bole.to/3/zgmjjq/line","recibo":"https://sandbox.bole.to/3/zgmjjq/recibo","carne":"https://sandbox.bole.to/3/zgmjjq/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
157
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
158
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
159
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000131-2","processed_our_number_raw":"140000000000001312","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
160
+ 20000.100048 00000.013151 9 11210000012312","our_number":"000000000000131","customer_subscription_id":null,"installment_total":50,"installment_number":41,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/zgmjjq/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499112100000123121233220000100040000001315","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjjq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434024,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472576,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
161
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472575,"expire_at":"2025-05-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
162
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
163
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/dxlyyo","formats":{"default":"https://sandbox.bole.to/3/dxlyyo","png":"https://sandbox.bole.to/3/dxlyyo.png","pdf":"https://sandbox.bole.to/3/dxlyyo.pdf","boleto_hibrido":"https://sandbox.bole.to/3/dxlyyo/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/dxlyyo/boleto_pix","barcode":"https://sandbox.bole.to/3/dxlyyo/barcode","envelope":"https://sandbox.bole.to/3/dxlyyo/envelope","letter":"https://sandbox.bole.to/3/dxlyyo/letter","line":"https://sandbox.bole.to/3/dxlyyo/line","recibo":"https://sandbox.bole.to/3/dxlyyo/recibo","carne":"https://sandbox.bole.to/3/dxlyyo/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
164
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
165
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
166
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000130-4","processed_our_number_raw":"140000000000001304","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
167
+ 20000.100048 00000.013078 1 10900000012312","our_number":"000000000000130","customer_subscription_id":null,"installment_total":50,"installment_number":40,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/dxlyyo/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491109000000123121233220000100040000001307","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/dxlyyo","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434023,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472575,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
168
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472574,"expire_at":"2025-04-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
169
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
170
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/nxrmmj","formats":{"default":"https://sandbox.bole.to/3/nxrmmj","png":"https://sandbox.bole.to/3/nxrmmj.png","pdf":"https://sandbox.bole.to/3/nxrmmj.pdf","boleto_hibrido":"https://sandbox.bole.to/3/nxrmmj/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/nxrmmj/boleto_pix","barcode":"https://sandbox.bole.to/3/nxrmmj/barcode","envelope":"https://sandbox.bole.to/3/nxrmmj/envelope","letter":"https://sandbox.bole.to/3/nxrmmj/letter","line":"https://sandbox.bole.to/3/nxrmmj/line","recibo":"https://sandbox.bole.to/3/nxrmmj/recibo","carne":"https://sandbox.bole.to/3/nxrmmj/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
171
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
172
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
173
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000129-0","processed_our_number_raw":"140000000000001290","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
174
+ 20000.100048 00000.012930 3 10600000012312","our_number":"000000000000129","customer_subscription_id":null,"installment_total":50,"installment_number":39,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/nxrmmj/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493106000000123121233220000100040000001293","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/nxrmmj","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434022,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472574,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
175
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472573,"expire_at":"2025-03-24","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
176
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
177
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/bolnne","formats":{"default":"https://sandbox.bole.to/3/bolnne","png":"https://sandbox.bole.to/3/bolnne.png","pdf":"https://sandbox.bole.to/3/bolnne.pdf","boleto_hibrido":"https://sandbox.bole.to/3/bolnne/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/bolnne/boleto_pix","barcode":"https://sandbox.bole.to/3/bolnne/barcode","envelope":"https://sandbox.bole.to/3/bolnne/envelope","letter":"https://sandbox.bole.to/3/bolnne/letter","line":"https://sandbox.bole.to/3/bolnne/line","recibo":"https://sandbox.bole.to/3/bolnne/recibo","carne":"https://sandbox.bole.to/3/bolnne/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
178
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
179
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
180
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000128-2","processed_our_number_raw":"140000000000001282","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
181
+ 20000.100048 00000.012856 9 10300000012312","our_number":"000000000000128","customer_subscription_id":null,"installment_total":50,"installment_number":38,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/bolnne/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10499103000000123121233220000100040000001285","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/bolnne","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434021,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472573,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
182
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472572,"expire_at":"2025-02-24","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
183
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
184
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/wqdnnm","formats":{"default":"https://sandbox.bole.to/3/wqdnnm","png":"https://sandbox.bole.to/3/wqdnnm.png","pdf":"https://sandbox.bole.to/3/wqdnnm.pdf","boleto_hibrido":"https://sandbox.bole.to/3/wqdnnm/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/wqdnnm/boleto_pix","barcode":"https://sandbox.bole.to/3/wqdnnm/barcode","envelope":"https://sandbox.bole.to/3/wqdnnm/envelope","letter":"https://sandbox.bole.to/3/wqdnnm/letter","line":"https://sandbox.bole.to/3/wqdnnm/line","recibo":"https://sandbox.bole.to/3/wqdnnm/recibo","carne":"https://sandbox.bole.to/3/wqdnnm/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
185
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
186
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
187
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000127-4","processed_our_number_raw":"140000000000001274","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
188
+ 20000.100048 00000.012773 5 10020000012312","our_number":"000000000000127","customer_subscription_id":null,"installment_total":50,"installment_number":37,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/wqdnnm/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10495100200000123121233220000100040000001277","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/wqdnnm","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434020,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472572,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
189
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472571,"expire_at":"2025-01-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
190
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
191
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/xrzqqr","formats":{"default":"https://sandbox.bole.to/3/xrzqqr","png":"https://sandbox.bole.to/3/xrzqqr.png","pdf":"https://sandbox.bole.to/3/xrzqqr.pdf","boleto_hibrido":"https://sandbox.bole.to/3/xrzqqr/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/xrzqqr/boleto_pix","barcode":"https://sandbox.bole.to/3/xrzqqr/barcode","envelope":"https://sandbox.bole.to/3/xrzqqr/envelope","letter":"https://sandbox.bole.to/3/xrzqqr/letter","line":"https://sandbox.bole.to/3/xrzqqr/line","recibo":"https://sandbox.bole.to/3/xrzqqr/recibo","carne":"https://sandbox.bole.to/3/xrzqqr/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
192
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
193
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
194
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000126-6","processed_our_number_raw":"140000000000001266","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
195
+ 20000.100048 00000.012690 1 99700000012312","our_number":"000000000000126","customer_subscription_id":null,"installment_total":50,"installment_number":36,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/xrzqqr/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491997000000123121233220000100040000001269","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/xrzqqr","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434019,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472571,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
196
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472570,"expire_at":"2024-12-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
197
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
198
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/vrnbbx","formats":{"default":"https://sandbox.bole.to/3/vrnbbx","png":"https://sandbox.bole.to/3/vrnbbx.png","pdf":"https://sandbox.bole.to/3/vrnbbx.pdf","boleto_hibrido":"https://sandbox.bole.to/3/vrnbbx/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/vrnbbx/boleto_pix","barcode":"https://sandbox.bole.to/3/vrnbbx/barcode","envelope":"https://sandbox.bole.to/3/vrnbbx/envelope","letter":"https://sandbox.bole.to/3/vrnbbx/letter","line":"https://sandbox.bole.to/3/vrnbbx/line","recibo":"https://sandbox.bole.to/3/vrnbbx/recibo","carne":"https://sandbox.bole.to/3/vrnbbx/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
199
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
200
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
201
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000125-8","processed_our_number_raw":"140000000000001258","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
202
+ 20000.100048 00000.012500 1 99390000012312","our_number":"000000000000125","customer_subscription_id":null,"installment_total":50,"installment_number":35,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/vrnbbx/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491993900000123121233220000100040000001250","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/vrnbbx","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434018,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472570,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
203
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472569,"expire_at":"2024-11-25","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
204
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
205
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/owmbbb","formats":{"default":"https://sandbox.bole.to/3/owmbbb","png":"https://sandbox.bole.to/3/owmbbb.png","pdf":"https://sandbox.bole.to/3/owmbbb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/owmbbb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/owmbbb/boleto_pix","barcode":"https://sandbox.bole.to/3/owmbbb/barcode","envelope":"https://sandbox.bole.to/3/owmbbb/envelope","letter":"https://sandbox.bole.to/3/owmbbb/letter","line":"https://sandbox.bole.to/3/owmbbb/line","recibo":"https://sandbox.bole.to/3/owmbbb/recibo","carne":"https://sandbox.bole.to/3/owmbbb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
206
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
207
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
208
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000124-0","processed_our_number_raw":"140000000000001240","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
209
+ 20000.100048 00000.012427 6 99110000012312","our_number":"000000000000124","customer_subscription_id":null,"installment_total":50,"installment_number":34,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/owmbbb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10496991100000123121233220000100040000001242","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/owmbbb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434017,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472569,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
210
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472568,"expire_at":"2024-10-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
211
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
212
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/ewezzo","formats":{"default":"https://sandbox.bole.to/3/ewezzo","png":"https://sandbox.bole.to/3/ewezzo.png","pdf":"https://sandbox.bole.to/3/ewezzo.pdf","boleto_hibrido":"https://sandbox.bole.to/3/ewezzo/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/ewezzo/boleto_pix","barcode":"https://sandbox.bole.to/3/ewezzo/barcode","envelope":"https://sandbox.bole.to/3/ewezzo/envelope","letter":"https://sandbox.bole.to/3/ewezzo/letter","line":"https://sandbox.bole.to/3/ewezzo/line","recibo":"https://sandbox.bole.to/3/ewezzo/recibo","carne":"https://sandbox.bole.to/3/ewezzo/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
213
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
214
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
215
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000123-1","processed_our_number_raw":"140000000000001231","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
216
+ 20000.100048 00000.012344 7 98780000012312","our_number":"000000000000123","customer_subscription_id":null,"installment_total":50,"installment_number":33,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/ewezzo/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10497987800000123121233220000100040000001234","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/ewezzo","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434016,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472568,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
217
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472567,"expire_at":"2024-09-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
218
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
219
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/kekddr","formats":{"default":"https://sandbox.bole.to/3/kekddr","png":"https://sandbox.bole.to/3/kekddr.png","pdf":"https://sandbox.bole.to/3/kekddr.pdf","boleto_hibrido":"https://sandbox.bole.to/3/kekddr/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/kekddr/boleto_pix","barcode":"https://sandbox.bole.to/3/kekddr/barcode","envelope":"https://sandbox.bole.to/3/kekddr/envelope","letter":"https://sandbox.bole.to/3/kekddr/letter","line":"https://sandbox.bole.to/3/kekddr/line","recibo":"https://sandbox.bole.to/3/kekddr/recibo","carne":"https://sandbox.bole.to/3/kekddr/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
220
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
221
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
222
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000122-3","processed_our_number_raw":"140000000000001223","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
223
+ 20000.100048 00000.012260 2 98480000012312","our_number":"000000000000122","customer_subscription_id":null,"installment_total":50,"installment_number":32,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/kekddr/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:18-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10492984800000123121233220000100040000001226","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/kekddr","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434015,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472567,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
224
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472566,"expire_at":"2024-08-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
225
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
226
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/qdowwq","formats":{"default":"https://sandbox.bole.to/3/qdowwq","png":"https://sandbox.bole.to/3/qdowwq.png","pdf":"https://sandbox.bole.to/3/qdowwq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/qdowwq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/qdowwq/boleto_pix","barcode":"https://sandbox.bole.to/3/qdowwq/barcode","envelope":"https://sandbox.bole.to/3/qdowwq/envelope","letter":"https://sandbox.bole.to/3/qdowwq/letter","line":"https://sandbox.bole.to/3/qdowwq/line","recibo":"https://sandbox.bole.to/3/qdowwq/recibo","carne":"https://sandbox.bole.to/3/qdowwq/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
227
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
228
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
229
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000121-5","processed_our_number_raw":"140000000000001215","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
230
+ 20000.100048 00000.012187 2 98170000012312","our_number":"000000000000121","customer_subscription_id":null,"installment_total":50,"installment_number":31,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/qdowwq/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:17-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10492981700000123121233220000100040000001218","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/qdowwq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434014,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472566,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
231
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472565,"expire_at":"2024-07-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
232
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
233
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/gnvdxg","formats":{"default":"https://sandbox.bole.to/3/gnvdxg","png":"https://sandbox.bole.to/3/gnvdxg.png","pdf":"https://sandbox.bole.to/3/gnvdxg.pdf","boleto_hibrido":"https://sandbox.bole.to/3/gnvdxg/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/gnvdxg/boleto_pix","barcode":"https://sandbox.bole.to/3/gnvdxg/barcode","envelope":"https://sandbox.bole.to/3/gnvdxg/envelope","letter":"https://sandbox.bole.to/3/gnvdxg/letter","line":"https://sandbox.bole.to/3/gnvdxg/line","recibo":"https://sandbox.bole.to/3/gnvdxg/recibo","carne":"https://sandbox.bole.to/3/gnvdxg/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
234
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
235
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
236
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000120-7","processed_our_number_raw":"140000000000001207","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
237
+ 20000.100048 00000.012005 2 97860000012312","our_number":"000000000000120","customer_subscription_id":null,"installment_total":50,"installment_number":30,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/gnvdxg/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:17-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10492978600000123121233220000100040000001200","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/gnvdxg","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434013,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472565,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
238
+ de Título","created_at":"2022-02-22T14:41:19-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472564,"expire_at":"2024-06-24","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
239
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
240
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/jnbrey","formats":{"default":"https://sandbox.bole.to/3/jnbrey","png":"https://sandbox.bole.to/3/jnbrey.png","pdf":"https://sandbox.bole.to/3/jnbrey.pdf","boleto_hibrido":"https://sandbox.bole.to/3/jnbrey/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/jnbrey/boleto_pix","barcode":"https://sandbox.bole.to/3/jnbrey/barcode","envelope":"https://sandbox.bole.to/3/jnbrey/envelope","letter":"https://sandbox.bole.to/3/jnbrey/letter","line":"https://sandbox.bole.to/3/jnbrey/line","recibo":"https://sandbox.bole.to/3/jnbrey/recibo","carne":"https://sandbox.bole.to/3/jnbrey/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
241
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
242
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
243
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000119-3","processed_our_number_raw":"140000000000001193","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
244
+ 20000.100048 00000.011965 2 97570000012312","our_number":"000000000000119","customer_subscription_id":null,"installment_total":50,"installment_number":29,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/jnbrey/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:17-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10492975700000123121233220000100040000001196","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/jnbrey","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434012,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472564,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
245
+ de Título","created_at":"2022-02-22T14:41:18-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472563,"expire_at":"2024-05-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
246
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
247
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/lodlye","formats":{"default":"https://sandbox.bole.to/3/lodlye","png":"https://sandbox.bole.to/3/lodlye.png","pdf":"https://sandbox.bole.to/3/lodlye.pdf","boleto_hibrido":"https://sandbox.bole.to/3/lodlye/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/lodlye/boleto_pix","barcode":"https://sandbox.bole.to/3/lodlye/barcode","envelope":"https://sandbox.bole.to/3/lodlye/envelope","letter":"https://sandbox.bole.to/3/lodlye/letter","line":"https://sandbox.bole.to/3/lodlye/line","recibo":"https://sandbox.bole.to/3/lodlye/recibo","carne":"https://sandbox.bole.to/3/lodlye/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
248
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
249
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
250
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000118-5","processed_our_number_raw":"140000000000001185","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
251
+ 20000.100048 00000.011882 7 97250000012312","our_number":"000000000000118","customer_subscription_id":null,"installment_total":50,"installment_number":28,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/lodlye/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:17-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10497972500000123121233220000100040000001188","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/lodlye","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434011,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472563,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
252
+ de Título","created_at":"2022-02-22T14:41:18-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472562,"expire_at":"2024-04-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
253
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
254
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/yqrnxb","formats":{"default":"https://sandbox.bole.to/3/yqrnxb","png":"https://sandbox.bole.to/3/yqrnxb.png","pdf":"https://sandbox.bole.to/3/yqrnxb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrnxb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrnxb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrnxb/barcode","envelope":"https://sandbox.bole.to/3/yqrnxb/envelope","letter":"https://sandbox.bole.to/3/yqrnxb/letter","line":"https://sandbox.bole.to/3/yqrnxb/line","recibo":"https://sandbox.bole.to/3/yqrnxb/recibo","carne":"https://sandbox.bole.to/3/yqrnxb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
255
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
256
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
257
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000117-7","processed_our_number_raw":"140000000000001177","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
258
+ 20000.100048 00000.011700 2 96950000012312","our_number":"000000000000117","customer_subscription_id":null,"installment_total":50,"installment_number":27,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/yqrnxb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:14-03:00","updated_at":"2022-02-22T14:41:17-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10492969500000123121233220000100040000001170","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:14-03:00","shorten_url":"https://sandbox.bole.to/3/yqrnxb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434010,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472562,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
259
+ de Título","created_at":"2022-02-22T14:41:18-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472561,"expire_at":"2024-03-25","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
260
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
261
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/mvzyxd","formats":{"default":"https://sandbox.bole.to/3/mvzyxd","png":"https://sandbox.bole.to/3/mvzyxd.png","pdf":"https://sandbox.bole.to/3/mvzyxd.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyxd/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyxd/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyxd/barcode","envelope":"https://sandbox.bole.to/3/mvzyxd/envelope","letter":"https://sandbox.bole.to/3/mvzyxd/letter","line":"https://sandbox.bole.to/3/mvzyxd/line","recibo":"https://sandbox.bole.to/3/mvzyxd/recibo","carne":"https://sandbox.bole.to/3/mvzyxd/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
262
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
263
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
264
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000116-9","processed_our_number_raw":"140000000000001169","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
265
+ 20000.100048 00000.011619 5 96660000012312","our_number":"000000000000116","customer_subscription_id":null,"installment_total":50,"installment_number":26,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/mvzyxd/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:17-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10495966600000123121233220000100040000001161","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyxd","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434008,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472561,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
266
+ de Título","created_at":"2022-02-22T14:41:18-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472560,"expire_at":"2024-02-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
267
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
268
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/rdvrqv","formats":{"default":"https://sandbox.bole.to/3/rdvrqv","png":"https://sandbox.bole.to/3/rdvrqv.png","pdf":"https://sandbox.bole.to/3/rdvrqv.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrqv/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrqv/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrqv/barcode","envelope":"https://sandbox.bole.to/3/rdvrqv/envelope","letter":"https://sandbox.bole.to/3/rdvrqv/letter","line":"https://sandbox.bole.to/3/rdvrqv/line","recibo":"https://sandbox.bole.to/3/rdvrqv/recibo","carne":"https://sandbox.bole.to/3/rdvrqv/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
269
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
270
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
271
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000115-0","processed_our_number_raw":"140000000000001150","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
272
+ 20000.100048 00000.011536 5 96350000012312","our_number":"000000000000115","customer_subscription_id":null,"installment_total":50,"installment_number":25,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/rdvrqv/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:17-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10495963500000123121233220000100040000001153","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrqv","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434009,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472560,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
273
+ de Título","created_at":"2022-02-22T14:41:18-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472559,"expire_at":"2024-01-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
274
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
275
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/zgmjrq","formats":{"default":"https://sandbox.bole.to/3/zgmjrq","png":"https://sandbox.bole.to/3/zgmjrq.png","pdf":"https://sandbox.bole.to/3/zgmjrq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjrq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjrq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjrq/barcode","envelope":"https://sandbox.bole.to/3/zgmjrq/envelope","letter":"https://sandbox.bole.to/3/zgmjrq/letter","line":"https://sandbox.bole.to/3/zgmjrq/line","recibo":"https://sandbox.bole.to/3/zgmjrq/recibo","carne":"https://sandbox.bole.to/3/zgmjrq/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
276
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
277
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
278
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000114-2","processed_our_number_raw":"140000000000001142","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
279
+ 20000.100048 00000.011452 5 96040000012312","our_number":"000000000000114","customer_subscription_id":null,"installment_total":50,"installment_number":24,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/zgmjrq/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:17-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10495960400000123121233220000100040000001145","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjrq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434007,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472559,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
280
+ de Título","created_at":"2022-02-22T14:41:18-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472558,"expire_at":"2023-12-26","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
281
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
282
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/dxlyeo","formats":{"default":"https://sandbox.bole.to/3/dxlyeo","png":"https://sandbox.bole.to/3/dxlyeo.png","pdf":"https://sandbox.bole.to/3/dxlyeo.pdf","boleto_hibrido":"https://sandbox.bole.to/3/dxlyeo/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/dxlyeo/boleto_pix","barcode":"https://sandbox.bole.to/3/dxlyeo/barcode","envelope":"https://sandbox.bole.to/3/dxlyeo/envelope","letter":"https://sandbox.bole.to/3/dxlyeo/letter","line":"https://sandbox.bole.to/3/dxlyeo/line","recibo":"https://sandbox.bole.to/3/dxlyeo/recibo","carne":"https://sandbox.bole.to/3/dxlyeo/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
283
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
284
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
285
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000113-4","processed_our_number_raw":"140000000000001134","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
286
+ 20000.100048 00000.011379 3 95760000012312","our_number":"000000000000113","customer_subscription_id":null,"installment_total":50,"installment_number":23,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/dxlyeo/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:17-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493957600000123121233220000100040000001137","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/dxlyeo","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434006,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472558,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
287
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472557,"expire_at":"2023-11-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
288
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
289
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/nxrmqj","formats":{"default":"https://sandbox.bole.to/3/nxrmqj","png":"https://sandbox.bole.to/3/nxrmqj.png","pdf":"https://sandbox.bole.to/3/nxrmqj.pdf","boleto_hibrido":"https://sandbox.bole.to/3/nxrmqj/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/nxrmqj/boleto_pix","barcode":"https://sandbox.bole.to/3/nxrmqj/barcode","envelope":"https://sandbox.bole.to/3/nxrmqj/envelope","letter":"https://sandbox.bole.to/3/nxrmqj/letter","line":"https://sandbox.bole.to/3/nxrmqj/line","recibo":"https://sandbox.bole.to/3/nxrmqj/recibo","carne":"https://sandbox.bole.to/3/nxrmqj/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
290
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
291
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
292
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000112-6","processed_our_number_raw":"140000000000001126","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
293
+ 20000.100048 00000.011296 2 95430000012312","our_number":"000000000000112","customer_subscription_id":null,"installment_total":50,"installment_number":22,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/nxrmqj/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10492954300000123121233220000100040000001129","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/nxrmqj","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434005,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472557,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
294
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472556,"expire_at":"2023-10-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
295
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
296
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/bolnde","formats":{"default":"https://sandbox.bole.to/3/bolnde","png":"https://sandbox.bole.to/3/bolnde.png","pdf":"https://sandbox.bole.to/3/bolnde.pdf","boleto_hibrido":"https://sandbox.bole.to/3/bolnde/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/bolnde/boleto_pix","barcode":"https://sandbox.bole.to/3/bolnde/barcode","envelope":"https://sandbox.bole.to/3/bolnde/envelope","letter":"https://sandbox.bole.to/3/bolnde/letter","line":"https://sandbox.bole.to/3/bolnde/line","recibo":"https://sandbox.bole.to/3/bolnde/recibo","carne":"https://sandbox.bole.to/3/bolnde/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
297
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
298
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
299
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000111-8","processed_our_number_raw":"140000000000001118","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
300
+ 20000.100048 00000.011106 2 95120000012312","our_number":"000000000000111","customer_subscription_id":null,"installment_total":50,"installment_number":21,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/bolnde/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10492951200000123121233220000100040000001110","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/bolnde","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434004,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472556,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
301
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472555,"expire_at":"2023-09-25","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
302
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
303
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/wqdnom","formats":{"default":"https://sandbox.bole.to/3/wqdnom","png":"https://sandbox.bole.to/3/wqdnom.png","pdf":"https://sandbox.bole.to/3/wqdnom.pdf","boleto_hibrido":"https://sandbox.bole.to/3/wqdnom/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/wqdnom/boleto_pix","barcode":"https://sandbox.bole.to/3/wqdnom/barcode","envelope":"https://sandbox.bole.to/3/wqdnom/envelope","letter":"https://sandbox.bole.to/3/wqdnom/letter","line":"https://sandbox.bole.to/3/wqdnom/line","recibo":"https://sandbox.bole.to/3/wqdnom/recibo","carne":"https://sandbox.bole.to/3/wqdnom/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
304
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
305
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
306
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000110-0","processed_our_number_raw":"140000000000001100","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
307
+ 20000.100048 00000.011023 1 94840000012312","our_number":"000000000000110","customer_subscription_id":null,"installment_total":50,"installment_number":20,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/wqdnom/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491948400000123121233220000100040000001102","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/wqdnom","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434003,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472555,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
308
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472554,"expire_at":"2023-08-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
309
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
310
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/xrzqbr","formats":{"default":"https://sandbox.bole.to/3/xrzqbr","png":"https://sandbox.bole.to/3/xrzqbr.png","pdf":"https://sandbox.bole.to/3/xrzqbr.pdf","boleto_hibrido":"https://sandbox.bole.to/3/xrzqbr/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/xrzqbr/boleto_pix","barcode":"https://sandbox.bole.to/3/xrzqbr/barcode","envelope":"https://sandbox.bole.to/3/xrzqbr/envelope","letter":"https://sandbox.bole.to/3/xrzqbr/letter","line":"https://sandbox.bole.to/3/xrzqbr/line","recibo":"https://sandbox.bole.to/3/xrzqbr/recibo","carne":"https://sandbox.bole.to/3/xrzqbr/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
311
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
312
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
313
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000109-6","processed_our_number_raw":"140000000000001096","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
314
+ 20000.100048 00000.010991 7 94510000012312","our_number":"000000000000109","customer_subscription_id":null,"installment_total":50,"installment_number":19,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/xrzqbr/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10497945100000123121233220000100040000001099","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/xrzqbr","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434002,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472554,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
315
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472553,"expire_at":"2023-07-24","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
316
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
317
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/vrnbex","formats":{"default":"https://sandbox.bole.to/3/vrnbex","png":"https://sandbox.bole.to/3/vrnbex.png","pdf":"https://sandbox.bole.to/3/vrnbex.pdf","boleto_hibrido":"https://sandbox.bole.to/3/vrnbex/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/vrnbex/boleto_pix","barcode":"https://sandbox.bole.to/3/vrnbex/barcode","envelope":"https://sandbox.bole.to/3/vrnbex/envelope","letter":"https://sandbox.bole.to/3/vrnbex/letter","line":"https://sandbox.bole.to/3/vrnbex/line","recibo":"https://sandbox.bole.to/3/vrnbex/recibo","carne":"https://sandbox.bole.to/3/vrnbex/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
318
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
319
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
320
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000108-8","processed_our_number_raw":"140000000000001088","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
321
+ 20000.100048 00000.010801 2 94210000012312","our_number":"000000000000108","customer_subscription_id":null,"installment_total":50,"installment_number":18,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/vrnbex/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10492942100000123121233220000100040000001080","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/vrnbex","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434001,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472553,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
322
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472552,"expire_at":"2023-06-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
323
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
324
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/owmbqb","formats":{"default":"https://sandbox.bole.to/3/owmbqb","png":"https://sandbox.bole.to/3/owmbqb.png","pdf":"https://sandbox.bole.to/3/owmbqb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/owmbqb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/owmbqb/boleto_pix","barcode":"https://sandbox.bole.to/3/owmbqb/barcode","envelope":"https://sandbox.bole.to/3/owmbqb/envelope","letter":"https://sandbox.bole.to/3/owmbqb/letter","line":"https://sandbox.bole.to/3/owmbqb/line","recibo":"https://sandbox.bole.to/3/owmbqb/recibo","carne":"https://sandbox.bole.to/3/owmbqb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
325
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
326
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
327
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000107-0","processed_our_number_raw":"140000000000001070","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
328
+ 20000.100048 00000.010728 4 93900000012312","our_number":"000000000000107","customer_subscription_id":null,"installment_total":50,"installment_number":17,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/owmbqb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10494939000000123121233220000100040000001072","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/owmbqb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":434000,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472552,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
329
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472551,"expire_at":"2023-05-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
330
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
331
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/ewezoo","formats":{"default":"https://sandbox.bole.to/3/ewezoo","png":"https://sandbox.bole.to/3/ewezoo.png","pdf":"https://sandbox.bole.to/3/ewezoo.pdf","boleto_hibrido":"https://sandbox.bole.to/3/ewezoo/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/ewezoo/boleto_pix","barcode":"https://sandbox.bole.to/3/ewezoo/barcode","envelope":"https://sandbox.bole.to/3/ewezoo/envelope","letter":"https://sandbox.bole.to/3/ewezoo/letter","line":"https://sandbox.bole.to/3/ewezoo/line","recibo":"https://sandbox.bole.to/3/ewezoo/recibo","carne":"https://sandbox.bole.to/3/ewezoo/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
332
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
333
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
334
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000106-1","processed_our_number_raw":"140000000000001061","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
335
+ 20000.100048 00000.010645 4 93590000012312","our_number":"000000000000106","customer_subscription_id":null,"installment_total":50,"installment_number":16,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/ewezoo/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10494935900000123121233220000100040000001064","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/ewezoo","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433999,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472551,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
336
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472550,"expire_at":"2023-04-24","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
337
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
338
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/kekdor","formats":{"default":"https://sandbox.bole.to/3/kekdor","png":"https://sandbox.bole.to/3/kekdor.png","pdf":"https://sandbox.bole.to/3/kekdor.pdf","boleto_hibrido":"https://sandbox.bole.to/3/kekdor/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/kekdor/boleto_pix","barcode":"https://sandbox.bole.to/3/kekdor/barcode","envelope":"https://sandbox.bole.to/3/kekdor/envelope","letter":"https://sandbox.bole.to/3/kekdor/letter","line":"https://sandbox.bole.to/3/kekdor/line","recibo":"https://sandbox.bole.to/3/kekdor/recibo","carne":"https://sandbox.bole.to/3/kekdor/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
339
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
340
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
341
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000105-3","processed_our_number_raw":"140000000000001053","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
342
+ 20000.100048 00000.010561 5 93300000012312","our_number":"000000000000105","customer_subscription_id":null,"installment_total":50,"installment_number":15,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/kekdor/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10495933000000123121233220000100040000001056","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/kekdor","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433998,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472550,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
343
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472549,"expire_at":"2023-03-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
344
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
345
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/qdownq","formats":{"default":"https://sandbox.bole.to/3/qdownq","png":"https://sandbox.bole.to/3/qdownq.png","pdf":"https://sandbox.bole.to/3/qdownq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/qdownq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/qdownq/boleto_pix","barcode":"https://sandbox.bole.to/3/qdownq/barcode","envelope":"https://sandbox.bole.to/3/qdownq/envelope","letter":"https://sandbox.bole.to/3/qdownq/letter","line":"https://sandbox.bole.to/3/qdownq/line","recibo":"https://sandbox.bole.to/3/qdownq/recibo","carne":"https://sandbox.bole.to/3/qdownq/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
346
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
347
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
348
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000104-5","processed_our_number_raw":"140000000000001045","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
349
+ 20000.100048 00000.010488 1 92980000012312","our_number":"000000000000104","customer_subscription_id":null,"installment_total":50,"installment_number":14,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/qdownq/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491929800000123121233220000100040000001048","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/qdownq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433997,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472549,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
350
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472548,"expire_at":"2023-02-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
351
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
352
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/gnvdmg","formats":{"default":"https://sandbox.bole.to/3/gnvdmg","png":"https://sandbox.bole.to/3/gnvdmg.png","pdf":"https://sandbox.bole.to/3/gnvdmg.pdf","boleto_hibrido":"https://sandbox.bole.to/3/gnvdmg/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/gnvdmg/boleto_pix","barcode":"https://sandbox.bole.to/3/gnvdmg/barcode","envelope":"https://sandbox.bole.to/3/gnvdmg/envelope","letter":"https://sandbox.bole.to/3/gnvdmg/letter","line":"https://sandbox.bole.to/3/gnvdmg/line","recibo":"https://sandbox.bole.to/3/gnvdmg/recibo","carne":"https://sandbox.bole.to/3/gnvdmg/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
353
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
354
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
355
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000103-7","processed_our_number_raw":"140000000000001037","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
356
+ 20000.100048 00000.010306 6 92700000012312","our_number":"000000000000103","customer_subscription_id":null,"installment_total":50,"installment_number":13,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/gnvdmg/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10496927000000123121233220000100040000001030","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/gnvdmg","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433995,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472548,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
357
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472547,"expire_at":"2023-01-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
358
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
359
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/jnbrmy","formats":{"default":"https://sandbox.bole.to/3/jnbrmy","png":"https://sandbox.bole.to/3/jnbrmy.png","pdf":"https://sandbox.bole.to/3/jnbrmy.pdf","boleto_hibrido":"https://sandbox.bole.to/3/jnbrmy/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/jnbrmy/boleto_pix","barcode":"https://sandbox.bole.to/3/jnbrmy/barcode","envelope":"https://sandbox.bole.to/3/jnbrmy/envelope","letter":"https://sandbox.bole.to/3/jnbrmy/letter","line":"https://sandbox.bole.to/3/jnbrmy/line","recibo":"https://sandbox.bole.to/3/jnbrmy/recibo","carne":"https://sandbox.bole.to/3/jnbrmy/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
360
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
361
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
362
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000102-9","processed_our_number_raw":"140000000000001029","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
363
+ 20000.100048 00000.010215 8 92390000012312","our_number":"000000000000102","customer_subscription_id":null,"installment_total":50,"installment_number":12,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/jnbrmy/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:15-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10498923900000123121233220000100040000001021","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/jnbrmy","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433994,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472547,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
364
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472546,"expire_at":"2022-12-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
365
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
366
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/lodlve","formats":{"default":"https://sandbox.bole.to/3/lodlve","png":"https://sandbox.bole.to/3/lodlve.png","pdf":"https://sandbox.bole.to/3/lodlve.pdf","boleto_hibrido":"https://sandbox.bole.to/3/lodlve/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/lodlve/boleto_pix","barcode":"https://sandbox.bole.to/3/lodlve/barcode","envelope":"https://sandbox.bole.to/3/lodlve/envelope","letter":"https://sandbox.bole.to/3/lodlve/letter","line":"https://sandbox.bole.to/3/lodlve/line","recibo":"https://sandbox.bole.to/3/lodlve/recibo","carne":"https://sandbox.bole.to/3/lodlve/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
367
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
368
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
369
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000101-0","processed_our_number_raw":"140000000000001010","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
370
+ 20000.100048 00000.010132 8 92080000012312","our_number":"000000000000101","customer_subscription_id":null,"installment_total":50,"installment_number":11,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/lodlve/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:16-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10498920800000123121233220000100040000001013","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/lodlve","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433996,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472546,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
371
+ de Título","created_at":"2022-02-22T14:41:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472545,"expire_at":"2022-11-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
372
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
373
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/yqrneb","formats":{"default":"https://sandbox.bole.to/3/yqrneb","png":"https://sandbox.bole.to/3/yqrneb.png","pdf":"https://sandbox.bole.to/3/yqrneb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrneb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrneb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrneb/barcode","envelope":"https://sandbox.bole.to/3/yqrneb/envelope","letter":"https://sandbox.bole.to/3/yqrneb/letter","line":"https://sandbox.bole.to/3/yqrneb/line","recibo":"https://sandbox.bole.to/3/yqrneb/recibo","carne":"https://sandbox.bole.to/3/yqrneb/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
374
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
375
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
376
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000100-2","processed_our_number_raw":"140000000000001002","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
377
+ 20000.100048 00000.010058 5 91780000012312","our_number":"000000000000100","customer_subscription_id":null,"installment_total":50,"installment_number":10,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/yqrneb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:15-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10495917800000123121233220000100040000001005","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/yqrneb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433993,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472545,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
378
+ de Título","created_at":"2022-02-22T14:41:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472544,"expire_at":"2022-10-24","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
379
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
380
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/mvzyed","formats":{"default":"https://sandbox.bole.to/3/mvzyed","png":"https://sandbox.bole.to/3/mvzyed.png","pdf":"https://sandbox.bole.to/3/mvzyed.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyed/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyed/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyed/barcode","envelope":"https://sandbox.bole.to/3/mvzyed/envelope","letter":"https://sandbox.bole.to/3/mvzyed/letter","line":"https://sandbox.bole.to/3/mvzyed/line","recibo":"https://sandbox.bole.to/3/mvzyed/recibo","carne":"https://sandbox.bole.to/3/mvzyed/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
381
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
382
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
383
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000099-5","processed_our_number_raw":"140000000000000995","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
384
+ 20000.100048 00000.009985 3 91480000012312","our_number":"000000000000099","customer_subscription_id":null,"installment_total":50,"installment_number":9,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/mvzyed/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:15-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10493914800000123121233220000100040000000998","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyed","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433992,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472544,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
385
+ de Título","created_at":"2022-02-22T14:41:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472543,"expire_at":"2022-09-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
386
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
387
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/rdvrbv","formats":{"default":"https://sandbox.bole.to/3/rdvrbv","png":"https://sandbox.bole.to/3/rdvrbv.png","pdf":"https://sandbox.bole.to/3/rdvrbv.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrbv/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrbv/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrbv/barcode","envelope":"https://sandbox.bole.to/3/rdvrbv/envelope","letter":"https://sandbox.bole.to/3/rdvrbv/letter","line":"https://sandbox.bole.to/3/rdvrbv/line","recibo":"https://sandbox.bole.to/3/rdvrbv/recibo","carne":"https://sandbox.bole.to/3/rdvrbv/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
388
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
389
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
390
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000098-7","processed_our_number_raw":"140000000000000987","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
391
+ 20000.100048 00000.009803 1 91170000012312","our_number":"000000000000098","customer_subscription_id":null,"installment_total":50,"installment_number":8,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/rdvrbv/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:15-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491911700000123121233220000100040000000980","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrbv","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433991,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472543,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
392
+ de Título","created_at":"2022-02-22T14:41:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472542,"expire_at":"2022-08-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
393
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
394
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/zgmjkq","formats":{"default":"https://sandbox.bole.to/3/zgmjkq","png":"https://sandbox.bole.to/3/zgmjkq.png","pdf":"https://sandbox.bole.to/3/zgmjkq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjkq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjkq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjkq/barcode","envelope":"https://sandbox.bole.to/3/zgmjkq/envelope","letter":"https://sandbox.bole.to/3/zgmjkq/letter","line":"https://sandbox.bole.to/3/zgmjkq/line","recibo":"https://sandbox.bole.to/3/zgmjkq/recibo","carne":"https://sandbox.bole.to/3/zgmjkq/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
395
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
396
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
397
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000097-9","processed_our_number_raw":"140000000000000979","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
398
+ 20000.100048 00000.009712 5 90860000012312","our_number":"000000000000097","customer_subscription_id":null,"installment_total":50,"installment_number":7,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/zgmjkq/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:15-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10495908600000123121233220000100040000000971","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjkq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433990,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472542,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
399
+ de Título","created_at":"2022-02-22T14:41:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472541,"expire_at":"2022-07-25","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
400
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
401
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/dxlydo","formats":{"default":"https://sandbox.bole.to/3/dxlydo","png":"https://sandbox.bole.to/3/dxlydo.png","pdf":"https://sandbox.bole.to/3/dxlydo.pdf","boleto_hibrido":"https://sandbox.bole.to/3/dxlydo/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/dxlydo/boleto_pix","barcode":"https://sandbox.bole.to/3/dxlydo/barcode","envelope":"https://sandbox.bole.to/3/dxlydo/envelope","letter":"https://sandbox.bole.to/3/dxlydo/letter","line":"https://sandbox.bole.to/3/dxlydo/line","recibo":"https://sandbox.bole.to/3/dxlydo/recibo","carne":"https://sandbox.bole.to/3/dxlydo/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
402
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
403
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
404
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000096-0","processed_our_number_raw":"140000000000000960","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
405
+ 20000.100048 00000.009639 6 90570000012312","our_number":"000000000000096","customer_subscription_id":null,"installment_total":50,"installment_number":6,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/dxlydo/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:15-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10496905700000123121233220000100040000000963","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/dxlydo","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433989,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472541,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
406
+ de Título","created_at":"2022-02-22T14:41:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472540,"expire_at":"2022-06-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
407
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
408
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/nxrmwj","formats":{"default":"https://sandbox.bole.to/3/nxrmwj","png":"https://sandbox.bole.to/3/nxrmwj.png","pdf":"https://sandbox.bole.to/3/nxrmwj.pdf","boleto_hibrido":"https://sandbox.bole.to/3/nxrmwj/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/nxrmwj/boleto_pix","barcode":"https://sandbox.bole.to/3/nxrmwj/barcode","envelope":"https://sandbox.bole.to/3/nxrmwj/envelope","letter":"https://sandbox.bole.to/3/nxrmwj/letter","line":"https://sandbox.bole.to/3/nxrmwj/line","recibo":"https://sandbox.bole.to/3/nxrmwj/recibo","carne":"https://sandbox.bole.to/3/nxrmwj/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
409
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
410
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
411
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000095-2","processed_our_number_raw":"140000000000000952","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
412
+ 20000.100048 00000.009555 1 90250000012312","our_number":"000000000000095","customer_subscription_id":null,"installment_total":50,"installment_number":5,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/nxrmwj/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:15-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491902500000123121233220000100040000000955","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/nxrmwj","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433988,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472540,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
413
+ de Título","created_at":"2022-02-22T14:41:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472539,"expire_at":"2022-05-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
414
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
415
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/bolnme","formats":{"default":"https://sandbox.bole.to/3/bolnme","png":"https://sandbox.bole.to/3/bolnme.png","pdf":"https://sandbox.bole.to/3/bolnme.pdf","boleto_hibrido":"https://sandbox.bole.to/3/bolnme/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/bolnme/boleto_pix","barcode":"https://sandbox.bole.to/3/bolnme/barcode","envelope":"https://sandbox.bole.to/3/bolnme/envelope","letter":"https://sandbox.bole.to/3/bolnme/letter","line":"https://sandbox.bole.to/3/bolnme/line","recibo":"https://sandbox.bole.to/3/bolnme/recibo","carne":"https://sandbox.bole.to/3/bolnme/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
416
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
417
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
418
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000094-4","processed_our_number_raw":"140000000000000944","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
419
+ 20000.100048 00000.009472 6 89940000012312","our_number":"000000000000094","customer_subscription_id":null,"installment_total":50,"installment_number":4,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/bolnme/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:15-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10496899400000123121233220000100040000000947","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/bolnme","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433987,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472539,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
420
+ de Título","created_at":"2022-02-22T14:41:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472538,"expire_at":"2022-04-25","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
421
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
422
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/wqdnwm","formats":{"default":"https://sandbox.bole.to/3/wqdnwm","png":"https://sandbox.bole.to/3/wqdnwm.png","pdf":"https://sandbox.bole.to/3/wqdnwm.pdf","boleto_hibrido":"https://sandbox.bole.to/3/wqdnwm/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/wqdnwm/boleto_pix","barcode":"https://sandbox.bole.to/3/wqdnwm/barcode","envelope":"https://sandbox.bole.to/3/wqdnwm/envelope","letter":"https://sandbox.bole.to/3/wqdnwm/letter","line":"https://sandbox.bole.to/3/wqdnwm/line","recibo":"https://sandbox.bole.to/3/wqdnwm/recibo","carne":"https://sandbox.bole.to/3/wqdnwm/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
423
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
424
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
425
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000093-6","processed_our_number_raw":"140000000000000936","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
426
+ 20000.100048 00000.009399 2 89660000012312","our_number":"000000000000093","customer_subscription_id":null,"installment_total":50,"installment_number":3,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/wqdnwm/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:15-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10492896600000123121233220000100040000000939","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/wqdnwm","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433986,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472538,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
427
+ de Título","created_at":"2022-02-22T14:41:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472537,"expire_at":"2022-03-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
428
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
429
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/xrzqvr","formats":{"default":"https://sandbox.bole.to/3/xrzqvr","png":"https://sandbox.bole.to/3/xrzqvr.png","pdf":"https://sandbox.bole.to/3/xrzqvr.pdf","boleto_hibrido":"https://sandbox.bole.to/3/xrzqvr/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/xrzqvr/boleto_pix","barcode":"https://sandbox.bole.to/3/xrzqvr/barcode","envelope":"https://sandbox.bole.to/3/xrzqvr/envelope","letter":"https://sandbox.bole.to/3/xrzqvr/letter","line":"https://sandbox.bole.to/3/xrzqvr/line","recibo":"https://sandbox.bole.to/3/xrzqvr/recibo","carne":"https://sandbox.bole.to/3/xrzqvr/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
430
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
431
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
432
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000092-8","processed_our_number_raw":"140000000000000928","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
433
+ 20000.100048 00000.009209 1 89330000012312","our_number":"000000000000092","customer_subscription_id":null,"installment_total":50,"installment_number":2,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/xrzqvr/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:14-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10491893300000123121233220000100040000000920","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/xrzqvr","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433984,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472537,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
434
+ de Título","created_at":"2022-02-22T14:41:15-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},{"id":472536,"expire_at":"2022-02-23","paid_at":null,"description":"","status":"opened","customer_person_name":"Nome
435
+ do Cliente","customer_cnpj_cpf":"125.812.717-28","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"bairro","customer_zipcode":"12312123","customer_address_number":"","customer_address_complement":"","customer_phone_number":null,"customer_email":null,"customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":"","customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
436
+ de Janeiro","paid_amount":0.0,"amount":123.12,"url":"https://sandbox.bole.to/3/vrnbjx","formats":{"default":"https://sandbox.bole.to/3/vrnbjx","png":"https://sandbox.bole.to/3/vrnbjx.png","pdf":"https://sandbox.bole.to/3/vrnbjx.pdf","boleto_hibrido":"https://sandbox.bole.to/3/vrnbjx/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/vrnbjx/boleto_pix","barcode":"https://sandbox.bole.to/3/vrnbjx/barcode","envelope":"https://sandbox.bole.to/3/vrnbjx/envelope","letter":"https://sandbox.bole.to/3/vrnbjx/letter","line":"https://sandbox.bole.to/3/vrnbjx/line","recibo":"https://sandbox.bole.to/3/vrnbjx/recibo","carne":"https://sandbox.bole.to/3/vrnbjx/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":659,"beneficiary_name":"Kivanio
437
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
438
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":"","guarantor_cnpj_cpf":null,"payment_place":"Pagável
439
+ em qualquer banco até a data de vencimento.","instructions":"","document_date":null,"document_type":"02","document_number":"","acceptance":"N","processed_our_number":"14000000000000091-0","processed_our_number_raw":"140000000000000910","bank_contract_slug":"caixa-rg","agency_number":"2342","agency_digit":"2","account_number":"0012432","account_digit":"1","extra1":"0123322","extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"10491.23324
440
+ 20000.100048 00000.009126 8 89050000012312","our_number":"000000000000091","customer_subscription_id":null,"installment_total":50,"installment_number":1,"installment_id":15266,"carne_url":"https://sandbox.bole.to/3/vrnbjx/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:41:13-03:00","updated_at":"2022-02-22T14:41:14-03:00","tags":[],"tag_list":null,"document_type_label":"DM","addons":null,"ignore_email":false,"ignore_sms":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"10498890500000123121233220000100040000000912","registered_at":null,"prevent_registration":false,"customer_id":43,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":"","custom_attachment_name":"","split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"issued_at":"2022-02-22T14:41:13-03:00","shorten_url":"https://sandbox.bole.to/3/vrnbjx","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433985,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472536,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
441
+ de Título","created_at":"2022-02-22T14:41:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]}]'
442
+ recorded_at: Tue, 22 Feb 2022 17:42:38 GMT
443
+ recorded_with: VCR 6.0.0