boletosimples 1.0.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -0
  3. data/README.md +11 -8
  4. data/lib/boletosimples/configuration.rb +10 -4
  5. data/lib/boletosimples/middlewares/debug.rb +30 -0
  6. data/lib/boletosimples/response_error.rb +2 -2
  7. data/lib/boletosimples/version.rb +1 -1
  8. data/lib/boletosimples.rb +1 -0
  9. data/spec/boletosimples/configuration_spec.rb +3 -3
  10. data/spec/boletosimples/resources/bank_billet_spec.rb +2 -2
  11. data/spec/boletosimples/resources/customer_spec.rb +9 -4
  12. data/spec/boletosimples/resources/customer_subscription_spec.rb +1 -1
  13. data/spec/boletosimples/resources/installment_spec.rb +1 -1
  14. data/spec/fixtures/vcr_cassettes/last_request/bank_billets.yml +386 -520
  15. data/spec/fixtures/vcr_cassettes/resources/bank_billet/all.yml +78 -522
  16. data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/success.yml +30 -12
  17. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_params.yml +32 -16
  18. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_root.yml +31 -15
  19. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/valid.yml +42 -28
  20. data/spec/fixtures/vcr_cassettes/resources/bank_billet/duplicate/success.yml +41 -27
  21. data/spec/fixtures/vcr_cassettes/resources/bank_billet/find.yml +46 -31
  22. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/all.yml +47 -103
  23. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_params.yml +31 -15
  24. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_root.yml +31 -15
  25. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/valid.yml +35 -19
  26. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/find.yml +35 -19
  27. data/spec/fixtures/vcr_cassettes/resources/bank_billet_discharge/all.yml +35 -41
  28. data/spec/fixtures/vcr_cassettes/resources/bank_billet_payment/all.yml +73 -72
  29. data/spec/fixtures/vcr_cassettes/resources/bank_billet_remittance/all.yml +39 -70
  30. data/spec/fixtures/vcr_cassettes/resources/customer/all.yml +111 -56
  31. data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_params.yml +35 -19
  32. data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_root.yml +35 -16
  33. data/spec/fixtures/vcr_cassettes/resources/customer/create/valid.yml +37 -21
  34. data/spec/fixtures/vcr_cassettes/resources/customer/find.yml +36 -20
  35. data/spec/fixtures/vcr_cassettes/resources/customer_import/all.yml +34 -18
  36. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_params.yml +31 -15
  37. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_root.yml +31 -15
  38. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/valid.yml +36 -20
  39. data/spec/fixtures/vcr_cassettes/resources/customer_import/find.yml +34 -18
  40. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/all.yml +35 -71
  41. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_params.yml +32 -16
  42. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_root.yml +31 -15
  43. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/valid.yml +35 -19
  44. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/find.yml +36 -20
  45. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/next_charge.yml +36 -20
  46. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/all.yml +34 -19
  47. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_params.yml +31 -15
  48. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_root.yml +31 -15
  49. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/valid.yml +36 -20
  50. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/find.yml +34 -18
  51. data/spec/fixtures/vcr_cassettes/resources/discharge/all.yml +37 -39
  52. data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_params.yml +31 -15
  53. data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_root.yml +31 -15
  54. data/spec/fixtures/vcr_cassettes/resources/discharge/create/valid.yml +37 -21
  55. data/spec/fixtures/vcr_cassettes/resources/discharge/find.yml +36 -18
  56. data/spec/fixtures/vcr_cassettes/resources/email_delivery/all.yml +1 -1
  57. data/spec/fixtures/vcr_cassettes/resources/event/all.yml +267 -432
  58. data/spec/fixtures/vcr_cassettes/resources/installment/all.yml +71 -375
  59. data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_params.yml +32 -16
  60. data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_root.yml +31 -15
  61. data/spec/fixtures/vcr_cassettes/resources/installment/create/valid.yml +35 -19
  62. data/spec/fixtures/vcr_cassettes/resources/installment/find.yml +59 -19
  63. data/spec/fixtures/vcr_cassettes/resources/remittance/all.yml +82 -81
  64. data/spec/fixtures/vcr_cassettes/resources/sns_delivery/all.yml +31 -15
  65. data/spec/fixtures/vcr_cassettes/resources/transaction/all.yml +72 -71
  66. data/spec/fixtures/vcr_cassettes/resources/web_hook/all.yml +33 -17
  67. data/spec/fixtures/vcr_cassettes/resources/webhook_delivery/all.yml +2657 -1206
  68. metadata +6 -186
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://sandbox.boletosimples.com.br/api/v1/bank_billets?page=2
5
+ uri: https://api-sandbox.kobana.com.br/v1/bank_billets?page=2
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -20,10 +20,14 @@ http_interactions:
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
29
+ Server:
30
+ - Cowboy
27
31
  X-Frame-Options:
28
32
  - DENY
29
33
  X-Xss-Protection:
@@ -36,542 +40,404 @@ http_interactions:
36
40
  - none
37
41
  Referrer-Policy:
38
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
39
51
  Link:
40
- - <https://sandbox.boletosimples.com.br/api/v1/bank_billets?page=1>; rel="first",
41
- <https://sandbox.boletosimples.com.br/api/v1/bank_billets?page=1>; rel="prev",
42
- <https://sandbox.boletosimples.com.br/api/v1/bank_billets?page=3>; rel="next"
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"
43
55
  Per-Page:
44
56
  - '50'
45
57
  Page:
46
58
  - '2'
47
- Content-Type:
48
- - application/json; charset=utf-8
49
59
  X-Ratelimit-Limit:
50
- - '60'
60
+ - '100'
51
61
  X-Ratelimit-Remaining:
52
- - '30'
62
+ - '44'
53
63
  Etag:
54
- - W/"12884552599b081bb0e24d8159225699"
64
+ - W/"2b5b4d40c2f34b5210f98def5efabf15"
55
65
  Cache-Control:
56
66
  - must-revalidate, private, max-age=0
57
67
  X-Request-Id:
58
- - 21655d63-26cb-4c03-b751-fdb6c883e1d6
68
+ - fdf7d097-ba5a-44fe-8640-e073d596b495
59
69
  X-Runtime:
60
- - '0.362844'
70
+ - '0.239694'
61
71
  Date:
62
- - Tue, 13 Apr 2021 17:37:53 GMT
72
+ - Tue, 22 Feb 2022 17:42:38 GMT
63
73
  X-Rack-Cache:
64
74
  - miss
65
75
  Strict-Transport-Security:
66
- - max-age=2629746
76
+ - max-age=31556952; includeSubDomains; preload
67
77
  Vary:
68
78
  - Origin,Accept-Encoding
69
- Transfer-Encoding:
70
- - chunked
79
+ X-Rack-Cors:
80
+ - miss; no-origin
71
81
  Via:
72
- - 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==
73
89
  body:
74
90
  encoding: UTF-8
