boletosimples 0.6.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -12
  3. data/README.md +21 -59
  4. data/lib/boletosimples/configuration.rb +25 -28
  5. data/lib/boletosimples/last_request.rb +17 -10
  6. data/lib/boletosimples/middlewares/bearer.rb +12 -0
  7. data/lib/boletosimples/middlewares/custom_headers.rb +12 -0
  8. data/lib/boletosimples/middlewares/debug.rb +30 -0
  9. data/lib/boletosimples/middlewares/last_request.rb +3 -1
  10. data/lib/boletosimples/middlewares/raise_error.rb +9 -2
  11. data/lib/boletosimples/middlewares/user_agent.rb +3 -1
  12. data/lib/boletosimples/resources/bank_billet.rb +5 -11
  13. data/lib/boletosimples/resources/bank_billet_account.rb +3 -1
  14. data/lib/boletosimples/resources/bank_billet_discharge.rb +3 -1
  15. data/lib/boletosimples/resources/bank_billet_payment.rb +3 -1
  16. data/lib/boletosimples/resources/bank_billet_remittance.rb +3 -1
  17. data/lib/boletosimples/resources/base_model.rb +3 -1
  18. data/lib/boletosimples/resources/customer.rb +3 -1
  19. data/lib/boletosimples/resources/customer_import.rb +5 -3
  20. data/lib/boletosimples/resources/customer_subscription.rb +3 -10
  21. data/lib/boletosimples/resources/customer_subscription_import.rb +5 -3
  22. data/lib/boletosimples/resources/discharge.rb +4 -11
  23. data/lib/boletosimples/resources/email_delivery.rb +3 -1
  24. data/lib/boletosimples/resources/event.rb +3 -1
  25. data/lib/boletosimples/resources/installment.rb +3 -1
  26. data/lib/boletosimples/resources/remittance.rb +3 -1
  27. data/lib/boletosimples/resources/sms_delivery.rb +6 -0
  28. data/lib/boletosimples/resources/transaction.rb +3 -1
  29. data/lib/boletosimples/resources/webhook.rb +3 -1
  30. data/lib/boletosimples/resources/webhook_delivery.rb +3 -1
  31. data/lib/boletosimples/response_error.rb +10 -5
  32. data/lib/boletosimples/version.rb +3 -1
  33. data/lib/boletosimples.rb +6 -6
  34. data/spec/boletosimples/configuration_spec.rb +67 -80
  35. data/spec/boletosimples/last_request_spec.rb +17 -28
  36. data/spec/boletosimples/middlewares/custom_headers_spec.rb +26 -0
  37. data/spec/boletosimples/resources/bank_billet_account_spec.rb +57 -33
  38. data/spec/boletosimples/resources/bank_billet_discharge_spec.rb +7 -12
  39. data/spec/boletosimples/resources/bank_billet_payment_spec.rb +7 -12
  40. data/spec/boletosimples/resources/bank_billet_remittance_spec.rb +7 -12
  41. data/spec/boletosimples/resources/bank_billet_spec.rb +56 -42
  42. data/spec/boletosimples/resources/customer_import_spec.rb +41 -30
  43. data/spec/boletosimples/resources/customer_spec.rb +57 -39
  44. data/spec/boletosimples/resources/customer_subscription_import_spec.rb +41 -30
  45. data/spec/boletosimples/resources/customer_subscription_spec.rb +61 -33
  46. data/spec/boletosimples/resources/discharge_spec.rb +64 -11
  47. data/spec/boletosimples/resources/email_delivery_spec.rb +6 -11
  48. data/spec/boletosimples/resources/event_spec.rb +7 -12
  49. data/spec/boletosimples/resources/installment_spec.rb +61 -32
  50. data/spec/boletosimples/resources/remittance_spec.rb +7 -12
  51. data/spec/boletosimples/resources/sms_delivery_spec.rb +12 -0
  52. data/spec/boletosimples/resources/transactions_spec.rb +7 -12
  53. data/spec/boletosimples/resources/webhook_delivery_spec.rb +7 -12
  54. data/spec/boletosimples/resources/webhook_spec.rb +7 -12
  55. data/spec/fixtures/discharge.RET +3 -0
  56. data/spec/fixtures/vcr_cassettes/custom_headers.yml +113 -0
  57. data/spec/fixtures/vcr_cassettes/last_request/bank_billets.yml +409 -95
  58. data/spec/fixtures/vcr_cassettes/resources/bank_billet/all.yml +101 -99
  59. data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/success.yml +55 -95
  60. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_params.yml +55 -27
  61. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_root.yml +51 -24
  62. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/valid.yml +64 -34
  63. data/spec/fixtures/vcr_cassettes/resources/bank_billet/duplicate/success.yml +97 -0
  64. data/spec/fixtures/vcr_cassettes/resources/bank_billet/find.yml +73 -34
  65. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/all.yml +82 -27
  66. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_params.yml +57 -27
  67. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_root.yml +53 -26
  68. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/valid.yml +64 -28
  69. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/find.yml +61 -25
  70. data/spec/fixtures/vcr_cassettes/resources/bank_billet_discharge/all.yml +59 -46
  71. data/spec/fixtures/vcr_cassettes/resources/bank_billet_payment/all.yml +74 -71
  72. data/spec/fixtures/vcr_cassettes/resources/bank_billet_remittance/all.yml +63 -47
  73. data/spec/fixtures/vcr_cassettes/resources/customer/all.yml +141 -39
  74. data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_params.yml +54 -25
  75. data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_root.yml +54 -24
  76. data/spec/fixtures/vcr_cassettes/resources/customer/create/valid.yml +56 -28
  77. data/spec/fixtures/vcr_cassettes/resources/customer/find.yml +56 -26
  78. data/spec/fixtures/vcr_cassettes/resources/customer_import/all.yml +58 -59
  79. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_params.yml +53 -51
  80. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_root.yml +54 -52
  81. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/valid.yml +58 -67
  82. data/spec/fixtures/vcr_cassettes/resources/customer_import/find.yml +55 -53
  83. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/all.yml +65 -51
  84. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_params.yml +56 -50
  85. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_root.yml +52 -48
  86. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/valid.yml +63 -52
  87. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/find.yml +61 -51
  88. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/next_charge.yml +60 -132
  89. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/all.yml +58 -54
  90. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_params.yml +53 -52
  91. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_root.yml +55 -53
  92. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/valid.yml +58 -69
  93. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/find.yml +55 -54
  94. data/spec/fixtures/vcr_cassettes/resources/discharge/all.yml +63 -34
  95. data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_params.yml +86 -0
  96. data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_root.yml +85 -0
  97. data/spec/fixtures/vcr_cassettes/resources/discharge/create/valid.yml +100 -0
  98. data/spec/fixtures/vcr_cassettes/resources/discharge/find.yml +89 -0
  99. data/spec/fixtures/vcr_cassettes/resources/email_delivery/all.yml +40 -43
  100. data/spec/fixtures/vcr_cassettes/resources/event/all.yml +326 -167
  101. data/spec/fixtures/vcr_cassettes/resources/installment/all.yml +113 -51
  102. data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_params.yml +57 -52
  103. data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_root.yml +52 -48
  104. data/spec/fixtures/vcr_cassettes/resources/installment/create/valid.yml +63 -52
  105. data/spec/fixtures/vcr_cassettes/resources/installment/find.yml +83 -51
  106. data/spec/fixtures/vcr_cassettes/resources/remittance/all.yml +83 -62
  107. data/spec/fixtures/vcr_cassettes/resources/sns_delivery/all.yml +89 -0
  108. data/spec/fixtures/vcr_cassettes/resources/transaction/all.yml +73 -60
  109. data/spec/fixtures/vcr_cassettes/resources/web_hook/all.yml +59 -34
  110. data/spec/fixtures/vcr_cassettes/resources/webhook_delivery/all.yml +2684 -55
  111. data/spec/spec_helper.rb +3 -20
  112. data/spec/support/stub_env.rb +7 -0
  113. data/spec/support/vcr.rb +3 -4
  114. metadata +42 -176
  115. data/.coveralls.yml +0 -2
  116. data/.gitignore +0 -19
  117. data/.ruby-version +0 -1
  118. data/.travis.yml +0 -46
  119. data/Gemfile +0 -4
  120. data/Rakefile +0 -14
  121. data/boletosimples.gemspec +0 -38
  122. data/gemfiles/rails_42.gemfile +0 -8
  123. data/gemfiles/rails_50.gemfile +0 -8
  124. data/gemfiles/rails_51.gemfile +0 -8
  125. data/gemfiles/rails_52.gemfile +0 -9
  126. data/lib/boletosimples/extra.rb +0 -8
  127. data/lib/boletosimples/resources/partner/user.rb +0 -7
  128. data/lib/oauth2_patch.rb +0 -24
  129. data/spec/boletosimples/extra_spec.rb +0 -31
  130. data/spec/boletosimples/resources/partner/user_spec.rb +0 -19
  131. data/spec/fixtures/vcr_cassettes/configuration/client_credentials/invalid.yml +0 -64
  132. data/spec/fixtures/vcr_cassettes/configuration/client_credentials/valid.yml +0 -56
  133. data/spec/fixtures/vcr_cassettes/extra/userinfo/authenticated.yml +0 -58
  134. data/spec/fixtures/vcr_cassettes/extra/userinfo/not_authenticated.yml +0 -54
  135. data/spec/fixtures/vcr_cassettes/last_request/userinfo.yml +0 -58
  136. data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/failure.yml +0 -118
  137. data/spec/fixtures/vcr_cassettes/resources/partner/user/create.yml +0 -60
  138. data/spec/spec.opts +0 -8