75
- string: '[{"id":382542,"expire_at":"2021-07-02","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/zdbemx","customer_person_name":"Joao
76
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
77
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
78
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
79
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zdbemx","formats":{"default":"https://sandbox.bole.to/3/zdbemx","png":"https://sandbox.bole.to/3/zdbemx.png?r=1618335084","pdf":"https://sandbox.bole.to/3/zdbemx.pdf?r=1618335084","boleto_hibrido":"https://sandbox.bole.to/3/zdbemx/boleto_hibrido?r=1618335084","boleto_pix":"https://sandbox.bole.to/3/zdbemx/boleto_pix?r=1618335084","barcode":"https://sandbox.bole.to/3/zdbemx/barcode","envelope":"https://sandbox.bole.to/3/zdbemx/envelope","letter":"https://sandbox.bole.to/3/zdbemx/letter","line":"https://sandbox.bole.to/3/zdbemx/line","recibo":"https://sandbox.bole.to/3/zdbemx/recibo"},"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":3547,"beneficiary_name":"J
80
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
81
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
82
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
83
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000121-6","processed_our_number_raw":"109000001216","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
84
- 00012.162335 21231.200003 5 86690000112040","our_number":"00000121","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:30-03:00","updated_at":"2021-04-13T14:31:24-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34195866900001120401090000012162332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348390,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382542,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
85
- de Título","created_at":"2021-04-13T14:31:40-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382541,"expire_at":"2021-07-01","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/dronlv","customer_person_name":"Joao
86
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
87
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
88
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
89
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/dronlv","formats":{"default":"https://sandbox.bole.to/3/dronlv","png":"https://sandbox.bole.to/3/dronlv.png?r=1618335082","pdf":"https://sandbox.bole.to/3/dronlv.pdf?r=1618335082","boleto_hibrido":"https://sandbox.bole.to/3/dronlv/boleto_hibrido?r=1618335082","boleto_pix":"https://sandbox.bole.to/3/dronlv/boleto_pix?r=1618335082","barcode":"https://sandbox.bole.to/3/dronlv/barcode","envelope":"https://sandbox.bole.to/3/dronlv/envelope","letter":"https://sandbox.bole.to/3/dronlv/letter","line":"https://sandbox.bole.to/3/dronlv/line","recibo":"https://sandbox.bole.to/3/dronlv/recibo"},"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":3547,"beneficiary_name":"J
90
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
91
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
92
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
93
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000120-8","processed_our_number_raw":"109000001208","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
94
- 00012.082335 21231.200003 4 86680000112040","our_number":"00000120","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:30-03:00","updated_at":"2021-04-13T14:31:22-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34194866800001120401090000012082332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348389,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382541,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
95
- de Título","created_at":"2021-04-13T14:31:40-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382540,"expire_at":"2021-06-30","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/nkgvry","customer_person_name":"Joao
96
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
97
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
98
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
99
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/nkgvry","formats":{"default":"https://sandbox.bole.to/3/nkgvry","png":"https://sandbox.bole.to/3/nkgvry.png?r=1618335082","pdf":"https://sandbox.bole.to/3/nkgvry.pdf?r=1618335082","boleto_hibrido":"https://sandbox.bole.to/3/nkgvry/boleto_hibrido?r=1618335082","boleto_pix":"https://sandbox.bole.to/3/nkgvry/boleto_pix?r=1618335082","barcode":"https://sandbox.bole.to/3/nkgvry/barcode","envelope":"https://sandbox.bole.to/3/nkgvry/envelope","letter":"https://sandbox.bole.to/3/nkgvry/letter","line":"https://sandbox.bole.to/3/nkgvry/line","recibo":"https://sandbox.bole.to/3/nkgvry/recibo"},"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":3547,"beneficiary_name":"J
100
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
101
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
102
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
103
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000119-0","processed_our_number_raw":"109000001190","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
104
- 00011.902335 21231.200003 2 86670000112040","our_number":"00000119","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:30-03:00","updated_at":"2021-04-13T14:31:22-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34192866700001120401090000011902332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348388,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382540,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
105
- de Título","created_at":"2021-04-13T14:31:40-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382539,"expire_at":"2021-06-29","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/bryklo","customer_person_name":"Joao
106
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
107
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
108
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
109
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/bryklo","formats":{"default":"https://sandbox.bole.to/3/bryklo","png":"https://sandbox.bole.to/3/bryklo.png?r=1618335080","pdf":"https://sandbox.bole.to/3/bryklo.pdf?r=1618335080","boleto_hibrido":"https://sandbox.bole.to/3/bryklo/boleto_hibrido?r=1618335080","boleto_pix":"https://sandbox.bole.to/3/bryklo/boleto_pix?r=1618335080","barcode":"https://sandbox.bole.to/3/bryklo/barcode","envelope":"https://sandbox.bole.to/3/bryklo/envelope","letter":"https://sandbox.bole.to/3/bryklo/letter","line":"https://sandbox.bole.to/3/bryklo/line","recibo":"https://sandbox.bole.to/3/bryklo/recibo"},"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":3547,"beneficiary_name":"J
110
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
111
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
112
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
113
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000118-2","processed_our_number_raw":"109000001182","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
114
- 00011.822335 21231.200003 1 86660000112040","our_number":"00000118","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:30-03:00","updated_at":"2021-04-13T14:31:20-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191866600001120401090000011822332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348387,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382539,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
115
- de Título","created_at":"2021-04-13T14:31:39-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382538,"expire_at":"2021-06-28","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/wkvydk","customer_person_name":"Joao
116
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
117
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
118
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
119
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvydk","formats":{"default":"https://sandbox.bole.to/3/wkvydk","png":"https://sandbox.bole.to/3/wkvydk.png?r=1618335077","pdf":"https://sandbox.bole.to/3/wkvydk.pdf?r=1618335077","boleto_hibrido":"https://sandbox.bole.to/3/wkvydk/boleto_hibrido?r=1618335077","boleto_pix":"https://sandbox.bole.to/3/wkvydk/boleto_pix?r=1618335077","barcode":"https://sandbox.bole.to/3/wkvydk/barcode","envelope":"https://sandbox.bole.to/3/wkvydk/envelope","letter":"https://sandbox.bole.to/3/wkvydk/letter","line":"https://sandbox.bole.to/3/wkvydk/line","recibo":"https://sandbox.bole.to/3/wkvydk/recibo"},"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":3547,"beneficiary_name":"J
120
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
121
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
122
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
123
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000117-4","processed_our_number_raw":"109000001174","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
124
- 00011.742335 21231.200003 1 86650000112040","our_number":"00000117","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:30-03:00","updated_at":"2021-04-13T14:31:17-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191866500001120401090000011742332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348386,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382538,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
125
- de Título","created_at":"2021-04-13T14:31:32-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382537,"expire_at":"2021-06-28","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/xdxlzq","customer_person_name":"Joao
126
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
127
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
128
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
129
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/xdxlzq","formats":{"default":"https://sandbox.bole.to/3/xdxlzq","png":"https://sandbox.bole.to/3/xdxlzq.png?r=1618335076","pdf":"https://sandbox.bole.to/3/xdxlzq.pdf?r=1618335076","boleto_hibrido":"https://sandbox.bole.to/3/xdxlzq/boleto_hibrido?r=1618335076","boleto_pix":"https://sandbox.bole.to/3/xdxlzq/boleto_pix?r=1618335076","barcode":"https://sandbox.bole.to/3/xdxlzq/barcode","envelope":"https://sandbox.bole.to/3/xdxlzq/envelope","letter":"https://sandbox.bole.to/3/xdxlzq/letter","line":"https://sandbox.bole.to/3/xdxlzq/line","recibo":"https://sandbox.bole.to/3/xdxlzq/recibo"},"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":3547,"beneficiary_name":"J
130
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
131
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
132
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
133
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000116-6","processed_our_number_raw":"109000001166","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
134
- 00011.662335 21231.200003 5 86650000112040","our_number":"00000116","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:30-03:00","updated_at":"2021-04-13T14:31:16-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34195866500001120401090000011662332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348385,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382537,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
135
- de Título","created_at":"2021-04-13T14:31:31-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382536,"expire_at":"2021-06-28","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/vxomne","customer_person_name":"Joao
136
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
137
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
138
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
139
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxomne","formats":{"default":"https://sandbox.bole.to/3/vxomne","png":"https://sandbox.bole.to/3/vxomne.png?r=1618335076","pdf":"https://sandbox.bole.to/3/vxomne.pdf?r=1618335076","boleto_hibrido":"https://sandbox.bole.to/3/vxomne/boleto_hibrido?r=1618335076","boleto_pix":"https://sandbox.bole.to/3/vxomne/boleto_pix?r=1618335076","barcode":"https://sandbox.bole.to/3/vxomne/barcode","envelope":"https://sandbox.bole.to/3/vxomne/envelope","letter":"https://sandbox.bole.to/3/vxomne/letter","line":"https://sandbox.bole.to/3/vxomne/line","recibo":"https://sandbox.bole.to/3/vxomne/recibo"},"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":3547,"beneficiary_name":"J
140
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
141
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
142
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
143
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000115-8","processed_our_number_raw":"109000001158","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
144
- 00011.582335 21231.200003 1 86650000112040","our_number":"00000115","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:30-03:00","updated_at":"2021-04-13T14:31:16-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191866500001120401090000011582332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348384,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382536,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
145
- de Título","created_at":"2021-04-13T14:31:31-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382535,"expire_at":"2021-06-25","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ojkxmy","customer_person_name":"Joao
146
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
147
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
148
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
149
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkxmy","formats":{"default":"https://sandbox.bole.to/3/ojkxmy","png":"https://sandbox.bole.to/3/ojkxmy.png?r=1618335075","pdf":"https://sandbox.bole.to/3/ojkxmy.pdf?r=1618335075","boleto_hibrido":"https://sandbox.bole.to/3/ojkxmy/boleto_hibrido?r=1618335075","boleto_pix":"https://sandbox.bole.to/3/ojkxmy/boleto_pix?r=1618335075","barcode":"https://sandbox.bole.to/3/ojkxmy/barcode","envelope":"https://sandbox.bole.to/3/ojkxmy/envelope","letter":"https://sandbox.bole.to/3/ojkxmy/letter","line":"https://sandbox.bole.to/3/ojkxmy/line","recibo":"https://sandbox.bole.to/3/ojkxmy/recibo"},"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":3547,"beneficiary_name":"J
150
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
151
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
152
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
153
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000114-1","processed_our_number_raw":"109000001141","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
154
- 00011.412335 21231.200003 5 86620000112040","our_number":"00000114","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:30-03:00","updated_at":"2021-04-13T14:31:15-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34195866200001120401090000011412332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348383,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382535,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
155
- de Título","created_at":"2021-04-13T14:31:30-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382534,"expire_at":"2021-06-24","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ervdek","customer_person_name":"Joao
156
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
157
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
158
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
159
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ervdek","formats":{"default":"https://sandbox.bole.to/3/ervdek","png":"https://sandbox.bole.to/3/ervdek.png?r=1618335075","pdf":"https://sandbox.bole.to/3/ervdek.pdf?r=1618335075","boleto_hibrido":"https://sandbox.bole.to/3/ervdek/boleto_hibrido?r=1618335075","boleto_pix":"https://sandbox.bole.to/3/ervdek/boleto_pix?r=1618335075","barcode":"https://sandbox.bole.to/3/ervdek/barcode","envelope":"https://sandbox.bole.to/3/ervdek/envelope","letter":"https://sandbox.bole.to/3/ervdek/letter","line":"https://sandbox.bole.to/3/ervdek/line","recibo":"https://sandbox.bole.to/3/ervdek/recibo"},"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":3547,"beneficiary_name":"J
160
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
161
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
162
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
163
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000113-3","processed_our_number_raw":"109000001133","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
164
- 00011.332335 21231.200003 4 86610000112040","our_number":"00000113","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:29-03:00","updated_at":"2021-04-13T14:31:15-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34194866100001120401090000011332332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348382,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382534,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
165
- de Título","created_at":"2021-04-13T14:31:29-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382533,"expire_at":"2021-06-23","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzjxn","customer_person_name":"Joao
166
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
167
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
168
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
169
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzjxn","formats":{"default":"https://sandbox.bole.to/3/kyzjxn","png":"https://sandbox.bole.to/3/kyzjxn.png?r=1618335075","pdf":"https://sandbox.bole.to/3/kyzjxn.pdf?r=1618335075","boleto_hibrido":"https://sandbox.bole.to/3/kyzjxn/boleto_hibrido?r=1618335075","boleto_pix":"https://sandbox.bole.to/3/kyzjxn/boleto_pix?r=1618335075","barcode":"https://sandbox.bole.to/3/kyzjxn/barcode","envelope":"https://sandbox.bole.to/3/kyzjxn/envelope","letter":"https://sandbox.bole.to/3/kyzjxn/letter","line":"https://sandbox.bole.to/3/kyzjxn/line","recibo":"https://sandbox.bole.to/3/kyzjxn/recibo"},"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":3547,"beneficiary_name":"J
170
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
171
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
172
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
173
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000112-5","processed_our_number_raw":"109000001125","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
174
- 00011.252335 21231.200003 3 86600000112040","our_number":"00000112","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:29-03:00","updated_at":"2021-04-13T14:31:15-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34193866000001120401090000011252332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348381,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382533,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
175
- de Título","created_at":"2021-04-13T14:31:29-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382532,"expire_at":"2021-06-22","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/qzgbrx","customer_person_name":"Joao
176
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
177
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
178
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
179
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/qzgbrx","formats":{"default":"https://sandbox.bole.to/3/qzgbrx","png":"https://sandbox.bole.to/3/qzgbrx.png?r=1618335073","pdf":"https://sandbox.bole.to/3/qzgbrx.pdf?r=1618335073","boleto_hibrido":"https://sandbox.bole.to/3/qzgbrx/boleto_hibrido?r=1618335073","boleto_pix":"https://sandbox.bole.to/3/qzgbrx/boleto_pix?r=1618335073","barcode":"https://sandbox.bole.to/3/qzgbrx/barcode","envelope":"https://sandbox.bole.to/3/qzgbrx/envelope","letter":"https://sandbox.bole.to/3/qzgbrx/letter","line":"https://sandbox.bole.to/3/qzgbrx/line","recibo":"https://sandbox.bole.to/3/qzgbrx/recibo"},"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":3547,"beneficiary_name":"J
180
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
181
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
182
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
183
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000111-7","processed_our_number_raw":"109000001117","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
184
- 00011.172335 21231.200003 2 86590000112040","our_number":"00000111","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:29-03:00","updated_at":"2021-04-13T14:31:13-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34192865900001120401090000011172332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348380,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382532,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
185
- de Título","created_at":"2021-04-13T14:31:28-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382531,"expire_at":"2021-06-21","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/gqwrkr","customer_person_name":"Joao
186
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
187
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
188
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
189
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/gqwrkr","formats":{"default":"https://sandbox.bole.to/3/gqwrkr","png":"https://sandbox.bole.to/3/gqwrkr.png?r=1618335073","pdf":"https://sandbox.bole.to/3/gqwrkr.pdf?r=1618335073","boleto_hibrido":"https://sandbox.bole.to/3/gqwrkr/boleto_hibrido?r=1618335073","boleto_pix":"https://sandbox.bole.to/3/gqwrkr/boleto_pix?r=1618335073","barcode":"https://sandbox.bole.to/3/gqwrkr/barcode","envelope":"https://sandbox.bole.to/3/gqwrkr/envelope","letter":"https://sandbox.bole.to/3/gqwrkr/letter","line":"https://sandbox.bole.to/3/gqwrkr/line","recibo":"https://sandbox.bole.to/3/gqwrkr/recibo"},"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":3547,"beneficiary_name":"J
190
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
191
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
192
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
193
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000110-9","processed_our_number_raw":"109000001109","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
194
- 00011.092335 21231.200003 1 86580000112040","our_number":"00000110","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:29-03:00","updated_at":"2021-04-13T14:31:13-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191865800001120401090000011092332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348379,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382531,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
195
- de Título","created_at":"2021-04-13T14:31:28-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382530,"expire_at":"2021-06-21","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/jzdlvx","customer_person_name":"Joao
196
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
197
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
198
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
199
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/jzdlvx","formats":{"default":"https://sandbox.bole.to/3/jzdlvx","png":"https://sandbox.bole.to/3/jzdlvx.png?r=1618335072","pdf":"https://sandbox.bole.to/3/jzdlvx.pdf?r=1618335072","boleto_hibrido":"https://sandbox.bole.to/3/jzdlvx/boleto_hibrido?r=1618335072","boleto_pix":"https://sandbox.bole.to/3/jzdlvx/boleto_pix?r=1618335072","barcode":"https://sandbox.bole.to/3/jzdlvx/barcode","envelope":"https://sandbox.bole.to/3/jzdlvx/envelope","letter":"https://sandbox.bole.to/3/jzdlvx/letter","line":"https://sandbox.bole.to/3/jzdlvx/line","recibo":"https://sandbox.bole.to/3/jzdlvx/recibo"},"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":3547,"beneficiary_name":"J
200
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
201
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
202
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
203
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000109-1","processed_our_number_raw":"109000001091","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
204
- 00010.912335 21231.200003 5 86580000112040","our_number":"00000109","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:29-03:00","updated_at":"2021-04-13T14:31:12-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34195865800001120401090000010912332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348378,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382530,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
205
- de Título","created_at":"2021-04-13T14:31:28-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382529,"expire_at":"2021-06-21","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/lkgewn","customer_person_name":"Joao
206
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
207
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
208
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
209
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgewn","formats":{"default":"https://sandbox.bole.to/3/lkgewn","png":"https://sandbox.bole.to/3/lkgewn.png?r=1618335070","pdf":"https://sandbox.bole.to/3/lkgewn.pdf?r=1618335070","boleto_hibrido":"https://sandbox.bole.to/3/lkgewn/boleto_hibrido?r=1618335070","boleto_pix":"https://sandbox.bole.to/3/lkgewn/boleto_pix?r=1618335070","barcode":"https://sandbox.bole.to/3/lkgewn/barcode","envelope":"https://sandbox.bole.to/3/lkgewn/envelope","letter":"https://sandbox.bole.to/3/lkgewn/letter","line":"https://sandbox.bole.to/3/lkgewn/line","recibo":"https://sandbox.bole.to/3/lkgewn/recibo"},"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":3547,"beneficiary_name":"J
210
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
211
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
212
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
213
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000108-3","processed_our_number_raw":"109000001083","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
214
- 00010.832335 21231.200003 1 86580000112040","our_number":"00000108","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:29-03:00","updated_at":"2021-04-13T14:31:10-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191865800001120401090000010832332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348377,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382529,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
215
- de Título","created_at":"2021-04-13T14:31:28-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382528,"expire_at":"2021-06-18","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ymwjlr","customer_person_name":"Joao
216
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
217
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
218
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
219
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwjlr","formats":{"default":"https://sandbox.bole.to/3/ymwjlr","png":"https://sandbox.bole.to/3/ymwjlr.png?r=1618335070","pdf":"https://sandbox.bole.to/3/ymwjlr.pdf?r=1618335070","boleto_hibrido":"https://sandbox.bole.to/3/ymwjlr/boleto_hibrido?r=1618335070","boleto_pix":"https://sandbox.bole.to/3/ymwjlr/boleto_pix?r=1618335070","barcode":"https://sandbox.bole.to/3/ymwjlr/barcode","envelope":"https://sandbox.bole.to/3/ymwjlr/envelope","letter":"https://sandbox.bole.to/3/ymwjlr/letter","line":"https://sandbox.bole.to/3/ymwjlr/line","recibo":"https://sandbox.bole.to/3/ymwjlr/recibo"},"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":3547,"beneficiary_name":"J
220
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
221
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
222
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
223
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000107-5","processed_our_number_raw":"109000001075","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
224
- 00010.752335 21231.200003 8 86550000112040","our_number":"00000107","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:29-03:00","updated_at":"2021-04-13T14:31:10-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34198865500001120401090000010752332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348376,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382528,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
225
- de Título","created_at":"2021-04-13T14:31:28-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382527,"expire_at":"2021-06-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/mkqobb","customer_person_name":"Joao
226
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
227
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
228
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
229
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mkqobb","formats":{"default":"https://sandbox.bole.to/3/mkqobb","png":"https://sandbox.bole.to/3/mkqobb.png?r=1618335070","pdf":"https://sandbox.bole.to/3/mkqobb.pdf?r=1618335070","boleto_hibrido":"https://sandbox.bole.to/3/mkqobb/boleto_hibrido?r=1618335070","boleto_pix":"https://sandbox.bole.to/3/mkqobb/boleto_pix?r=1618335070","barcode":"https://sandbox.bole.to/3/mkqobb/barcode","envelope":"https://sandbox.bole.to/3/mkqobb/envelope","letter":"https://sandbox.bole.to/3/mkqobb/letter","line":"https://sandbox.bole.to/3/mkqobb/line","recibo":"https://sandbox.bole.to/3/mkqobb/recibo"},"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":3547,"beneficiary_name":"J
230
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
231
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
232
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
233
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000106-7","processed_our_number_raw":"109000001067","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
234
- 00010.672335 21231.200003 7 86540000112040","our_number":"00000106","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:29-03:00","updated_at":"2021-04-13T14:31:10-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34197865400001120401090000010672332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348375,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382527,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
235
- de Título","created_at":"2021-04-13T14:31:27-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382526,"expire_at":"2021-06-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/rzgnlg","customer_person_name":"Joao
236
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
237
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
238
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
239
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rzgnlg","formats":{"default":"https://sandbox.bole.to/3/rzgnlg","png":"https://sandbox.bole.to/3/rzgnlg.png?r=1618335069","pdf":"https://sandbox.bole.to/3/rzgnlg.pdf?r=1618335069","boleto_hibrido":"https://sandbox.bole.to/3/rzgnlg/boleto_hibrido?r=1618335069","boleto_pix":"https://sandbox.bole.to/3/rzgnlg/boleto_pix?r=1618335069","barcode":"https://sandbox.bole.to/3/rzgnlg/barcode","envelope":"https://sandbox.bole.to/3/rzgnlg/envelope","letter":"https://sandbox.bole.to/3/rzgnlg/letter","line":"https://sandbox.bole.to/3/rzgnlg/line","recibo":"https://sandbox.bole.to/3/rzgnlg/recibo"},"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":3547,"beneficiary_name":"J
240
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
241
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
242
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
243
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000105-9","processed_our_number_raw":"109000001059","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
244
- 00010.592335 21231.200003 6 86530000112040","our_number":"00000105","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:29-03:00","updated_at":"2021-04-13T14:31:09-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34196865300001120401090000010592332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348374,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382526,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
245
- de Título","created_at":"2021-04-13T14:31:24-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382525,"expire_at":"2021-06-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/zdbeqx","customer_person_name":"Joao
246
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
247
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
248
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
249
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zdbeqx","formats":{"default":"https://sandbox.bole.to/3/zdbeqx","png":"https://sandbox.bole.to/3/zdbeqx.png?r=1618335068","pdf":"https://sandbox.bole.to/3/zdbeqx.pdf?r=1618335068","boleto_hibrido":"https://sandbox.bole.to/3/zdbeqx/boleto_hibrido?r=1618335068","boleto_pix":"https://sandbox.bole.to/3/zdbeqx/boleto_pix?r=1618335068","barcode":"https://sandbox.bole.to/3/zdbeqx/barcode","envelope":"https://sandbox.bole.to/3/zdbeqx/envelope","letter":"https://sandbox.bole.to/3/zdbeqx/letter","line":"https://sandbox.bole.to/3/zdbeqx/line","recibo":"https://sandbox.bole.to/3/zdbeqx/recibo"},"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":3547,"beneficiary_name":"J
250
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
251
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
252
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
253
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000104-2","processed_our_number_raw":"109000001042","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
254
- 00010.422335 21231.200003 2 86520000112040","our_number":"00000104","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:28-03:00","updated_at":"2021-04-13T14:31:08-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34192865200001120401090000010422332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348373,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382525,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
255
- de Título","created_at":"2021-04-13T14:31:24-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382524,"expire_at":"2021-06-14","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/drongv","customer_person_name":"Joao
256
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
257
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
258
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
259
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/drongv","formats":{"default":"https://sandbox.bole.to/3/drongv","png":"https://sandbox.bole.to/3/drongv.png?r=1618335066","pdf":"https://sandbox.bole.to/3/drongv.pdf?r=1618335066","boleto_hibrido":"https://sandbox.bole.to/3/drongv/boleto_hibrido?r=1618335066","boleto_pix":"https://sandbox.bole.to/3/drongv/boleto_pix?r=1618335066","barcode":"https://sandbox.bole.to/3/drongv/barcode","envelope":"https://sandbox.bole.to/3/drongv/envelope","letter":"https://sandbox.bole.to/3/drongv/letter","line":"https://sandbox.bole.to/3/drongv/line","recibo":"https://sandbox.bole.to/3/drongv/recibo"},"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":3547,"beneficiary_name":"J
260
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
261
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
262
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
263
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000103-4","processed_our_number_raw":"109000001034","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
264
- 00010.342335 21231.200003 1 86510000112040","our_number":"00000103","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:28-03:00","updated_at":"2021-04-13T14:31:06-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191865100001120401090000010342332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348372,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382524,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
265
- de Título","created_at":"2021-04-13T14:31:22-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382523,"expire_at":"2021-06-14","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/nkgvny","customer_person_name":"Joao
266
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
267
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
268
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
269
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/nkgvny","formats":{"default":"https://sandbox.bole.to/3/nkgvny","png":"https://sandbox.bole.to/3/nkgvny.png?r=1618335065","pdf":"https://sandbox.bole.to/3/nkgvny.pdf?r=1618335065","boleto_hibrido":"https://sandbox.bole.to/3/nkgvny/boleto_hibrido?r=1618335065","boleto_pix":"https://sandbox.bole.to/3/nkgvny/boleto_pix?r=1618335065","barcode":"https://sandbox.bole.to/3/nkgvny/barcode","envelope":"https://sandbox.bole.to/3/nkgvny/envelope","letter":"https://sandbox.bole.to/3/nkgvny/letter","line":"https://sandbox.bole.to/3/nkgvny/line","recibo":"https://sandbox.bole.to/3/nkgvny/recibo"},"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":3547,"beneficiary_name":"J
270
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
271
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
272
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
273
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000102-6","processed_our_number_raw":"109000001026","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
274
- 00010.262335 21231.200003 6 86510000112040","our_number":"00000102","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:28-03:00","updated_at":"2021-04-13T14:31:05-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34196865100001120401090000010262332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348371,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382523,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
275
- de Título","created_at":"2021-04-13T14:31:21-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382522,"expire_at":"2021-06-14","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/brykgo","customer_person_name":"Joao
276
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
277
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
278
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
279
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/brykgo","formats":{"default":"https://sandbox.bole.to/3/brykgo","png":"https://sandbox.bole.to/3/brykgo.png?r=1618335064","pdf":"https://sandbox.bole.to/3/brykgo.pdf?r=1618335064","boleto_hibrido":"https://sandbox.bole.to/3/brykgo/boleto_hibrido?r=1618335064","boleto_pix":"https://sandbox.bole.to/3/brykgo/boleto_pix?r=1618335064","barcode":"https://sandbox.bole.to/3/brykgo/barcode","envelope":"https://sandbox.bole.to/3/brykgo/envelope","letter":"https://sandbox.bole.to/3/brykgo/letter","line":"https://sandbox.bole.to/3/brykgo/line","recibo":"https://sandbox.bole.to/3/brykgo/recibo"},"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":3547,"beneficiary_name":"J
280
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
281
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
282
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
283
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000101-8","processed_our_number_raw":"109000001018","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
284
- 00010.182335 21231.200003 1 86510000112040","our_number":"00000101","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:28-03:00","updated_at":"2021-04-13T14:31:04-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191865100001120401090000010182332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348370,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382522,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
285
- de Título","created_at":"2021-04-13T14:31:21-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382521,"expire_at":"2021-06-11","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/wkvylk","customer_person_name":"Joao
286
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
287
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
288
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
289
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvylk","formats":{"default":"https://sandbox.bole.to/3/wkvylk","png":"https://sandbox.bole.to/3/wkvylk.png?r=1618335061","pdf":"https://sandbox.bole.to/3/wkvylk.pdf?r=1618335061","boleto_hibrido":"https://sandbox.bole.to/3/wkvylk/boleto_hibrido?r=1618335061","boleto_pix":"https://sandbox.bole.to/3/wkvylk/boleto_pix?r=1618335061","barcode":"https://sandbox.bole.to/3/wkvylk/barcode","envelope":"https://sandbox.bole.to/3/wkvylk/envelope","letter":"https://sandbox.bole.to/3/wkvylk/letter","line":"https://sandbox.bole.to/3/wkvylk/line","recibo":"https://sandbox.bole.to/3/wkvylk/recibo"},"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":3547,"beneficiary_name":"J
290
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
291
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
292
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
293
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000100-0","processed_our_number_raw":"109000001000","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
294
- 00010.002335 21231.200003 2 86480000112040","our_number":"00000100","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:28-03:00","updated_at":"2021-04-13T14:31:01-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34192864800001120401090000010002332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348369,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382521,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
295
- de Título","created_at":"2021-04-13T14:31:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382520,"expire_at":"2021-06-10","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/xdxlgq","customer_person_name":"Joao
296
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
297
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
298
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
299
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/xdxlgq","formats":{"default":"https://sandbox.bole.to/3/xdxlgq","png":"https://sandbox.bole.to/3/xdxlgq.png?r=1618335061","pdf":"https://sandbox.bole.to/3/xdxlgq.pdf?r=1618335061","boleto_hibrido":"https://sandbox.bole.to/3/xdxlgq/boleto_hibrido?r=1618335061","boleto_pix":"https://sandbox.bole.to/3/xdxlgq/boleto_pix?r=1618335061","barcode":"https://sandbox.bole.to/3/xdxlgq/barcode","envelope":"https://sandbox.bole.to/3/xdxlgq/envelope","letter":"https://sandbox.bole.to/3/xdxlgq/letter","line":"https://sandbox.bole.to/3/xdxlgq/line","recibo":"https://sandbox.bole.to/3/xdxlgq/recibo"},"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":3547,"beneficiary_name":"J
300
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
301
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
302
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
303
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000099-4","processed_our_number_raw":"109000000994","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
304
- 00009.942335 21231.200003 4 86470000112040","our_number":"00000099","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:28-03:00","updated_at":"2021-04-13T14:31:01-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34194864700001120401090000009942332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348368,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382520,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
305
- de Título","created_at":"2021-04-13T14:31:17-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382519,"expire_at":"2021-06-09","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/vxomke","customer_person_name":"Joao
306
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
307
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
308
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
309
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxomke","formats":{"default":"https://sandbox.bole.to/3/vxomke","png":"https://sandbox.bole.to/3/vxomke.png?r=1618335059","pdf":"https://sandbox.bole.to/3/vxomke.pdf?r=1618335059","boleto_hibrido":"https://sandbox.bole.to/3/vxomke/boleto_hibrido?r=1618335059","boleto_pix":"https://sandbox.bole.to/3/vxomke/boleto_pix?r=1618335059","barcode":"https://sandbox.bole.to/3/vxomke/barcode","envelope":"https://sandbox.bole.to/3/vxomke/envelope","letter":"https://sandbox.bole.to/3/vxomke/letter","line":"https://sandbox.bole.to/3/vxomke/line","recibo":"https://sandbox.bole.to/3/vxomke/recibo"},"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":3547,"beneficiary_name":"J
310
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
311
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
312
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
313
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000098-6","processed_our_number_raw":"109000000986","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
314
- 00009.862335 21231.200003 3 86460000112040","our_number":"00000098","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:28-03:00","updated_at":"2021-04-13T14:30:59-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34193864600001120401090000009862332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348367,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382519,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
315
- de Título","created_at":"2021-04-13T14:31:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382518,"expire_at":"2021-06-08","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ojkxdy","customer_person_name":"Joao
316
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
317
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
318
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
319
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkxdy","formats":{"default":"https://sandbox.bole.to/3/ojkxdy","png":"https://sandbox.bole.to/3/ojkxdy.png?r=1618335059","pdf":"https://sandbox.bole.to/3/ojkxdy.pdf?r=1618335059","boleto_hibrido":"https://sandbox.bole.to/3/ojkxdy/boleto_hibrido?r=1618335059","boleto_pix":"https://sandbox.bole.to/3/ojkxdy/boleto_pix?r=1618335059","barcode":"https://sandbox.bole.to/3/ojkxdy/barcode","envelope":"https://sandbox.bole.to/3/ojkxdy/envelope","letter":"https://sandbox.bole.to/3/ojkxdy/letter","line":"https://sandbox.bole.to/3/ojkxdy/line","recibo":"https://sandbox.bole.to/3/ojkxdy/recibo"},"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":3547,"beneficiary_name":"J
320
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
321
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
322
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
323
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000097-8","processed_our_number_raw":"109000000978","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
324
- 00009.782335 21231.200003 2 86450000112040","our_number":"00000097","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:28-03:00","updated_at":"2021-04-13T14:30:59-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34192864500001120401090000009782332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348366,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382518,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
325
- de Título","created_at":"2021-04-13T14:31:15-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382517,"expire_at":"2021-06-07","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ervdgk","customer_person_name":"Joao
326
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
327
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
328
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
329
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ervdgk","formats":{"default":"https://sandbox.bole.to/3/ervdgk","png":"https://sandbox.bole.to/3/ervdgk.png?r=1618335059","pdf":"https://sandbox.bole.to/3/ervdgk.pdf?r=1618335059","boleto_hibrido":"https://sandbox.bole.to/3/ervdgk/boleto_hibrido?r=1618335059","boleto_pix":"https://sandbox.bole.to/3/ervdgk/boleto_pix?r=1618335059","barcode":"https://sandbox.bole.to/3/ervdgk/barcode","envelope":"https://sandbox.bole.to/3/ervdgk/envelope","letter":"https://sandbox.bole.to/3/ervdgk/letter","line":"https://sandbox.bole.to/3/ervdgk/line","recibo":"https://sandbox.bole.to/3/ervdgk/recibo"},"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":3547,"beneficiary_name":"J
330
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
331
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
332
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
333
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000096-0","processed_our_number_raw":"109000000960","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
334
- 00009.602335 21231.200003 5 86440000112040","our_number":"00000096","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:59-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34195864400001120401090000009602332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348365,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382517,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
335
- de Título","created_at":"2021-04-13T14:31:13-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382516,"expire_at":"2021-06-07","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzjzn","customer_person_name":"Joao
336
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
337
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
338
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
339
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzjzn","formats":{"default":"https://sandbox.bole.to/3/kyzjzn","png":"https://sandbox.bole.to/3/kyzjzn.png?r=1618335058","pdf":"https://sandbox.bole.to/3/kyzjzn.pdf?r=1618335058","boleto_hibrido":"https://sandbox.bole.to/3/kyzjzn/boleto_hibrido?r=1618335058","boleto_pix":"https://sandbox.bole.to/3/kyzjzn/boleto_pix?r=1618335058","barcode":"https://sandbox.bole.to/3/kyzjzn/barcode","envelope":"https://sandbox.bole.to/3/kyzjzn/envelope","letter":"https://sandbox.bole.to/3/kyzjzn/letter","line":"https://sandbox.bole.to/3/kyzjzn/line","recibo":"https://sandbox.bole.to/3/kyzjzn/recibo"},"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":3547,"beneficiary_name":"J
340
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
341
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
342
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
343
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000095-2","processed_our_number_raw":"109000000952","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
344
- 00009.522335 21231.200003 1 86440000112040","our_number":"00000095","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:58-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191864400001120401090000009522332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348364,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382516,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
345
- de Título","created_at":"2021-04-13T14:31:12-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382515,"expire_at":"2021-06-07","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/qzgbgx","customer_person_name":"Joao
346
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
347
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
348
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
349
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/qzgbgx","formats":{"default":"https://sandbox.bole.to/3/qzgbgx","png":"https://sandbox.bole.to/3/qzgbgx.png?r=1618335056","pdf":"https://sandbox.bole.to/3/qzgbgx.pdf?r=1618335056","boleto_hibrido":"https://sandbox.bole.to/3/qzgbgx/boleto_hibrido?r=1618335056","boleto_pix":"https://sandbox.bole.to/3/qzgbgx/boleto_pix?r=1618335056","barcode":"https://sandbox.bole.to/3/qzgbgx/barcode","envelope":"https://sandbox.bole.to/3/qzgbgx/envelope","letter":"https://sandbox.bole.to/3/qzgbgx/letter","line":"https://sandbox.bole.to/3/qzgbgx/line","recibo":"https://sandbox.bole.to/3/qzgbgx/recibo"},"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":3547,"beneficiary_name":"J
350
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
351
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
352
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
353
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000094-5","processed_our_number_raw":"109000000945","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
354
- 00009.452335 21231.200003 8 86440000112040","our_number":"00000094","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:56-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34198864400001120401090000009452332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348363,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382515,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
355
- de Título","created_at":"2021-04-13T14:31:10-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382514,"expire_at":"2021-06-04","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/gqwrwr","customer_person_name":"Joao
356
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
357
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
358
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
359
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/gqwrwr","formats":{"default":"https://sandbox.bole.to/3/gqwrwr","png":"https://sandbox.bole.to/3/gqwrwr.png?r=1618335055","pdf":"https://sandbox.bole.to/3/gqwrwr.pdf?r=1618335055","boleto_hibrido":"https://sandbox.bole.to/3/gqwrwr/boleto_hibrido?r=1618335055","boleto_pix":"https://sandbox.bole.to/3/gqwrwr/boleto_pix?r=1618335055","barcode":"https://sandbox.bole.to/3/gqwrwr/barcode","envelope":"https://sandbox.bole.to/3/gqwrwr/envelope","letter":"https://sandbox.bole.to/3/gqwrwr/letter","line":"https://sandbox.bole.to/3/gqwrwr/line","recibo":"https://sandbox.bole.to/3/gqwrwr/recibo"},"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":3547,"beneficiary_name":"J
360
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
361
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
362
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
363
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000093-7","processed_our_number_raw":"109000000937","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
364
- 00009.372335 21231.200003 6 86410000112040","our_number":"00000093","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:55-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34196864100001120401090000009372332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348362,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382514,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
365
- de Título","created_at":"2021-04-13T14:31:10-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382513,"expire_at":"2021-06-04","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/jzdldx","customer_person_name":"Joao
366
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
367
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
368
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
369
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/jzdldx","formats":{"default":"https://sandbox.bole.to/3/jzdldx","png":"https://sandbox.bole.to/3/jzdldx.png?r=1618335055","pdf":"https://sandbox.bole.to/3/jzdldx.pdf?r=1618335055","boleto_hibrido":"https://sandbox.bole.to/3/jzdldx/boleto_hibrido?r=1618335055","boleto_pix":"https://sandbox.bole.to/3/jzdldx/boleto_pix?r=1618335055","barcode":"https://sandbox.bole.to/3/jzdldx/barcode","envelope":"https://sandbox.bole.to/3/jzdldx/envelope","letter":"https://sandbox.bole.to/3/jzdldx/letter","line":"https://sandbox.bole.to/3/jzdldx/line","recibo":"https://sandbox.bole.to/3/jzdldx/recibo"},"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":3547,"beneficiary_name":"J
370
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
371
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
372
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
373
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000092-9","processed_our_number_raw":"109000000929","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
374
- 00009.292335 21231.200003 1 86410000112040","our_number":"00000092","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:55-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191864100001120401090000009292332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348361,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382513,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
375
- de Título","created_at":"2021-04-13T14:31:08-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382512,"expire_at":"2021-06-02","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/lkgegn","customer_person_name":"Joao
376
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
377
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
378
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
379
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgegn","formats":{"default":"https://sandbox.bole.to/3/lkgegn","png":"https://sandbox.bole.to/3/lkgegn.png?r=1618335050","pdf":"https://sandbox.bole.to/3/lkgegn.pdf?r=1618335050","boleto_hibrido":"https://sandbox.bole.to/3/lkgegn/boleto_hibrido?r=1618335050","boleto_pix":"https://sandbox.bole.to/3/lkgegn/boleto_pix?r=1618335050","barcode":"https://sandbox.bole.to/3/lkgegn/barcode","envelope":"https://sandbox.bole.to/3/lkgegn/envelope","letter":"https://sandbox.bole.to/3/lkgegn/letter","line":"https://sandbox.bole.to/3/lkgegn/line","recibo":"https://sandbox.bole.to/3/lkgegn/recibo"},"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":3547,"beneficiary_name":"J
380
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
381
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
382
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
383
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000091-1","processed_our_number_raw":"109000000911","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
384
- 00009.112335 21231.200003 8 86390000112040","our_number":"00000091","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:50-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34198863900001120401090000009112332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348360,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382512,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
385
- de Título","created_at":"2021-04-13T14:31:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382511,"expire_at":"2021-06-01","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ymwjwr","customer_person_name":"Joao
386
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
387
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
388
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
389
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwjwr","formats":{"default":"https://sandbox.bole.to/3/ymwjwr","png":"https://sandbox.bole.to/3/ymwjwr.png?r=1618335048","pdf":"https://sandbox.bole.to/3/ymwjwr.pdf?r=1618335048","boleto_hibrido":"https://sandbox.bole.to/3/ymwjwr/boleto_hibrido?r=1618335048","boleto_pix":"https://sandbox.bole.to/3/ymwjwr/boleto_pix?r=1618335048","barcode":"https://sandbox.bole.to/3/ymwjwr/barcode","envelope":"https://sandbox.bole.to/3/ymwjwr/envelope","letter":"https://sandbox.bole.to/3/ymwjwr/letter","line":"https://sandbox.bole.to/3/ymwjwr/line","recibo":"https://sandbox.bole.to/3/ymwjwr/recibo"},"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":3547,"beneficiary_name":"J
390
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
391
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
392
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
393
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000090-3","processed_our_number_raw":"109000000903","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
394
- 00009.032335 21231.200003 7 86380000112040","our_number":"00000090","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:48-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34197863800001120401090000009032332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348359,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382511,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
395
- de Título","created_at":"2021-04-13T14:30:59-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382510,"expire_at":"2021-05-31","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/mkqoqb","customer_person_name":"Joao
396
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
397
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
398
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
399
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mkqoqb","formats":{"default":"https://sandbox.bole.to/3/mkqoqb","png":"https://sandbox.bole.to/3/mkqoqb.png?r=1618335047","pdf":"https://sandbox.bole.to/3/mkqoqb.pdf?r=1618335047","boleto_hibrido":"https://sandbox.bole.to/3/mkqoqb/boleto_hibrido?r=1618335047","boleto_pix":"https://sandbox.bole.to/3/mkqoqb/boleto_pix?r=1618335047","barcode":"https://sandbox.bole.to/3/mkqoqb/barcode","envelope":"https://sandbox.bole.to/3/mkqoqb/envelope","letter":"https://sandbox.bole.to/3/mkqoqb/letter","line":"https://sandbox.bole.to/3/mkqoqb/line","recibo":"https://sandbox.bole.to/3/mkqoqb/recibo"},"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":3547,"beneficiary_name":"J
400
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
401
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
402
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
403
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000089-5","processed_our_number_raw":"109000000895","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
404
- 00008.952335 21231.200003 1 86370000112040","our_number":"00000089","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:47-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191863700001120401090000008952332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348358,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382510,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
405
- de Título","created_at":"2021-04-13T14:30:59-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382509,"expire_at":"2021-05-31","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/rzgngg","customer_person_name":"Joao
406
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
407
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
408
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
409
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rzgngg","formats":{"default":"https://sandbox.bole.to/3/rzgngg","png":"https://sandbox.bole.to/3/rzgngg.png?r=1618335046","pdf":"https://sandbox.bole.to/3/rzgngg.pdf?r=1618335046","boleto_hibrido":"https://sandbox.bole.to/3/rzgngg/boleto_hibrido?r=1618335046","boleto_pix":"https://sandbox.bole.to/3/rzgngg/boleto_pix?r=1618335046","barcode":"https://sandbox.bole.to/3/rzgngg/barcode","envelope":"https://sandbox.bole.to/3/rzgngg/envelope","letter":"https://sandbox.bole.to/3/rzgngg/letter","line":"https://sandbox.bole.to/3/rzgngg/line","recibo":"https://sandbox.bole.to/3/rzgngg/recibo"},"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":3547,"beneficiary_name":"J
410
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
411
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
412
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
413
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000088-7","processed_our_number_raw":"109000000887","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
414
- 00008.872335 21231.200003 6 86370000112040","our_number":"00000088","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:46-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34196863700001120401090000008872332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348357,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382509,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
415
- de Título","created_at":"2021-04-13T14:30:58-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382508,"expire_at":"2021-05-31","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/zdbebx","customer_person_name":"Joao
416
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
417
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
418
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
419
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zdbebx","formats":{"default":"https://sandbox.bole.to/3/zdbebx","png":"https://sandbox.bole.to/3/zdbebx.png?r=1618335045","pdf":"https://sandbox.bole.to/3/zdbebx.pdf?r=1618335045","boleto_hibrido":"https://sandbox.bole.to/3/zdbebx/boleto_hibrido?r=1618335045","boleto_pix":"https://sandbox.bole.to/3/zdbebx/boleto_pix?r=1618335045","barcode":"https://sandbox.bole.to/3/zdbebx/barcode","envelope":"https://sandbox.bole.to/3/zdbebx/envelope","letter":"https://sandbox.bole.to/3/zdbebx/letter","line":"https://sandbox.bole.to/3/zdbebx/line","recibo":"https://sandbox.bole.to/3/zdbebx/recibo"},"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":3547,"beneficiary_name":"J
420
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
421
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
422
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
423
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000087-9","processed_our_number_raw":"109000000879","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
424
- 00008.792335 21231.200003 1 86370000112040","our_number":"00000087","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:45-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191863700001120401090000008792332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348356,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382508,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
425
- de Título","created_at":"2021-04-13T14:30:57-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382507,"expire_at":"2021-05-28","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/dronov","customer_person_name":"Joao
426
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
427
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
428
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
429
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/dronov","formats":{"default":"https://sandbox.bole.to/3/dronov","png":"https://sandbox.bole.to/3/dronov.png?r=1618335045","pdf":"https://sandbox.bole.to/3/dronov.pdf?r=1618335045","boleto_hibrido":"https://sandbox.bole.to/3/dronov/boleto_hibrido?r=1618335045","boleto_pix":"https://sandbox.bole.to/3/dronov/boleto_pix?r=1618335045","barcode":"https://sandbox.bole.to/3/dronov/barcode","envelope":"https://sandbox.bole.to/3/dronov/envelope","letter":"https://sandbox.bole.to/3/dronov/letter","line":"https://sandbox.bole.to/3/dronov/line","recibo":"https://sandbox.bole.to/3/dronov/recibo"},"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":3547,"beneficiary_name":"J
430
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
431
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
432
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
433
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000086-1","processed_our_number_raw":"109000000861","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
434
- 00008.612335 21231.200003 2 86340000112040","our_number":"00000086","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:27-03:00","updated_at":"2021-04-13T14:30:45-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34192863400001120401090000008612332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348355,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382507,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
435
- de Título","created_at":"2021-04-13T14:30:57-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382506,"expire_at":"2021-05-27","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/nkgvgy","customer_person_name":"Joao
436
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
437
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
438
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
439
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/nkgvgy","formats":{"default":"https://sandbox.bole.to/3/nkgvgy","png":"https://sandbox.bole.to/3/nkgvgy.png?r=1618335045","pdf":"https://sandbox.bole.to/3/nkgvgy.pdf?r=1618335045","boleto_hibrido":"https://sandbox.bole.to/3/nkgvgy/boleto_hibrido?r=1618335045","boleto_pix":"https://sandbox.bole.to/3/nkgvgy/boleto_pix?r=1618335045","barcode":"https://sandbox.bole.to/3/nkgvgy/barcode","envelope":"https://sandbox.bole.to/3/nkgvgy/envelope","letter":"https://sandbox.bole.to/3/nkgvgy/letter","line":"https://sandbox.bole.to/3/nkgvgy/line","recibo":"https://sandbox.bole.to/3/nkgvgy/recibo"},"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":3547,"beneficiary_name":"J
440
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
441
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
442
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
443
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000085-3","processed_our_number_raw":"109000000853","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
444
- 00008.532335 21231.200003 1 86330000112040","our_number":"00000085","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:45-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191863300001120401090000008532332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348354,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382506,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
445
- de Título","created_at":"2021-04-13T14:30:52-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382505,"expire_at":"2021-05-26","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/brykyo","customer_person_name":"Joao
446
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
447
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
448
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
449
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/brykyo","formats":{"default":"https://sandbox.bole.to/3/brykyo","png":"https://sandbox.bole.to/3/brykyo.png?r=1618335044","pdf":"https://sandbox.bole.to/3/brykyo.pdf?r=1618335044","boleto_hibrido":"https://sandbox.bole.to/3/brykyo/boleto_hibrido?r=1618335044","boleto_pix":"https://sandbox.bole.to/3/brykyo/boleto_pix?r=1618335044","barcode":"https://sandbox.bole.to/3/brykyo/barcode","envelope":"https://sandbox.bole.to/3/brykyo/envelope","letter":"https://sandbox.bole.to/3/brykyo/letter","line":"https://sandbox.bole.to/3/brykyo/line","recibo":"https://sandbox.bole.to/3/brykyo/recibo"},"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":3547,"beneficiary_name":"J
450
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
451
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
452
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
453
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000084-6","processed_our_number_raw":"109000000846","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
454
- 00008.462335 21231.200003 4 86320000112040","our_number":"00000084","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:44-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34194863200001120401090000008462332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348353,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382505,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
455
- de Título","created_at":"2021-04-13T14:30:52-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382504,"expire_at":"2021-05-25","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/wkvyvk","customer_person_name":"Joao
456
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
457
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
458
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
459
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvyvk","formats":{"default":"https://sandbox.bole.to/3/wkvyvk","png":"https://sandbox.bole.to/3/wkvyvk.png?r=1618335038","pdf":"https://sandbox.bole.to/3/wkvyvk.pdf?r=1618335038","boleto_hibrido":"https://sandbox.bole.to/3/wkvyvk/boleto_hibrido?r=1618335038","boleto_pix":"https://sandbox.bole.to/3/wkvyvk/boleto_pix?r=1618335038","barcode":"https://sandbox.bole.to/3/wkvyvk/barcode","envelope":"https://sandbox.bole.to/3/wkvyvk/envelope","letter":"https://sandbox.bole.to/3/wkvyvk/letter","line":"https://sandbox.bole.to/3/wkvyvk/line","recibo":"https://sandbox.bole.to/3/wkvyvk/recibo"},"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":3547,"beneficiary_name":"J
460
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
461
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
462
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
463
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000083-8","processed_our_number_raw":"109000000838","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
464
- 00008.382335 21231.200003 3 86310000112040","our_number":"00000083","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:38-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34193863100001120401090000008382332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348352,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382504,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
465
- de Título","created_at":"2021-04-13T14:30:52-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382503,"expire_at":"2021-05-24","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/xdxlxq","customer_person_name":"Joao
466
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
467
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
468
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
469
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/xdxlxq","formats":{"default":"https://sandbox.bole.to/3/xdxlxq","png":"https://sandbox.bole.to/3/xdxlxq.png?r=1618335036","pdf":"https://sandbox.bole.to/3/xdxlxq.pdf?r=1618335036","boleto_hibrido":"https://sandbox.bole.to/3/xdxlxq/boleto_hibrido?r=1618335036","boleto_pix":"https://sandbox.bole.to/3/xdxlxq/boleto_pix?r=1618335036","barcode":"https://sandbox.bole.to/3/xdxlxq/barcode","envelope":"https://sandbox.bole.to/3/xdxlxq/envelope","letter":"https://sandbox.bole.to/3/xdxlxq/letter","line":"https://sandbox.bole.to/3/xdxlxq/line","recibo":"https://sandbox.bole.to/3/xdxlxq/recibo"},"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":3547,"beneficiary_name":"J
470
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
471
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
472
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
473
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000082-0","processed_our_number_raw":"109000000820","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
474
- 00008.202335 21231.200003 6 86300000112040","our_number":"00000082","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:36-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34196863000001120401090000008202332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348351,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382503,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
475
- de Título","created_at":"2021-04-13T14:30:50-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382502,"expire_at":"2021-05-24","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/vxomoe","customer_person_name":"Joao
476
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
477
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
478
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
479
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxomoe","formats":{"default":"https://sandbox.bole.to/3/vxomoe","png":"https://sandbox.bole.to/3/vxomoe.png?r=1618335034","pdf":"https://sandbox.bole.to/3/vxomoe.pdf?r=1618335034","boleto_hibrido":"https://sandbox.bole.to/3/vxomoe/boleto_hibrido?r=1618335034","boleto_pix":"https://sandbox.bole.to/3/vxomoe/boleto_pix?r=1618335034","barcode":"https://sandbox.bole.to/3/vxomoe/barcode","envelope":"https://sandbox.bole.to/3/vxomoe/envelope","letter":"https://sandbox.bole.to/3/vxomoe/letter","line":"https://sandbox.bole.to/3/vxomoe/line","recibo":"https://sandbox.bole.to/3/vxomoe/recibo"},"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":3547,"beneficiary_name":"J
480
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
481
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
482
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
483
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000081-2","processed_our_number_raw":"109000000812","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
484
- 00008.122335 21231.200003 1 86300000112040","our_number":"00000081","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:34-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191863000001120401090000008122332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348350,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382502,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
485
- de Título","created_at":"2021-04-13T14:30:48-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382501,"expire_at":"2021-05-24","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ojkxky","customer_person_name":"Joao
486
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
487
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
488
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
489
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkxky","formats":{"default":"https://sandbox.bole.to/3/ojkxky","png":"https://sandbox.bole.to/3/ojkxky.png?r=1618335034","pdf":"https://sandbox.bole.to/3/ojkxky.pdf?r=1618335034","boleto_hibrido":"https://sandbox.bole.to/3/ojkxky/boleto_hibrido?r=1618335034","boleto_pix":"https://sandbox.bole.to/3/ojkxky/boleto_pix?r=1618335034","barcode":"https://sandbox.bole.to/3/ojkxky/barcode","envelope":"https://sandbox.bole.to/3/ojkxky/envelope","letter":"https://sandbox.bole.to/3/ojkxky/letter","line":"https://sandbox.bole.to/3/ojkxky/line","recibo":"https://sandbox.bole.to/3/ojkxky/recibo"},"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":3547,"beneficiary_name":"J
490
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
491
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
492
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
493
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000080-4","processed_our_number_raw":"109000000804","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
494
- 00008.042335 21231.200003 5 86300000112040","our_number":"00000080","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:34-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34195863000001120401090000008042332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348349,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382501,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
495
- de Título","created_at":"2021-04-13T14:30:48-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382500,"expire_at":"2021-05-21","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ervdvk","customer_person_name":"Joao
496
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
497
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
498
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
499
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ervdvk","formats":{"default":"https://sandbox.bole.to/3/ervdvk","png":"https://sandbox.bole.to/3/ervdvk.png?r=1618335033","pdf":"https://sandbox.bole.to/3/ervdvk.pdf?r=1618335033","boleto_hibrido":"https://sandbox.bole.to/3/ervdvk/boleto_hibrido?r=1618335033","boleto_pix":"https://sandbox.bole.to/3/ervdvk/boleto_pix?r=1618335033","barcode":"https://sandbox.bole.to/3/ervdvk/barcode","envelope":"https://sandbox.bole.to/3/ervdvk/envelope","letter":"https://sandbox.bole.to/3/ervdvk/letter","line":"https://sandbox.bole.to/3/ervdvk/line","recibo":"https://sandbox.bole.to/3/ervdvk/recibo"},"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":3547,"beneficiary_name":"J
500
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
501
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
502
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
503
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000079-6","processed_our_number_raw":"109000000796","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
504
- 00007.962335 21231.200003 9 86270000112040","our_number":"00000079","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34199862700001120401090000007962332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348348,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382500,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
505
- de Título","created_at":"2021-04-13T14:30:46-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382499,"expire_at":"2021-05-20","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/gqwrjg","customer_person_name":"Joao
506
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
507
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
508
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
509
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/gqwrjg","formats":{"default":"https://sandbox.bole.to/3/gqwrjg","png":"https://sandbox.bole.to/3/gqwrjg.png?r=1618335032","pdf":"https://sandbox.bole.to/3/gqwrjg.pdf?r=1618335032","boleto_hibrido":"https://sandbox.bole.to/3/gqwrjg/boleto_hibrido?r=1618335032","boleto_pix":"https://sandbox.bole.to/3/gqwrjg/boleto_pix?r=1618335032","barcode":"https://sandbox.bole.to/3/gqwrjg/barcode","envelope":"https://sandbox.bole.to/3/gqwrjg/envelope","letter":"https://sandbox.bole.to/3/gqwrjg/letter","line":"https://sandbox.bole.to/3/gqwrjg/line","recibo":"https://sandbox.bole.to/3/gqwrjg/recibo"},"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":3547,"beneficiary_name":"J
510
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
511
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
512
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
513
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000078-8","processed_our_number_raw":"109000000788","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
514
- 00007.882335 21231.200003 8 86260000112040","our_number":"00000078","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:32-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34198862600001120401090000007882332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348347,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382499,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
515
- de Título","created_at":"2021-04-13T14:30:42-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382498,"expire_at":"2021-05-19","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/jzdljy","customer_person_name":"Joao
516
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
517
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
518
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
519
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/jzdljy","formats":{"default":"https://sandbox.bole.to/3/jzdljy","png":"https://sandbox.bole.to/3/jzdljy.png?r=1618335032","pdf":"https://sandbox.bole.to/3/jzdljy.pdf?r=1618335032","boleto_hibrido":"https://sandbox.bole.to/3/jzdljy/boleto_hibrido?r=1618335032","boleto_pix":"https://sandbox.bole.to/3/jzdljy/boleto_pix?r=1618335032","barcode":"https://sandbox.bole.to/3/jzdljy/barcode","envelope":"https://sandbox.bole.to/3/jzdljy/envelope","letter":"https://sandbox.bole.to/3/jzdljy/letter","line":"https://sandbox.bole.to/3/jzdljy/line","recibo":"https://sandbox.bole.to/3/jzdljy/recibo"},"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":3547,"beneficiary_name":"J
520
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
521
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
522
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
523
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000077-0","processed_our_number_raw":"109000000770","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
524
- 00007.702335 21231.200003 1 86250000112040","our_number":"00000077","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:32-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191862500001120401090000007702332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348346,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382498,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
525
- de Título","created_at":"2021-04-13T14:30:42-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382497,"expire_at":"2021-05-18","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/lkgeqe","customer_person_name":"Joao
526
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
527
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
528
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
529
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgeqe","formats":{"default":"https://sandbox.bole.to/3/lkgeqe","png":"https://sandbox.bole.to/3/lkgeqe.png?r=1618335031","pdf":"https://sandbox.bole.to/3/lkgeqe.pdf?r=1618335031","boleto_hibrido":"https://sandbox.bole.to/3/lkgeqe/boleto_hibrido?r=1618335031","boleto_pix":"https://sandbox.bole.to/3/lkgeqe/boleto_pix?r=1618335031","barcode":"https://sandbox.bole.to/3/lkgeqe/barcode","envelope":"https://sandbox.bole.to/3/lkgeqe/envelope","letter":"https://sandbox.bole.to/3/lkgeqe/letter","line":"https://sandbox.bole.to/3/lkgeqe/line","recibo":"https://sandbox.bole.to/3/lkgeqe/recibo"},"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":3547,"beneficiary_name":"J
530
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
531
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
532
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
533
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000076-2","processed_our_number_raw":"109000000762","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
534
- 00007.622335 21231.200003 1 86240000112040","our_number":"00000076","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:31-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191862400001120401090000007622332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348345,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382497,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
535
- de Título","created_at":"2021-04-13T14:30:38-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382496,"expire_at":"2021-05-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ymwjkb","customer_person_name":"Joao
536
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
537
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
538
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
539
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwjkb","formats":{"default":"https://sandbox.bole.to/3/ymwjkb","png":"https://sandbox.bole.to/3/ymwjkb.png?r=1618335030","pdf":"https://sandbox.bole.to/3/ymwjkb.pdf?r=1618335030","boleto_hibrido":"https://sandbox.bole.to/3/ymwjkb/boleto_hibrido?r=1618335030","boleto_pix":"https://sandbox.bole.to/3/ymwjkb/boleto_pix?r=1618335030","barcode":"https://sandbox.bole.to/3/ymwjkb/barcode","envelope":"https://sandbox.bole.to/3/ymwjkb/envelope","letter":"https://sandbox.bole.to/3/ymwjkb/letter","line":"https://sandbox.bole.to/3/ymwjkb/line","recibo":"https://sandbox.bole.to/3/ymwjkb/recibo"},"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":3547,"beneficiary_name":"J
540
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
541
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
542
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
543
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000075-4","processed_our_number_raw":"109000000754","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
544
- 00007.542335 21231.200003 9 86230000112040","our_number":"00000075","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:30-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34199862300001120401090000007542332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348344,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382496,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
545
- de Título","created_at":"2021-04-13T14:30:34-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382495,"expire_at":"2021-05-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/mkqojd","customer_person_name":"Joao
546
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
547
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
548
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
549
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mkqojd","formats":{"default":"https://sandbox.bole.to/3/mkqojd","png":"https://sandbox.bole.to/3/mkqojd.png?r=1618335027","pdf":"https://sandbox.bole.to/3/mkqojd.pdf?r=1618335027","boleto_hibrido":"https://sandbox.bole.to/3/mkqojd/boleto_hibrido?r=1618335027","boleto_pix":"https://sandbox.bole.to/3/mkqojd/boleto_pix?r=1618335027","barcode":"https://sandbox.bole.to/3/mkqojd/barcode","envelope":"https://sandbox.bole.to/3/mkqojd/envelope","letter":"https://sandbox.bole.to/3/mkqojd/letter","line":"https://sandbox.bole.to/3/mkqojd/line","recibo":"https://sandbox.bole.to/3/mkqojd/recibo"},"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":3547,"beneficiary_name":"J
550
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
551
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
552
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
553
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000074-7","processed_our_number_raw":"109000000747","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
554
- 00007.472335 21231.200003 7 86230000112040","our_number":"00000074","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:26-03:00","updated_at":"2021-04-13T14:30:27-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34197862300001120401090000007472332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348343,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382495,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
555
- de Título","created_at":"2021-04-13T14:30:30-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382494,"expire_at":"2021-05-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/rzgnxv","customer_person_name":"Joao
556
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
557
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
558
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
559
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rzgnxv","formats":{"default":"https://sandbox.bole.to/3/rzgnxv","png":"https://sandbox.bole.to/3/rzgnxv.png?r=1618335027","pdf":"https://sandbox.bole.to/3/rzgnxv.pdf?r=1618335027","boleto_hibrido":"https://sandbox.bole.to/3/rzgnxv/boleto_hibrido?r=1618335027","boleto_pix":"https://sandbox.bole.to/3/rzgnxv/boleto_pix?r=1618335027","barcode":"https://sandbox.bole.to/3/rzgnxv/barcode","envelope":"https://sandbox.bole.to/3/rzgnxv/envelope","letter":"https://sandbox.bole.to/3/rzgnxv/letter","line":"https://sandbox.bole.to/3/rzgnxv/line","recibo":"https://sandbox.bole.to/3/rzgnxv/recibo"},"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":3547,"beneficiary_name":"J
560
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
561
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
562
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
563
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000073-9","processed_our_number_raw":"109000000739","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
564
- 00007.392335 21231.200003 1 86230000112040","our_number":"00000073","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:25-03:00","updated_at":"2021-04-13T14:30:27-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34191862300001120401090000007392332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348342,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382494,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
565
- de Título","created_at":"2021-04-13T14:30:30-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},{"id":382493,"expire_at":"2021-05-14","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/zdbexq","customer_person_name":"Joao
566
- da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
567
- quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
568
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
569
- de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zdbexq","formats":{"default":"https://sandbox.bole.to/3/zdbexq","png":"https://sandbox.bole.to/3/zdbexq.png?r=1618335027","pdf":"https://sandbox.bole.to/3/zdbexq.pdf?r=1618335027","boleto_hibrido":"https://sandbox.bole.to/3/zdbexq/boleto_hibrido?r=1618335027","boleto_pix":"https://sandbox.bole.to/3/zdbexq/boleto_pix?r=1618335027","barcode":"https://sandbox.bole.to/3/zdbexq/barcode","envelope":"https://sandbox.bole.to/3/zdbexq/envelope","letter":"https://sandbox.bole.to/3/zdbexq/letter","line":"https://sandbox.bole.to/3/zdbexq/line","recibo":"https://sandbox.bole.to/3/zdbexq/recibo"},"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":3547,"beneficiary_name":"J
570
- Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
571
- dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
572
- / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
573
- em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000072-1","processed_our_number_raw":"109000000721","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
574
- 00007.212335 21231.200003 3 86200000112040","our_number":"00000072","customer_subscription_id":2640,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T14:30:25-03:00","updated_at":"2021-04-13T14:30:27-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":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":"34193862000001120401090000007212332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"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":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348341,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382493,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
575
- de Título","created_at":"2021-04-13T14:30:30-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}]'
576
- recorded_at: Tue, 13 Apr 2021 17:37:53 GMT
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
577
443
  recorded_with: VCR 6.0.0