@@ -2,196 +2,355 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://sandbox.boletosimples.com.br/api/v1/events?access_token=BOLETOSIMPLES_ACCESS_TOKEN
5
+ uri: https://api-sandbox.kobana.com.br/v1/events
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BoletoSimples Ruby Client v0.2.3 (contato@boletosimples.com.br)
11
+ - email@minhaempresa.com.br
12
12
  Authorization:
13
- - Token token="BOLETOSIMPLES_ACCESS_TOKEN"
13
+ - Bearer BOLETOSIMPLES_API_TOKEN
14
+ Accept:
15
+ - application/json
14
16
  Accept-Encoding:
15
17
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
- Accept:
17
- - "*/*"
18
18
  response:
19
19
  status:
20
20
  code: 200
21
21
  message: OK
22
22
  headers:
23
- Connection:
24
- - keep-alive
25
23
  Content-Type:
26
24
  - application/json; charset=utf-8
27
25
  Transfer-Encoding:
28
26
  - chunked
29
- Status:
30
- - 200 OK
31
- Cache-Control:
32
- - must-revalidate, private, max-age=0
27
+ Connection:
28
+ - keep-alive
29
+ Server:
30
+ - Cowboy
31
+ X-Frame-Options:
32
+ - DENY
33
+ X-Xss-Protection:
34
+ - 1; mode=block
35
+ X-Content-Type-Options:
36
+ - nosniff
37
+ X-Download-Options:
38
+ - noopen
39
+ X-Permitted-Cross-Domain-Policies:
40
+ - none
41
+ Referrer-Policy:
42
+ - strict-origin-when-cross-origin
43
+ Expect-Ct:
44
+ - max-age=0, report-uri="https://boletosimples.report-uri.com/r/d/ct/reportOnly"
45
+ Cross-Origin-Resource-Policy:
46
+ - cross-origin
47
+ Cross-Origin-Embedder-Policy:
48
+ - unsafe-none
49
+ Cross-Origin-Opener-Policy:
50
+ - unsafe-none
51
+ Per-Page:
52
+ - '50'
53
+ Page:
54
+ - ''
33
55
  X-Ratelimit-Limit:
34
- - '500'
35
- Date:
36
- - Mon, 24 Aug 2015 18:10:09 GMT
37
- Strict-Transport-Security:
38
- - max-age=2592000
56
+ - '100'
39
57
  X-Ratelimit-Remaining:
40
- - '496'
41
- Vary:
42
- - Accept-Encoding
43
- X-Request-Id:
44
- - 125f2efb-ea36-479d-bca9-bca1de938e20
45
- Link:
46
- - <https://sandbox.boletosimples.com.br/api/v1/events?access_token=BOLETOSIMPLES_ACCESS_TOKEN&page=4>;
47
- rel="last", <https://sandbox.boletosimples.com.br/api/v1/events?access_token=BOLETOSIMPLES_ACCESS_TOKEN&page=2>;
48
- rel="next"
49
- Total:
50
- - '89'
58
+ - '55'
51
59
  Etag:
52
- - W/"a028eaa2eeae1ff5004373945583ae8e"
60
+ - W/"f14d7a1265d44328a6788f918b3c2237"
61
+ Cache-Control:
62
+ - must-revalidate, private, max-age=0
63
+ X-Request-Id:
64
+ - '0028526c-c4b0-441a-a22b-fd9e89040821'
53
65
  X-Runtime:
54
- - '0.116483'
66
+ - '0.100320'
67
+ Date:
68
+ - Tue, 22 Feb 2022 17:30:44 GMT
55
69
  X-Rack-Cache:
56
70
  - miss
57
- X-Powered-By:
58
- - Phusion Passenger 5.0.15
59
- Server:
60
- - nginx/1.8.0 + Phusion Passenger 5.0.15
71
+ Strict-Transport-Security:
72
+ - max-age=31556952; includeSubDomains; preload
73
+ Vary:
74
+ - Origin,Accept-Encoding
75
+ X-Rack-Cors:
76
+ - miss; no-origin
61
77
  Via:
62
- - 1.1 vegur
78
+ - 1.1 vegur, 1.1 a18ddfb379d1a4a5c2e721a55509e380.cloudfront.net (CloudFront)
79
+ X-Cache:
80
+ - Miss from cloudfront
81
+ X-Amz-Cf-Pop:
82
+ - MIA3-C1
83
+ X-Amz-Cf-Id:
84
+ - F29PiljwizpCXWu0kEFr7lJWGLrIKt3RoidJ4nBbN3G5xk5mdPTBnA==
63
85
  body:
64
86
  encoding: UTF-8
65
- string: '[{"id":2560,"code":"bank_billet.generated","data":{"object":{"id":1489,"expire_at":"2015-07-24","paid_at":null,"description":"Despesas
66
- do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/wqol","customer_person_type":"individual","customer_person_name":"Joao
67
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
68
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
69
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
70
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/wqol","formats":{"png":"https://bole.to/3/wqol.png","pdf":"https://bole.to/3/wqol.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null}},"occurred_at":"2015-08-24T14:43:37.000-03:00"},{"id":2559,"code":"bank_billet.created","data":{"object":{"id":1489,"expire_at":"2015-07-24","paid_at":null,"description":"Despesas
71
- do contrato 0012","status":"generating","shorten_url":"https://bole.to/3/wqol","customer_person_type":"individual","customer_person_name":"Joao
72
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
73
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
74
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
75
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/wqol","formats":{"png":"https://bole.to/3/wqol.png","pdf":"https://bole.to/3/wqol.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null}},"occurred_at":"2015-08-24T14:43:32.000-03:00"},{"id":2558,"code":"bank_billet.generated","data":{"object":{"id":1487,"expire_at":"2015-07-24","paid_at":null,"description":"Despesas
76
- do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/vred","customer_person_type":"individual","customer_person_name":"Joao
77
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
78
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
79
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
80
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/vred","formats":{"png":"https://bole.to/3/vred.png","pdf":"https://bole.to/3/vred.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null}},"occurred_at":"2015-08-24T14:37:04.000-03:00"},{"id":2557,"code":"bank_billet.generated","data":{"object":{"id":1488,"expire_at":"2015-07-24","paid_at":null,"description":"Despesas
81
- do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/xrbx","customer_person_type":"individual","customer_person_name":"Joao
82
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
83
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
84
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
85
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/xrbx","formats":{"png":"https://bole.to/3/xrbx.png","pdf":"https://bole.to/3/xrbx.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null}},"occurred_at":"2015-08-24T14:37:04.000-03:00"},{"id":2556,"code":"bank_billet.created","data":{"object":{"id":1488,"expire_at":"2015-07-24","paid_at":null,"description":"Despesas
86
- do contrato 0012","status":"generating","shorten_url":"https://bole.to/3/xrbx","customer_person_type":"individual","customer_person_name":"Joao
87
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
88
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
89
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
90
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/xrbx","formats":{"png":"https://bole.to/3/xrbx.png","pdf":"https://bole.to/3/xrbx.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null}},"occurred_at":"2015-08-24T14:36:57.000-03:00"},{"id":2555,"code":"bank_billet.generated","data":{"object":{"id":1486,"expire_at":"2015-07-24","paid_at":null,"description":"Despesas
91
- do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/owqn","customer_person_type":"individual","customer_person_name":"Joao
92
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
93
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
94
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
95
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/owqn","formats":{"png":"https://bole.to/3/owqn.png","pdf":"https://bole.to/3/owqn.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null}},"occurred_at":"2015-08-24T14:36:55.000-03:00"},{"id":2554,"code":"bank_billet.created","data":{"object":{"id":1487,"expire_at":"2015-07-24","paid_at":null,"description":"Despesas
96
- do contrato 0012","status":"generating","shorten_url":"https://bole.to/3/vred","customer_person_type":"individual","customer_person_name":"Joao
97
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
98
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
99
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
100
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/vred","formats":{"png":"https://bole.to/3/vred.png","pdf":"https://bole.to/3/vred.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null}},"occurred_at":"2015-08-24T14:36:55.000-03:00"},{"id":2553,"code":"bank_billet.created","data":{"object":{"id":1486,"expire_at":"2015-07-24","paid_at":null,"description":"Despesas
101
- do contrato 0012","status":"generating","shorten_url":"https://bole.to/3/owqn","customer_person_type":"individual","customer_person_name":"Joao
102
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
103
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
104
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
105
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/owqn","formats":{"png":"https://bole.to/3/owqn.png","pdf":"https://bole.to/3/owqn.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null}},"occurred_at":"2015-08-24T14:36:52.000-03:00"},{"id":2552,"code":"user.updated","data":{"object":{"id":64,"email":"kivanio+cb@boletosimples.com.br","account_type":"juridical","sex":null,"cpf":"000.233.771-19","address_street_name":"Rua
106
- 10","address_state":null,"address_neighborhood":null,"address_postal_code":null,"address_number":"9","address_complement":null,"phone_number":null,"withdrawal_period":"monthly","notification_url":"","first_name":"Kivanio","middle_name":"Pereira","last_name":"Barbosa","date_of_birth":null,"business_category":null,"business_subcategory":null,"business_website":null,"business_name":"Boleto
107
- Simples Cobranças LTDA","business_legal_name":"Boleto Simples Cobranças LTDA","business_type":null,"business_cnpj":"05.813.794/0001-26","address_city_name":null,"full_name":"Kivanio
108
- Pereira Barbosa","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%2Bcb%40boletosimples.com.br\u0026token=pvcc7RVMDxh9rwwpdQRJ","mother_name":null,"father_name":null,"account_level":2},"changes":{"last_sign_in_at":["2015-06-09
109
- 10:00:34 -0300","2015-06-09 10:58:56 -0300"],"current_sign_in_at":["2015-06-09
110
- 10:58:56 -0300","2015-08-24 14:31:28 -0300"],"current_sign_in_ip":["179.216.199.84","187.123.27.68"],"sign_in_count":[12,13],"updated_at":["2015-06-09
111
- 11:04:28 -0300","2015-08-24 14:31:28 -0300"]}},"occurred_at":"2015-08-24T14:31:28.000-03:00"},{"id":1552,"code":"bank_billet.updated","data":{"object":{"id":1262,"expire_at":"2015-05-01","paid_at":null,"description":"Despesas
112
- do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/ymom","customer_person_type":"individual","customer_person_name":"Joao
113
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
114
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
115
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
116
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/ymom","formats":{"png":"https://bole.to/3/ymom.png","pdf":"https://bole.to/3/ymom.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"updated_at":["2015-06-09
117
- 11:05:01 -0300","2015-06-09 17:04:16 -0300"]}},"occurred_at":"2015-06-09T17:04:16.000-03:00"},{"id":1551,"code":"bank_billet.updated","data":{"object":{"id":1263,"expire_at":"2015-05-01","paid_at":null,"description":"Despesas
118
- do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/lkro","customer_person_type":"individual","customer_person_name":"Joao
119
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
120
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
121
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
122
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/lkro","formats":{"png":"https://bole.to/3/lkro.png","pdf":"https://bole.to/3/lkro.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"updated_at":["2015-06-09
123
- 11:05:01 -0300","2015-06-09 17:04:16 -0300"]}},"occurred_at":"2015-06-09T17:04:16.000-03:00"},{"id":1498,"code":"user.updated","data":{"object":{"id":64,"email":"kivanio+cb@boletosimples.com.br","account_type":"juridical","sex":null,"cpf":"000.233.771-19","address_street_name":"Rua
124
- 10","address_state":null,"address_neighborhood":null,"address_postal_code":null,"address_number":"9","address_complement":null,"phone_number":null,"withdrawal_period":"monthly","notification_url":"","first_name":"Kivanio","middle_name":"Pereira","last_name":"Barbosa","date_of_birth":null,"business_category":null,"business_subcategory":null,"business_website":null,"business_name":"Boleto
125
- Simples Cobranças LTDA","business_legal_name":"Boleto Simples Cobranças LTDA","business_type":null,"business_cnpj":"05.813.794/0001-26","address_city_name":null,"full_name":"Kivanio
126
- Pereira Barbosa","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%2Bcb%40boletosimples.com.br\u0026token=pvcc7RVMDxh9rwwpdQRJ","mother_name":null,"father_name":null,"account_level":2},"changes":{}},"occurred_at":"2015-06-09T11:04:28.000-03:00"},{"id":1497,"code":"bank_billet.updated","data":{"object":{"id":1249,"expire_at":"2015-05-01","paid_at":null,"description":"Despesas
127
- do contrato 0012","status":"generating","shorten_url":"https://bole.to/3/qzdk","customer_person_type":"individual","customer_person_name":"Joao
128
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
129
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
130
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
131
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/qzdk","formats":{"png":"https://bole.to/3/qzdk.png","pdf":"https://bole.to/3/qzdk.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"beneficiary_name":["Joao
132
- Silva","Boleto Simples Cobranças LTDA"],"beneficiary_cnpj_cpf":["871.539.859-56","05.813.794/0001-26"],"updated_at":["2015-06-09
133
- 10:32:02 -0300","2015-06-09 11:05:01 -0300"]}},"occurred_at":"2015-06-09T11:05:01.000-03:00"},{"id":1496,"code":"bank_billet.updated","data":{"object":{"id":1262,"expire_at":"2015-05-01","paid_at":null,"description":"Despesas
134
- do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/ymom","customer_person_type":"individual","customer_person_name":"Joao
135
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
136
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
137
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
138
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/ymom","formats":{"png":"https://bole.to/3/ymom.png","pdf":"https://bole.to/3/ymom.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"beneficiary_name":["Joao
139
- Silva","Boleto Simples Cobranças LTDA"],"beneficiary_cnpj_cpf":["871.539.859-56","05.813.794/0001-26"],"updated_at":["2015-06-09
140
- 10:32:02 -0300","2015-06-09 11:05:01 -0300"]}},"occurred_at":"2015-06-09T11:05:01.000-03:00"},{"id":1495,"code":"bank_billet.updated","data":{"object":{"id":1263,"expire_at":"2015-05-01","paid_at":null,"description":"Despesas
141
- do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/lkro","customer_person_type":"individual","customer_person_name":"Joao
142
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
143
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
144
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
145
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/lkro","formats":{"png":"https://bole.to/3/lkro.png","pdf":"https://bole.to/3/lkro.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"beneficiary_name":["Joao
146
- Silva","Boleto Simples Cobranças LTDA"],"beneficiary_cnpj_cpf":["871.539.859-56","05.813.794/0001-26"],"updated_at":["2015-06-09
147
- 10:32:02 -0300","2015-06-09 11:05:01 -0300"]}},"occurred_at":"2015-06-09T11:05:01.000-03:00"},{"id":1494,"code":"bank_billet.updated","data":{"object":{"id":1251,"expire_at":"2015-04-30","paid_at":null,"description":"teste","status":"generating","shorten_url":"https://bole.to/3/erwg","customer_person_type":"individual","customer_person_name":"Nome
148
- do Cliente Atualizado","customer_cnpj_cpf":"125.812.717-28","customer_address":"","customer_state":"","customer_neighborhood":"","customer_zipcode":"20071-004","customer_address_number":"","customer_address_complement":"","customer_phone_number":"","customer_email":"","created_via_api":false,"customer_city_name":null,"paid_amount":0.0,"amount":9.9,"url":"https://bole.to/3/erwg","formats":{"png":"https://bole.to/3/erwg.png","pdf":"https://bole.to/3/erwg.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"beneficiary_name":["Joao
149
- Silva","Boleto Simples Cobranças LTDA"],"beneficiary_cnpj_cpf":["871.539.859-56","05.813.794/0001-26"],"updated_at":["2015-06-09
150
- 10:32:02 -0300","2015-06-09 11:05:00 -0300"]}},"occurred_at":"2015-06-09T11:05:00.000-03:00"},{"id":1493,"code":"bank_billet.updated","data":{"object":{"id":1250,"expire_at":"2015-05-01","paid_at":null,"description":"Despesas
151
- do contrato 0012","status":"generating","shorten_url":"https://bole.to/3/kyez","customer_person_type":"individual","customer_person_name":"Joao
152
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
153
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
154
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
155
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/kyez","formats":{"png":"https://bole.to/3/kyez.png","pdf":"https://bole.to/3/kyez.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"beneficiary_name":["Joao
156
- Silva","Boleto Simples Cobranças LTDA"],"beneficiary_cnpj_cpf":["871.539.859-56","05.813.794/0001-26"],"updated_at":["2015-06-09
157
- 10:32:02 -0300","2015-06-09 11:05:00 -0300"]}},"occurred_at":"2015-06-09T11:05:00.000-03:00"},{"id":1492,"code":"user.updated","data":{"object":{"id":64,"email":"kivanio+cb@boletosimples.com.br","account_type":"juridical","sex":null,"cpf":"000.233.771-19","address_street_name":"Rua
158
- 10","address_state":null,"address_neighborhood":null,"address_postal_code":null,"address_number":"9","address_complement":null,"phone_number":null,"withdrawal_period":"monthly","notification_url":"","first_name":"Kivanio","middle_name":"Pereira","last_name":"Barbosa","date_of_birth":null,"business_category":null,"business_subcategory":null,"business_website":null,"business_name":"Boleto
159
- Simples Cobranças LTDA","business_legal_name":"Boleto Simples Cobranças LTDA","business_type":null,"business_cnpj":"05.813.794/0001-26","address_city_name":null,"full_name":"Kivanio
160
- Pereira Barbosa","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%2Bcb%40boletosimples.com.br\u0026token=pvcc7RVMDxh9rwwpdQRJ","mother_name":null,"father_name":null,"account_level":2},"changes":{"business_name":[null,"Boleto
161
- Simples Cobranças LTDA"],"business_legal_name":[null,"Boleto Simples Cobranças
162
- LTDA"],"updated_at":["2015-06-09 11:03:39 -0300","2015-06-09 11:04:28 -0300"]}},"occurred_at":"2015-06-09T11:04:28.000-03:00"},{"id":1491,"code":"user.updated","data":{"object":{"id":64,"email":"kivanio+cb@boletosimples.com.br","account_type":"juridical","sex":null,"cpf":"000.233.771-19","address_street_name":"Rua
163
- 10","address_state":null,"address_neighborhood":null,"address_postal_code":null,"address_number":"9","address_complement":null,"phone_number":null,"withdrawal_period":"monthly","notification_url":"","first_name":"Kivanio","middle_name":"Pereira","last_name":"Barbosa","date_of_birth":null,"business_category":null,"business_subcategory":null,"business_website":null,"business_name":null,"business_legal_name":null,"business_type":null,"business_cnpj":"05.813.794/0001-26","address_city_name":null,"full_name":"Kivanio
164
- Pereira Barbosa","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%2Bcb%40boletosimples.com.br\u0026token=pvcc7RVMDxh9rwwpdQRJ","mother_name":null,"father_name":null,"account_level":2},"changes":{"first_name":["Joao","Kivanio"],"last_name":["Silva","Barbosa"],"middle_name":[null,"Pereira"],"cpf":["871.539.859-56","000.233.771-19"],"business_cnpj":[null,"05.813.794/0001-26"],"account_type":["individual","juridical"],"updated_at":["2015-06-09
165
- 10:58:56 -0300","2015-06-09 11:03:39 -0300"]}},"occurred_at":"2015-06-09T11:03:39.000-03:00"},{"id":1489,"code":"user.updated","data":{"object":{"id":64,"email":"kivanio+cb@boletosimples.com.br","account_type":"individual","sex":null,"cpf":"871.539.859-56","address_street_name":"Rua
166
- 10","address_state":null,"address_neighborhood":null,"address_postal_code":null,"address_number":"9","address_complement":null,"phone_number":null,"withdrawal_period":"monthly","notification_url":"","first_name":"Joao","middle_name":null,"last_name":"Silva","date_of_birth":null,"business_category":null,"business_subcategory":null,"business_website":null,"business_name":null,"business_legal_name":null,"business_type":null,"business_cnpj":null,"address_city_name":null,"full_name":"Joao
167
- Silva","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%2Bcb%40boletosimples.com.br\u0026token=pvcc7RVMDxh9rwwpdQRJ","mother_name":null,"father_name":null,"account_level":2},"changes":{"last_sign_in_at":["2015-06-08
168
- 16:49:26 -0300","2015-06-09 10:00:34 -0300"],"current_sign_in_at":["2015-06-09
169
- 10:00:34 -0300","2015-06-09 10:58:56 -0300"],"sign_in_count":[11,12],"updated_at":["2015-06-09
170
- 10:19:28 -0300","2015-06-09 10:58:56 -0300"]}},"occurred_at":"2015-06-09T10:58:56.000-03:00"},{"id":1488,"code":"user.updated","data":{"object":{"id":64,"email":"kivanio+cb@boletosimples.com.br","account_type":"individual","sex":null,"cpf":"871.539.859-56","address_street_name":"Rua
171
- 10","address_state":null,"address_neighborhood":null,"address_postal_code":null,"address_number":"9","address_complement":null,"phone_number":null,"withdrawal_period":"monthly","notification_url":"","first_name":"Joao","middle_name":null,"last_name":"Silva","date_of_birth":null,"business_category":null,"business_subcategory":null,"business_website":null,"business_name":null,"business_legal_name":null,"business_type":null,"business_cnpj":null,"address_city_name":null,"full_name":"Joao
172
- Silva","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%2Bcb%40boletosimples.com.br\u0026token=pvcc7RVMDxh9rwwpdQRJ","mother_name":null,"father_name":null,"account_level":2},"changes":{}},"occurred_at":"2015-06-09T10:19:28.000-03:00"},{"id":1481,"code":"bank_billet.updated","data":{"object":{"id":1263,"expire_at":"2015-05-01","paid_at":null,"description":"Despesas
173
- do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/lkro","customer_person_type":"individual","customer_person_name":"Joao
174
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
175
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
176
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
177
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/lkro","formats":{"png":"https://bole.to/3/lkro.png","pdf":"https://bole.to/3/lkro.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"updated_at":["2015-06-09
178
- 10:21:28 -0300","2015-06-09 10:32:02 -0300"]}},"occurred_at":"2015-06-09T10:32:02.000-03:00"},{"id":1480,"code":"bank_billet.updated","data":{"object":{"id":1262,"expire_at":"2015-05-01","paid_at":null,"description":"Despesas
179
- do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/ymom","customer_person_type":"individual","customer_person_name":"Joao
180
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
181
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
182
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
183
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/ymom","formats":{"png":"https://bole.to/3/ymom.png","pdf":"https://bole.to/3/ymom.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"updated_at":["2015-06-09
184
- 10:20:37 -0300","2015-06-09 10:32:02 -0300"]}},"occurred_at":"2015-06-09T10:32:02.000-03:00"},{"id":1479,"code":"bank_billet.updated","data":{"object":{"id":1251,"expire_at":"2015-04-30","paid_at":null,"description":"teste","status":"generating","shorten_url":"https://bole.to/3/erwg","customer_person_type":"individual","customer_person_name":"Nome
185
- do Cliente Atualizado","customer_cnpj_cpf":"125.812.717-28","customer_address":"","customer_state":"","customer_neighborhood":"","customer_zipcode":"20071-004","customer_address_number":"","customer_address_complement":"","customer_phone_number":"","customer_email":"","created_via_api":false,"customer_city_name":null,"paid_amount":0.0,"amount":9.9,"url":"https://bole.to/3/erwg","formats":{"png":"https://bole.to/3/erwg.png","pdf":"https://bole.to/3/erwg.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"beneficiary_name":[null,"Joao
186
- Silva"],"beneficiary_cnpj_cpf":[null,"871.539.859-56"],"beneficiary_address":["","Rua
187
- 10, 9"],"updated_at":["2015-06-08 17:02:58 -0300","2015-06-09 10:32:02 -0300"]}},"occurred_at":"2015-06-09T10:32:02.000-03:00"},{"id":1478,"code":"bank_billet.updated","data":{"object":{"id":1250,"expire_at":"2015-05-01","paid_at":null,"description":"Despesas
188
- do contrato 0012","status":"generating","shorten_url":"https://bole.to/3/kyez","customer_person_type":"individual","customer_person_name":"Joao
189
- da Silva","customer_cnpj_cpf":"012.345.678-90","customer_address":"Rua quinhentos","customer_state":"RJ","customer_neighborhood":"Sao
190
- Francisco","customer_zipcode":"12312-123","customer_address_number":"111","customer_address_complement":"Sala
191
- 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
192
- de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/kyez","formats":{"png":"https://bole.to/3/kyez.png","pdf":"https://bole.to/3/kyez.pdf"},"notification_url":"","meta":null,"fine_for_delay":null,"late_payment_interest":null},"changes":{"remessa_id":[null,1],"beneficiary_name":[null,"Joao
193
- Silva"],"beneficiary_cnpj_cpf":[null,"871.539.859-56"],"beneficiary_address":["","Rua
194
- 10, 9"],"updated_at":["2015-06-08 16:54:07 -0300","2015-06-09 10:32:02 -0300"]}},"occurred_at":"2015-06-09T10:32:02.000-03:00"}]'
195
- http_version:
196
- recorded_at: Mon, 24 Aug 2015 18:10:09 GMT
197
- recorded_with: VCR 2.9.3
87
+ string: '[{"id":2355473,"code":"import.processed","data":{"object":{"id":1278,"created_rows":0,"enqueued_at":null,"started_at":"2022-02-22
88
+ 14:27:22 -0300","finished_at":"2022-02-22 14:27:23 -0300","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":"ERR
89
+ max number of clients reached","processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customers.csv","source_file_size":190,"status":"fatal_error","created_via_api":true},"changes":{"status":["started","fatal_error"],"import_errors":[null,"ERR
90
+ max number of clients reached"],"updated_at":["2022-02-22 14:27:22 -0300","2022-02-22
91
+ 14:27:23 -0300"],"finished_at":[null,"2022-02-22 14:27:23 -0300"]}},"occurred_at":"2022-02-22T14:27:23-03:00","bank_billet_account_id":null,"resource_owner_id":1278,"created_at":"2022-02-22T14:28:11-03:00","updated_at":"2022-02-22T14:28:11-03:00"},{"id":2355472,"code":"bank_billet_remittance.created","data":{"object":{"id":433976,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472528,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
92
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":433976,"created_at":"2022-02-22T14:28:11-03:00","updated_at":"2022-02-22T14:28:11-03:00"},{"id":2355471,"code":"import.processed","data":{"object":{"id":1277,"created_rows":0,"enqueued_at":null,"started_at":"2022-02-22
93
+ 14:27:22 -0300","finished_at":"2022-02-22 14:27:22 -0300","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":"ERR
94
+ max number of clients reached","processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"fatal_error","created_via_api":true},"changes":{"status":["started","fatal_error"],"import_errors":[null,"ERR
95
+ max number of clients reached"],"updated_at":["2022-02-22 14:27:22 -0300","2022-02-22
96
+ 14:27:22 -0300"],"finished_at":[null,"2022-02-22 14:27:22 -0300"]}},"occurred_at":"2022-02-22T14:27:22-03:00","bank_billet_account_id":null,"resource_owner_id":1277,"created_at":"2022-02-22T14:28:11-03:00","updated_at":"2022-02-22T14:28:11-03:00"},{"id":2355470,"code":"installment.generated","data":{"object":{"id":15264,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-15","instructions":null,"customer_id":93340,"description":"Hospedagem","created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","customer_person_name":"Joao
97
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
98
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
99
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
100
+ de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"total":3,"bank_billet_account_id":659,"status":"generated","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,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_ids":[472526,472528,472527],"bank_billets":[{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
101
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
102
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
103
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
104
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/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
105
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
106
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
107
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","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
108
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
109
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
110
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
111
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
112
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/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
113
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
114
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
115
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","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
116
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
117
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
118
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
119
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
120
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/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
121
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
122
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-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":"14000000000000083-9","processed_our_number_raw":"140000000000000839","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
124
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null}],"notes":null,"payment_count":1,"tags":[],"tag_list":null,"prevent_registration":false,"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_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_revoke":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,"guarantor_name":null,"guarantor_cnpj_cpf":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,"document_number":null,"document_date":null,"document_type":"02"},"changes":{"status":["processed","generated"],"updated_at":["2022-02-22
125
+ 14:27:02 -0300","2022-02-22 14:27:02 -0300"]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":15264,"created_at":"2022-02-22T14:28:11-03:00","updated_at":"2022-02-22T14:28:11-03:00"},{"id":2355469,"code":"bank_billet_remittance.created","data":{"object":{"id":433975,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472526,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
126
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":433975,"created_at":"2022-02-22T14:28:11-03:00","updated_at":"2022-02-22T14:28:11-03:00"},{"id":2355468,"code":"installment.created","data":{"object":{"id":15264,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-15","instructions":null,"customer_id":93340,"description":"Hospedagem","created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","customer_person_name":"Joao
127
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
128
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
129
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
130
+ de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"total":3,"bank_billet_account_id":659,"status":"processed","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,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_ids":[472526,472527,472528],"bank_billets":[{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
131
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
132
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
133
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
134
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/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
135
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
136
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
137
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","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
138
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-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":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
139
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
140
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
141
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
142
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/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":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
145
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","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.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-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":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
147
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
148
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
149
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
150
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/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
151
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
152
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-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":"14000000000000084-7","processed_our_number_raw":"140000000000000847","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
154
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-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":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null}],"notes":null,"payment_count":1,"tags":[],"tag_list":null,"prevent_registration":false,"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_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_revoke":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,"guarantor_name":null,"guarantor_cnpj_cpf":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,"document_number":null,"document_date":null,"document_type":"02"}},"occurred_at":"2022-02-22T14:27:01-03:00","bank_billet_account_id":659,"resource_owner_id":15264,"created_at":"2022-02-22T14:28:11-03:00","updated_at":"2022-02-22T14:28:11-03:00"},{"id":2355467,"code":"bank_billet_remittance.created","data":{"object":{"id":433974,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472527,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
155
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":433974,"created_at":"2022-02-22T14:28:11-03:00","updated_at":"2022-02-22T14:28:11-03:00"},{"id":2355466,"code":"installment.processed","data":{"object":{"id":15264,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-15","instructions":null,"customer_id":93340,"description":"Hospedagem","created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-03:00","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_city_name":"Rio
159
+ de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"total":3,"bank_billet_account_id":659,"status":"processed","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,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_ids":[472526,472527,472528],"bank_billets":[{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
160
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
161
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
162
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
163
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/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":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
166
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","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.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-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":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
168
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
169
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
170
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
171
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/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
172
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
173
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
174
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","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
175
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-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":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null},{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","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_ignore_sms":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/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/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
180
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
181
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
182
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","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
183
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-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":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null}],"notes":null,"payment_count":1,"tags":[],"tag_list":null,"prevent_registration":false,"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_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_revoke":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,"guarantor_name":null,"guarantor_cnpj_cpf":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,"document_number":null,"document_date":null,"document_type":"02"},"changes":{"status":["created","processed"],"updated_at":["2022-02-22
184
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":15264,"created_at":"2022-02-22T14:28:11-03:00","updated_at":"2022-02-22T14:28:11-03:00"},{"id":2355465,"code":"bank_billet_remittance.created","data":{"object":{"id":433973,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472525,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
185
+ de Título","created_at":"2022-02-22T14:26:58-03:00"}},"occurred_at":"2022-02-22T14:26:58-03:00","bank_billet_account_id":659,"resource_owner_id":433973,"created_at":"2022-02-22T14:28:10-03:00","updated_at":"2022-02-22T14:28:10-03:00"},{"id":2355464,"code":"customer_subscription.updated","data":{"object":{"id":3200,"amount":1120.4,"cycle":"monthly","next_billing":"2022-04-22","end_at":null,"instructions":null,"customer_id":93340,"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_city_name":"Rio
189
+ de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"description":"Hospedagem","created_at":"2022-02-22T14:26:57-03:00","updated_at":"2022-02-22T14:26:58-03:00","created_via_api":true,"days_in_advance":7,"bank_billet_account_id":659,"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,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"email":null,"bank_billet_layout_id":null,"bank_billet_ids":[472525],"notes":null,"payment_count":1,"tags":[],"tag_list":null,"prevent_registration":false,"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_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_revoke":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,"guarantor_name":null,"guarantor_cnpj_cpf":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},"changes":{"next_billing":["2022-03-22","2022-04-22"],"updated_at":["2022-02-22
190
+ 14:26:57 -0300","2022-02-22 14:26:58 -0300"]}},"occurred_at":"2022-02-22T14:26:58-03:00","bank_billet_account_id":659,"resource_owner_id":3200,"created_at":"2022-02-22T14:28:10-03:00","updated_at":"2022-02-22T14:28:10-03:00"},{"id":2355463,"code":"customer_subscription.updated","data":{"object":{"id":3200,"amount":1120.4,"cycle":"monthly","next_billing":"2022-03-22","end_at":null,"instructions":null,"customer_id":93340,"customer_person_name":"Joao
191
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
192
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
193
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
194
+ de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"description":"Hospedagem","created_at":"2022-02-22T14:26:57-03:00","updated_at":"2022-02-22T14:26:57-03:00","created_via_api":true,"days_in_advance":7,"bank_billet_account_id":659,"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,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"email":null,"bank_billet_layout_id":null,"bank_billet_ids":[],"notes":null,"payment_count":1,"tags":[],"tag_list":null,"prevent_registration":false,"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_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_revoke":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,"guarantor_name":null,"guarantor_cnpj_cpf":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},"changes":{"customer_id":[null,93340],"updated_at":["2022-02-22
195
+ 14:26:57 -0300","2022-02-22 14:26:57 -0300"]}},"occurred_at":"2022-02-22T14:26:57-03:00","bank_billet_account_id":659,"resource_owner_id":3200,"created_at":"2022-02-22T14:28:10-03:00","updated_at":"2022-02-22T14:28:10-03:00"},{"id":2355462,"code":"customer.created","data":{"object":{"id":93340,"city_name":"Rio
196
+ de Janeiro","person_name":"Joao da Silva","nickname":null,"address":"Rua quinhentos","address_complement":"Sala
197
+ 4","address_number":"111","mobile_number":null,"cnpj_cpf":"18.033.842/0001-05","email":"cliente@example.com","neighborhood":"Sao
198
+ Francisco","phone_number":"2112123434","zipcode":"12312123","mobile_local_code":null,"notes":null,"state":"RJ","created_via_api":true,"email_cc":null,"contact_person":null,"truncated_address":"Rua
199
+ quinhentos, 111","external_code":null,"tags":[],"tag_list":null,"custom_data":null}},"occurred_at":"2022-02-22T14:26:57-03:00","bank_billet_account_id":null,"resource_owner_id":93340,"created_at":"2022-02-22T14:28:10-03:00","updated_at":"2022-02-22T14:28:10-03:00"},{"id":2355461,"code":"import.created","data":{"object":{"id":1278,"created_rows":0,"enqueued_at":null,"started_at":null,"finished_at":null,"processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":null,"processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customers.csv","source_file_size":190,"status":"pending","created_via_api":true}},"occurred_at":"2022-02-22T14:26:54-03:00","bank_billet_account_id":null,"resource_owner_id":1278,"created_at":"2022-02-22T14:28:10-03:00","updated_at":"2022-02-22T14:28:10-03:00"},{"id":2355460,"code":"import.created","data":{"object":{"id":1277,"created_rows":0,"enqueued_at":null,"started_at":null,"finished_at":null,"processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":null,"processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"pending","created_via_api":true}},"occurred_at":"2022-02-22T14:26:49-03:00","bank_billet_account_id":null,"resource_owner_id":1277,"created_at":"2022-02-22T14:28:10-03:00","updated_at":"2022-02-22T14:28:10-03:00"},{"id":2355459,"code":"account.updated","data":{"object":{"id":8,"email":"kivanio@boletosimples.com.br","account_type":"individual","gender":"Masculino","cpf":"000.233.771-19","address_street_name":"Rua
200
+ Quatro","address_state":"MT","address_neighborhood":"CPA III","address_postal_code":"78058330","address_number":"9","address_complement":null,"phone_number":"6581214248","first_name":"Kivanio","middle_name":"Pereira","last_name":"Barbosa","date_of_birth":"1983-01-20","business_category":null,"business_subcategory":null,"business_website":null,"business_name":null,"business_legal_name":null,"business_type":null,"business_cnpj":null,"address_city_name":"Cuiabá","full_name":"Kivanio
201
+ Pereira Barbosa","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%40boletosimples.com.br","checkout_url":"http://dev.checkout.kobana.com.br:5002/#boletosimples;f0c936c6a6090f5b19419fe2f96ffdc5","mother_name":"Maria","father_name":"José","account_level":1,"billing_email":null,"configuration":null,"simple_opting":false,"rate_limits":{"get":{"limits":{"hour":100}},"post":{"limits":{"hour":18000}}},"subscription":null},"changes":{"bank_billet_accounts_count":[3,4],"updated_at":["2020-03-26
202
+ 14:38:04 -0300","2022-02-22 14:26:46 -0300"]}},"occurred_at":"2022-02-22T14:26:46-03:00","bank_billet_account_id":null,"resource_owner_id":8,"created_at":"2022-02-22T14:28:10-03:00","updated_at":"2022-02-22T14:28:10-03:00"},{"id":2355458,"code":"bank_billet.generated","data":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
203
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
204
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
205
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
206
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/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
207
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
208
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
209
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","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
210
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433975,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472526,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
211
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":472526,"created_at":"2022-02-22T14:28:10-03:00","updated_at":"2022-02-22T14:28:10-03:00"},{"id":2355457,"code":"bank_billet.generated","data":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
212
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
213
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
214
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
215
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/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
216
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
217
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
218
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","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
219
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433976,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472528,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
220
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":472528,"created_at":"2022-02-22T14:28:10-03:00","updated_at":"2022-02-22T14:28:10-03:00"},{"id":2355456,"code":"bank_billet.generated","data":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
221
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
222
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
223
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
224
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/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
225
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
226
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
227
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","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
228
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433974,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472527,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
229
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":472527,"created_at":"2022-02-22T14:28:10-03:00","updated_at":"2022-02-22T14:28:10-03:00"},{"id":2355455,"code":"bank_billet.generated","data":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
230
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
231
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
232
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
233
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/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":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
236
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","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.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433976,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472528,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
238
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":472528,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355454,"code":"bank_billet.generated","data":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
239
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
240
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
241
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
242
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/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
243
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
244
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
245
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","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
246
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433975,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472526,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
247
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":472526,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355453,"code":"bank_billet.generated","data":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
248
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
249
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
250
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
251
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/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
252
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
253
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
254
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","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
255
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433974,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472527,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
256
+ de Título","created_at":"2022-02-22T14:27:02-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":472527,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355452,"code":"bank_billet_account.created","data":{"object":{"id":4363,"bank_contract_slug":"sicoob-02","next_our_number":1,"agency_number":"4327","agency_digit":"3","account_number":"00003666","account_digit":"8","extra1":"1234567","extra1_digit":null,"extra2":null,"extra2_digit":null,"extra3":null,"beneficiary_name":"XPTO
257
+ S.A.","beneficiary_cnpj_cpf":"22.622.867/0001-11","beneficiary_address":"Rua
258
+ S, Moema, São Paulo, SP, 04524030","name":"Bancoob/Sicoob 02 CC: 00003666-8
259
+ 1234567","status":"pending","bank_contract":{"bank":{"code":"sicoob","name":"Bancoob/Sicoob","number":"756"},"slug":"sicoob-02","code":"2","sufix":"02","variation":null,"name":"1/02
260
+ - Simples Sem Registro"},"integration":false,"created_via_api":true,"homologated_at":null,"next_remittance_number":1,"configuration":null,"default":false,"custom_name":"Bancoob/Sicoob
261
+ 02 CC: 3666-8 1234567","kind":"cnab400","beneficiary_address_street":"Rua
262
+ S","beneficiary_address_street_number":null,"beneficiary_address_complement":null,"beneficiary_address_city":"São
263
+ Paulo","beneficiary_address_neighborhood":"Moema","beneficiary_address_state":"SP","beneficiary_address_zipcode":"04524030","allow_expiration_on_weekends":false}},"occurred_at":"2022-02-22T14:26:46-03:00","bank_billet_account_id":null,"resource_owner_id":4363,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355451,"code":"bank_billet.updated","data":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
264
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
265
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
266
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
267
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/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
268
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
269
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
270
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","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
271
+ 20000.100048 00000.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
272
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":472528,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355450,"code":"bank_billet.updated","data":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
273
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
274
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
275
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
276
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/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
277
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
278
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
279
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","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
280
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
281
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":472526,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355449,"code":"bank_billet.updated","data":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
282
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
283
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
284
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
285
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/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
286
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
287
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
288
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","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
289
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:02-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":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
290
+ 14:27:01 -0300","2022-02-22 14:27:02 -0300"]}},"occurred_at":"2022-02-22T14:27:02-03:00","bank_billet_account_id":659,"resource_owner_id":472527,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355448,"code":"bank_billet_discharge.created","data":{"object":{"id":21254,"occurrence":"10","date_of_occurrence":"2020-03-20","discharge_id":3321,"bank_billet_id":null,"occurrence_error":"00","line_parsed":{"cnpj_cpf":"78796613000141","agency_number":"6519","account_number":"90009999","conta_cobranca":"90009999","control_number":"","our_number":"0495853","processed_our_number_raw":"04958535","event_type":"10","paid_at":"2020-03-20","document_number":"495853","error_code":"00","banco_recebedor":"033","agencia_recebedora":"1651","bank_rate":"30","iof":"0","value_rebate":"0","discount":"0","paid_amount":"0","billet_fine":"0","other_credit":"0","credit_at":"2020-03-20","credit_amount":"0"},"line_raw":{"line_raw":"1027879661300014165199000999990009999 04958535 510200320495853 0495853500 12111900000000300350331651901000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
291
+ N 200320 SOLUCOES DIGITAIS L 00000000000000000000000000000000000000000C 325000002"},"processed_at":"2022-02-22T14:26:40-03:00","occurrence_detail":"Título
292
+ Baixado Conforme Instrução Ou Por Título Protestado 11 = Em Ser","occurrence_error_detail":null,"our_occurrence":"2074","bank_billet_account_id":null,"bank_number":"033","created_at":"2022-02-22T14:26:40-03:00","kind":"400"}},"occurred_at":"2022-02-22T14:26:40-03:00","bank_billet_account_id":null,"resource_owner_id":21254,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355447,"code":"bank_billet.created","data":{"object":{"id":472528,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
293
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
294
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
295
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
296
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/yqrngb","formats":{"default":"https://sandbox.bole.to/3/yqrngb","png":"https://sandbox.bole.to/3/yqrngb.png","pdf":"https://sandbox.bole.to/3/yqrngb.pdf","boleto_hibrido":"https://sandbox.bole.to/3/yqrngb/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/yqrngb/boleto_pix","barcode":"https://sandbox.bole.to/3/yqrngb/barcode","envelope":"https://sandbox.bole.to/3/yqrngb/envelope","letter":"https://sandbox.bole.to/3/yqrngb/letter","line":"https://sandbox.bole.to/3/yqrngb/line","recibo":"https://sandbox.bole.to/3/yqrngb/recibo","carne":"https://sandbox.bole.to/3/yqrngb/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":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
299
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000084-7","processed_our_number_raw":"140000000000000847","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.008409 1 91710000112040","our_number":"000000000000084","customer_subscription_id":null,"installment_total":3,"installment_number":3,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/yqrngb/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-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":"10491917100001120401233220000100040000000840","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/yqrngb","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2022-02-22T14:27:01-03:00","bank_billet_account_id":659,"resource_owner_id":472528,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355446,"code":"bank_billet.created","data":{"object":{"id":472526,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
301
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
302
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
303
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
304
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rdvrov","formats":{"default":"https://sandbox.bole.to/3/rdvrov","png":"https://sandbox.bole.to/3/rdvrov.png","pdf":"https://sandbox.bole.to/3/rdvrov.pdf","boleto_hibrido":"https://sandbox.bole.to/3/rdvrov/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/rdvrov/boleto_pix","barcode":"https://sandbox.bole.to/3/rdvrov/barcode","envelope":"https://sandbox.bole.to/3/rdvrov/envelope","letter":"https://sandbox.bole.to/3/rdvrov/letter","line":"https://sandbox.bole.to/3/rdvrov/line","recibo":"https://sandbox.bole.to/3/rdvrov/recibo","carne":"https://sandbox.bole.to/3/rdvrov/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
305
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
306
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
307
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000082-0","processed_our_number_raw":"140000000000000820","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
308
+ 20000.100048 00000.008235 3 91090000112040","our_number":"000000000000082","customer_subscription_id":null,"installment_total":3,"installment_number":1,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/rdvrov/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-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":"10493910900001120401233220000100040000000823","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/rdvrov","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2022-02-22T14:27:01-03:00","bank_billet_account_id":659,"resource_owner_id":472526,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355445,"code":"bank_billet.created","data":{"object":{"id":472527,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
309
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
310
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
311
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
312
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mvzyld","formats":{"default":"https://sandbox.bole.to/3/mvzyld","png":"https://sandbox.bole.to/3/mvzyld.png","pdf":"https://sandbox.bole.to/3/mvzyld.pdf","boleto_hibrido":"https://sandbox.bole.to/3/mvzyld/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/mvzyld/boleto_pix","barcode":"https://sandbox.bole.to/3/mvzyld/barcode","envelope":"https://sandbox.bole.to/3/mvzyld/envelope","letter":"https://sandbox.bole.to/3/mvzyld/letter","line":"https://sandbox.bole.to/3/mvzyld/line","recibo":"https://sandbox.bole.to/3/mvzyld/recibo","carne":"https://sandbox.bole.to/3/mvzyld/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
313
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
314
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
315
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000083-9","processed_our_number_raw":"140000000000000839","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
316
+ 20000.100048 00000.008318 9 91410000112040","our_number":"000000000000083","customer_subscription_id":null,"installment_total":3,"installment_number":2,"installment_id":15264,"carne_url":"https://sandbox.bole.to/3/mvzyld/carne","bank_billet_layout_id":null,"created_at":"2022-02-22T14:27:01-03:00","updated_at":"2022-02-22T14:27:01-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":"10499914100001120401233220000100040000000831","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:27:01-03:00","shorten_url":"https://sandbox.bole.to/3/mvzyld","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2022-02-22T14:27:01-03:00","bank_billet_account_id":659,"resource_owner_id":472527,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355444,"code":"discharge.created","data":{"object":{"id":3321,"filename":"discharge.RET","processed_at":null,"created_via_api":true,"status":"unprocessed","bank_billet_account_id":null,"created_via_integration":null,"bank_billet_discharges":[]}},"occurred_at":"2022-02-22T14:26:40-03:00","bank_billet_account_id":null,"resource_owner_id":3321,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355443,"code":"bank_billet.generated","data":{"object":{"id":472525,"expire_at":"2022-03-22","paid_at":null,"description":"Hospedagem","status":"opened","customer_person_name":"Joao
317
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
318
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
319
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
320
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zgmjoq","formats":{"default":"https://sandbox.bole.to/3/zgmjoq","png":"https://sandbox.bole.to/3/zgmjoq.png","pdf":"https://sandbox.bole.to/3/zgmjoq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjoq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjoq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjoq/barcode","envelope":"https://sandbox.bole.to/3/zgmjoq/envelope","letter":"https://sandbox.bole.to/3/zgmjoq/letter","line":"https://sandbox.bole.to/3/zgmjoq/line","recibo":"https://sandbox.bole.to/3/zgmjoq/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":659,"beneficiary_name":"Kivanio
321
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
322
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-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":"14000000000000081-2","processed_our_number_raw":"140000000000000812","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
324
+ 20000.100048 00000.008151 4 89320000112040","our_number":"000000000000081","customer_subscription_id":3200,"installment_total":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2022-02-22T14:26:58-03:00","updated_at":"2022-02-22T14:26:58-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":"10494893200001120401233220000100040000000815","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:26:58-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjoq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":433973,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":472525,"bank_billet_account_id":659,"processed_at":null,"occurrence_detail":"Entrada
325
+ de Título","created_at":"2022-02-22T14:26:58-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]}},"occurred_at":"2022-02-22T14:26:58-03:00","bank_billet_account_id":659,"resource_owner_id":472525,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355442,"code":"bank_billet.updated","data":{"object":{"id":472525,"expire_at":"2022-03-22","paid_at":null,"description":"Hospedagem","status":"opened","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_ignore_sms":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/zgmjoq","formats":{"default":"https://sandbox.bole.to/3/zgmjoq","png":"https://sandbox.bole.to/3/zgmjoq.png","pdf":"https://sandbox.bole.to/3/zgmjoq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjoq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjoq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjoq/barcode","envelope":"https://sandbox.bole.to/3/zgmjoq/envelope","letter":"https://sandbox.bole.to/3/zgmjoq/letter","line":"https://sandbox.bole.to/3/zgmjoq/line","recibo":"https://sandbox.bole.to/3/zgmjoq/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":659,"beneficiary_name":"Kivanio
330
+ Pereira Barbosa","beneficiary_cnpj_cpf":"000.233.771-19","beneficiary_address":"Rua
331
+ Quatro, 9, 78058-330","beneficiary_assignor_code":"0001/123322-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
332
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000081-2","processed_our_number_raw":"140000000000000812","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
333
+ 20000.100048 00000.008151 4 89320000112040","our_number":"000000000000081","customer_subscription_id":3200,"installment_total":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2022-02-22T14:26:58-03:00","updated_at":"2022-02-22T14:26:58-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":"10494893200001120401233220000100040000000815","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:26:58-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjoq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[],"pix":[]},"changes":{"status":["generating","opened"],"updated_at":["2022-02-22
334
+ 14:26:58 -0300","2022-02-22 14:26:58 -0300"]}},"occurred_at":"2022-02-22T14:26:58-03:00","bank_billet_account_id":659,"resource_owner_id":472525,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355441,"code":"bank_billet.created","data":{"object":{"id":472525,"expire_at":"2022-03-22","paid_at":null,"description":"Hospedagem","status":"generating","customer_person_name":"Joao
335
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
336
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
337
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_ignore_sms":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
338
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zgmjoq","formats":{"default":"https://sandbox.bole.to/3/zgmjoq","png":"https://sandbox.bole.to/3/zgmjoq.png","pdf":"https://sandbox.bole.to/3/zgmjoq.pdf","boleto_hibrido":"https://sandbox.bole.to/3/zgmjoq/boleto_hibrido","boleto_pix":"https://sandbox.bole.to/3/zgmjoq/boleto_pix","barcode":"https://sandbox.bole.to/3/zgmjoq/barcode","envelope":"https://sandbox.bole.to/3/zgmjoq/envelope","letter":"https://sandbox.bole.to/3/zgmjoq/letter","line":"https://sandbox.bole.to/3/zgmjoq/line","recibo":"https://sandbox.bole.to/3/zgmjoq/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":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":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
341
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"14000000000000081-2","processed_our_number_raw":"140000000000000812","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.008151 4 89320000112040","our_number":"000000000000081","customer_subscription_id":3200,"installment_total":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2022-02-22T14:26:58-03:00","updated_at":"2022-02-22T14:26:58-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":"10494893200001120401233220000100040000000815","registered_at":null,"prevent_registration":false,"customer_id":93340,"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,"issued_at":"2022-02-22T14:26:58-03:00","shorten_url":"https://sandbox.bole.to/3/zgmjoq","pix_enabled":false,"pix_qrcode":null,"password_protected_mode":null,"revoked_at":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2022-02-22T14:26:58-03:00","bank_billet_account_id":659,"resource_owner_id":472525,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355440,"code":"customer.created","data":{"object":{"id":93339,"city_name":"Rio
343
+ de Janeiro","person_name":"Maria José","nickname":null,"address":"Rua quinhentos","address_complement":"Sala
344
+ 4","address_number":"111","mobile_number":null,"cnpj_cpf":"54.872.822/0001-91","email":"cliente@example.com","neighborhood":"bairro","phone_number":"2112123434","zipcode":"12312123","mobile_local_code":null,"notes":null,"state":"RJ","created_via_api":true,"email_cc":null,"contact_person":null,"truncated_address":"Rua
345
+ quinhentos, 111","external_code":null,"tags":[],"tag_list":null,"custom_data":null}},"occurred_at":"2022-02-22T14:26:35-03:00","bank_billet_account_id":null,"resource_owner_id":93339,"created_at":"2022-02-22T14:28:09-03:00","updated_at":"2022-02-22T14:28:09-03:00"},{"id":2355439,"code":"user.updated","data":{"object":{"id":8,"email":"kivanio@boletosimples.com.br","first_name":"Kivanio","middle_name":"Pereira","last_name":"Barbosa","full_name":"Kivanio
346
+ Pereira Barbosa","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%40boletosimples.com.br"},"changes":{"updated_at":["2022-02-21
347
+ 12:37:46 -0300","2022-02-22 14:22:28 -0300"],"sign_in_count":[365,366],"current_sign_in_at":["2022-02-21
348
+ 12:37:46 -0300","2022-02-22 14:22:28 -0300"],"last_sign_in_at":["2022-02-18
349
+ 09:33:18 -0300","2022-02-21 12:37:46 -0300"],"current_sign_in_ip":["64.252.66.124","64.252.69.80"],"last_sign_in_ip":["64.252.66.143","64.252.66.124"]}},"occurred_at":"2022-02-22T14:22:28-03:00","bank_billet_account_id":null,"resource_owner_id":8,"created_at":"2022-02-22T14:23:18-03:00","updated_at":"2022-02-22T14:23:18-03:00"},{"id":2355437,"code":"user.updated","data":{"object":{"id":8,"email":"kivanio@boletosimples.com.br","first_name":"Kivanio","middle_name":"Pereira","last_name":"Barbosa","full_name":"Kivanio
350
+ Pereira Barbosa","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%40boletosimples.com.br"},"changes":{}},"occurred_at":"2022-02-21T12:37:46-03:00","bank_billet_account_id":null,"resource_owner_id":8,"created_at":"2022-02-22T14:23:18-03:00","updated_at":"2022-02-22T14:23:18-03:00"},{"id":2354627,"code":"user.updated","data":{"object":{"id":8,"email":"kivanio@boletosimples.com.br","first_name":"Kivanio","middle_name":"Pereira","last_name":"Barbosa","full_name":"Kivanio
351
+ Pereira Barbosa","login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%40boletosimples.com.br"},"changes":{"updated_at":["2022-02-18
352
+ 09:33:18 -0300","2022-02-21 12:37:46 -0300"],"sign_in_count":[364,365],"current_sign_in_at":["2022-02-18
353
+ 09:33:18 -0300","2022-02-21 12:37:46 -0300"],"last_sign_in_at":["2021-04-09
354
+ 09:10:12 -0300","2022-02-18 09:33:18 -0300"],"current_sign_in_ip":["64.252.66.143","64.252.66.124"],"last_sign_in_ip":["179.217.107.120","64.252.66.143"]}},"occurred_at":"2022-02-21T12:37:46-03:00","bank_billet_account_id":null,"resource_owner_id":8,"created_at":"2022-02-21T12:38:34-03:00","updated_at":"2022-02-21T12:38:34-03:00"}]'
355
+ recorded_at: Tue, 22 Feb 2022 17:30:44 GMT
356
+ recorded_with: VCR 6.0.0