boletosimples 0.4.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +9 -17
  3. data/README.md +14 -54
  4. data/lib/boletosimples.rb +9 -6
  5. data/lib/boletosimples/configuration.rb +19 -28
  6. data/lib/boletosimples/last_request.rb +12 -9
  7. data/lib/boletosimples/middlewares/bearer.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 +6 -0
  15. data/lib/boletosimples/resources/bank_billet_payment.rb +6 -0
  16. data/lib/boletosimples/resources/bank_billet_remittance.rb +6 -0
  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 +6 -0
  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 +8 -3
  32. data/lib/boletosimples/version.rb +3 -1
  33. data/spec/boletosimples/configuration_spec.rb +71 -99
  34. data/spec/boletosimples/last_request_spec.rb +16 -28
  35. data/spec/boletosimples/resources/bank_billet_account_spec.rb +57 -33
  36. data/spec/boletosimples/resources/bank_billet_discharge_spec.rb +12 -0
  37. data/spec/boletosimples/resources/bank_billet_payment_spec.rb +12 -0
  38. data/spec/boletosimples/resources/bank_billet_remittance_spec.rb +12 -0
  39. data/spec/boletosimples/resources/bank_billet_spec.rb +56 -42
  40. data/spec/boletosimples/resources/customer_import_spec.rb +41 -30
  41. data/spec/boletosimples/resources/customer_spec.rb +52 -39
  42. data/spec/boletosimples/resources/customer_subscription_import_spec.rb +41 -30
  43. data/spec/boletosimples/resources/customer_subscription_spec.rb +61 -33
  44. data/spec/boletosimples/resources/discharge_spec.rb +64 -11
  45. data/spec/boletosimples/resources/email_delivery_spec.rb +12 -0
  46. data/spec/boletosimples/resources/event_spec.rb +7 -12
  47. data/spec/boletosimples/resources/installment_spec.rb +61 -32
  48. data/spec/boletosimples/resources/remittance_spec.rb +7 -12
  49. data/spec/boletosimples/resources/sms_delivery_spec.rb +12 -0
  50. data/spec/boletosimples/resources/transactions_spec.rb +7 -12
  51. data/spec/boletosimples/resources/webhook_delivery_spec.rb +7 -12
  52. data/spec/boletosimples/resources/webhook_spec.rb +7 -12
  53. data/spec/fixtures/discharge.RET +3 -0
  54. data/spec/fixtures/vcr_cassettes/last_request/bank_billets.yml +536 -88
  55. data/spec/fixtures/vcr_cassettes/resources/bank_billet/all.yml +537 -91
  56. data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/success.yml +34 -92
  57. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_params.yml +32 -20
  58. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_root.yml +28 -17
  59. data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/valid.yml +43 -27
  60. data/spec/fixtures/vcr_cassettes/resources/bank_billet/duplicate/success.yml +83 -0
  61. data/spec/fixtures/vcr_cassettes/resources/bank_billet/find.yml +51 -27
  62. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/all.yml +131 -20
  63. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_params.yml +34 -20
  64. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_root.yml +30 -19
  65. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/valid.yml +41 -21
  66. data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/find.yml +38 -18
  67. data/spec/fixtures/vcr_cassettes/resources/bank_billet_discharge/all.yml +97 -0
  68. data/spec/fixtures/vcr_cassettes/resources/bank_billet_payment/all.yml +75 -0
  69. data/spec/fixtures/vcr_cassettes/resources/bank_billet_remittance/all.yml +126 -0
  70. data/spec/fixtures/vcr_cassettes/resources/customer/all.yml +79 -32
  71. data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_params.yml +30 -17
  72. data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_root.yml +28 -17
  73. data/spec/fixtures/vcr_cassettes/resources/customer/create/valid.yml +33 -21
  74. data/spec/fixtures/vcr_cassettes/resources/customer/find.yml +33 -19
  75. data/spec/fixtures/vcr_cassettes/resources/customer_import/all.yml +43 -60
  76. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_params.yml +37 -51
  77. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_root.yml +38 -52
  78. data/spec/fixtures/vcr_cassettes/resources/customer_import/create/valid.yml +43 -68
  79. data/spec/fixtures/vcr_cassettes/resources/customer_import/find.yml +40 -54
  80. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/all.yml +102 -52
  81. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_params.yml +40 -50
  82. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_root.yml +36 -48
  83. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/valid.yml +48 -53
  84. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/find.yml +44 -50
  85. data/spec/fixtures/vcr_cassettes/resources/customer_subscription/next_charge.yml +45 -133
  86. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/all.yml +44 -55
  87. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_params.yml +37 -52
  88. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_root.yml +39 -53
  89. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/valid.yml +43 -70
  90. data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/find.yml +40 -55
  91. data/spec/fixtures/vcr_cassettes/resources/discharge/all.yml +64 -33
  92. data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_params.yml +70 -0
  93. data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_root.yml +69 -0
  94. data/spec/fixtures/vcr_cassettes/resources/discharge/create/valid.yml +84 -0
  95. data/spec/fixtures/vcr_cassettes/resources/discharge/find.yml +71 -0
  96. data/spec/fixtures/vcr_cassettes/resources/email_delivery/all.yml +73 -0
  97. data/spec/fixtures/vcr_cassettes/resources/event/all.yml +490 -166
  98. data/spec/fixtures/vcr_cassettes/resources/installment/all.yml +418 -52
  99. data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_params.yml +41 -52
  100. data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_root.yml +36 -48
  101. data/spec/fixtures/vcr_cassettes/resources/installment/create/valid.yml +48 -53
  102. data/spec/fixtures/vcr_cassettes/resources/installment/find.yml +44 -52
  103. data/spec/fixtures/vcr_cassettes/resources/remittance/all.yml +53 -33
  104. data/spec/fixtures/vcr_cassettes/resources/sns_delivery/all.yml +73 -0
  105. data/spec/fixtures/vcr_cassettes/resources/transaction/all.yml +34 -22
  106. data/spec/fixtures/vcr_cassettes/resources/web_hook/all.yml +42 -33
  107. data/spec/fixtures/vcr_cassettes/resources/webhook_delivery/all.yml +1232 -54
  108. data/spec/spec_helper.rb +3 -20
  109. data/spec/support/stub_env.rb +7 -0
  110. data/spec/support/vcr.rb +3 -4
  111. metadata +120 -55
  112. data/.coveralls.yml +0 -2
  113. data/.gitignore +0 -19
  114. data/.ruby-gemset +0 -1
  115. data/.ruby-version +0 -1
  116. data/.travis.yml +0 -12
  117. data/Gemfile +0 -4
  118. data/Rakefile +0 -6
  119. data/boletosimples.gemspec +0 -38
  120. data/lib/boletosimples/extra.rb +0 -8
  121. data/lib/boletosimples/resources/partner/user.rb +0 -7
  122. data/lib/oauth2_patch.rb +0 -24
  123. data/spec/boletosimples/extra_spec.rb +0 -31
  124. data/spec/boletosimples/resources/partner/user_spec.rb +0 -19
  125. data/spec/fixtures/vcr_cassettes/configuration/client_credentials/invalid.yml +0 -64
  126. data/spec/fixtures/vcr_cassettes/configuration/client_credentials/valid.yml +0 -56
  127. data/spec/fixtures/vcr_cassettes/extra/userinfo/authenticated.yml +0 -58
  128. data/spec/fixtures/vcr_cassettes/extra/userinfo/not_authenticated.yml +0 -54
  129. data/spec/fixtures/vcr_cassettes/last_request/userinfo.yml +0 -58
  130. data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/failure.yml +0 -118
  131. data/spec/fixtures/vcr_cassettes/resources/partner/user/create.yml +0 -60
  132. data/spec/spec.opts +0 -8
@@ -2,63 +2,83 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://sandbox.boletosimples.com.br/api/v1/remittances?access_token=BOLETOSIMPLES_ACCESS_TOKEN
5
+ uri: https://sandbox.boletosimples.com.br/api/v1/remittances
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
+ Server:
24
+ - Cowboy
23
25
  Connection:
24
26
  - keep-alive
27
+ X-Frame-Options:
28
+ - DENY
29
+ X-Xss-Protection:
30
+ - 1; mode=block
31
+ X-Content-Type-Options:
32
+ - nosniff
33
+ X-Download-Options:
34
+ - noopen
35
+ X-Permitted-Cross-Domain-Policies:
36
+ - none
37
+ Referrer-Policy:
38
+ - strict-origin-when-cross-origin
39
+ Per-Page:
40
+ - '50'
41
+ Page:
42
+ - ''
25
43
  Content-Type:
26
44
  - application/json; charset=utf-8
27
- Transfer-Encoding:
28
- - chunked
29
- Status:
30
- - 200 OK
31
- Cache-Control:
32
- - must-revalidate, private, max-age=0
33
45
  X-Ratelimit-Limit:
34
- - '500'
35
- Date:
36
- - Mon, 24 Aug 2015 18:00:12 GMT
37
- Strict-Transport-Security:
38
- - max-age=2592000
46
+ - '60'
39
47
  X-Ratelimit-Remaining:
40
- - '499'
41
- Vary:
42
- - Accept-Encoding
43
- X-Request-Id:
44
- - 23d745ee-0225-43f4-aa53-061727ff9bc9
45
- Total:
46
- - '1'
48
+ - '48'
47
49
  Etag:
48
- - W/"895aedce469530ceac59ec2bf17eb5b3"
50
+ - W/"c6dffee977e49ac44b9150d254522678"
51
+ Cache-Control:
52
+ - must-revalidate, private, max-age=0
53
+ X-Request-Id:
54
+ - c6ac7f05-59bb-472c-992a-f12624a66297
49
55
  X-Runtime:
50
- - '0.194253'
56
+ - '0.050576'
57
+ Date:
58
+ - Tue, 13 Apr 2021 17:18:39 GMT
51
59
  X-Rack-Cache:
52
60
  - miss
53
- X-Powered-By:
54
- - Phusion Passenger 5.0.15
55
- Server:
56
- - nginx/1.8.0 + Phusion Passenger 5.0.15
61
+ Strict-Transport-Security:
62
+ - max-age=2629746
63
+ Vary:
64
+ - Origin,Accept-Encoding
65
+ Transfer-Encoding:
66
+ - chunked
57
67
  Via:
58
68
  - 1.1 vegur
59
69
  body:
60
70
  encoding: UTF-8
61
- string: '[{"id":1,"filename":"0806201501.REM","created_via_api":false,"status":"processed","bank_billet_account_id":10,"created_at":"2015-06-08","processed_at":"2015-06-09","url":"https://sandbox.boletosimples.com.br/api/v1/remittances/1/raw"}]'
62
- http_version:
63
- recorded_at: Mon, 24 Aug 2015 18:00:12 GMT
64
- recorded_with: VCR 2.9.3
71
+ string: '[{"id":2350,"filename":"2104131.REM","created_via_api":false,"status":"processed","bank_billet_account_id":3547,"created_at":"2021-04-13T09:30:38-03:00","processed_at":"2021-04-13T09:30:39-03:00","url":"https://sandbox.boletosimples.com.br/remessas/0636d86fb51bd17d3f65c73e20b87ecd/download","bank_billet_ids":[382118,382118,382119,382120,382121,382122,382261,382262,382263,382264,382264],"remittance_number":3,"sent_via_integration":null,"bank_billet_remittances":[{"id":347978,"our_code":"1002","occurrence":"02","remittance_id":2350,"bank_billet_id":382118,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Pedido
72
+ de Baixa","created_at":"2021-04-12T11:51:09-03:00"},{"id":347979,"our_code":"1001","occurrence":"01","remittance_id":2350,"bank_billet_id":382118,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Entrada
73
+ de Título","created_at":"2021-04-12T11:51:10-03:00"},{"id":347980,"our_code":"1001","occurrence":"01","remittance_id":2350,"bank_billet_id":382119,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Entrada
74
+ de Título","created_at":"2021-04-12T11:55:04-03:00"},{"id":347981,"our_code":"1001","occurrence":"01","remittance_id":2350,"bank_billet_id":382120,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Entrada
75
+ de Título","created_at":"2021-04-12T11:55:16-03:00"},{"id":347982,"our_code":"1001","occurrence":"01","remittance_id":2350,"bank_billet_id":382121,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Entrada
76
+ de Título","created_at":"2021-04-12T11:55:18-03:00"},{"id":347983,"our_code":"1001","occurrence":"01","remittance_id":2350,"bank_billet_id":382122,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Entrada
77
+ de Título","created_at":"2021-04-12T11:55:20-03:00"},{"id":348115,"our_code":"1001","occurrence":"01","remittance_id":2350,"bank_billet_id":382261,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Entrada
78
+ de Título","created_at":"2021-04-13T09:27:23-03:00"},{"id":348116,"our_code":"1001","occurrence":"01","remittance_id":2350,"bank_billet_id":382262,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Entrada
79
+ de Título","created_at":"2021-04-13T09:27:23-03:00"},{"id":348117,"our_code":"1001","occurrence":"01","remittance_id":2350,"bank_billet_id":382263,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Entrada
80
+ de Título","created_at":"2021-04-13T09:27:25-03:00"},{"id":348118,"our_code":"1001","occurrence":"01","remittance_id":2350,"bank_billet_id":382264,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Entrada
81
+ de Título","created_at":"2021-04-13T09:27:31-03:00"},{"id":348119,"our_code":"1034","occurrence":"34","remittance_id":2350,"bank_billet_id":382264,"bank_billet_account_id":3547,"processed_at":"2021-04-13T09:30:40-03:00","occurrence_detail":"Pago
82
+ diretamente ao beneficiário","created_at":"2021-04-13T09:30:20-03:00"}]}]'
83
+ recorded_at: Tue, 13 Apr 2021 17:18:39 GMT
84
+ recorded_with: VCR 6.0.0
@@ -0,0 +1,73 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://sandbox.boletosimples.com.br/api/v1/sms_deliveries
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - email@minhaempresa.com.br
12
+ Authorization:
13
+ - Bearer BOLETOSIMPLES_API_TOKEN
14
+ Accept:
15
+ - application/json
16
+ Accept-Encoding:
17
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Server:
24
+ - Cowboy
25
+ Connection:
26
+ - keep-alive
27
+ X-Frame-Options:
28
+ - DENY
29
+ X-Xss-Protection:
30
+ - 1; mode=block
31
+ X-Content-Type-Options:
32
+ - nosniff
33
+ X-Download-Options:
34
+ - noopen
35
+ X-Permitted-Cross-Domain-Policies:
36
+ - none
37
+ Referrer-Policy:
38
+ - strict-origin-when-cross-origin
39
+ Per-Page:
40
+ - '50'
41
+ Page:
42
+ - ''
43
+ Content-Type:
44
+ - application/json; charset=utf-8
45
+ X-Ratelimit-Limit:
46
+ - '60'
47
+ X-Ratelimit-Remaining:
48
+ - '59'
49
+ Etag:
50
+ - W/"4f53cda18c2baa0c0354bb5f9a3ecbe5"
51
+ Cache-Control:
52
+ - must-revalidate, private, max-age=0
53
+ X-Request-Id:
54
+ - 53c3e015-ffb8-415a-89c0-c3270a2f33d8
55
+ X-Runtime:
56
+ - '0.029776'
57
+ Date:
58
+ - Tue, 13 Apr 2021 17:18:15 GMT
59
+ X-Rack-Cache:
60
+ - miss
61
+ Strict-Transport-Security:
62
+ - max-age=2629746
63
+ Vary:
64
+ - Origin,Accept-Encoding
65
+ Transfer-Encoding:
66
+ - chunked
67
+ Via:
68
+ - 1.1 vegur
69
+ body:
70
+ encoding: UTF-8
71
+ string: "[]"
72
+ recorded_at: Tue, 13 Apr 2021 17:18:15 GMT
73
+ recorded_with: VCR 6.0.0
@@ -2,19 +2,19 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://sandbox.boletosimples.com.br/api/v1/transactions?access_token=BOLETOSIMPLES_ACCESS_TOKEN
5
+ uri: https://sandbox.boletosimples.com.br/api/v1/transactions
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - BoletoSimples Ruby Client v0.1.0 (contato@boletosimples.com.br)
11
+ - email@minhaempresa.com.br
12
12
  Authorization:
13
- - Token token="BOLETOSIMPLES_ACCESS_TOKEN"
13
+ - Bearer BOLETOSIMPLES_API_TOKEN
14
+ Accept:
15
+ - application/json
14
16
  Accept-Encoding:
15
17
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
- Accept:
17
- - "*/*"
18
18
  response:
19
19
  status:
20
20
  code: 200
@@ -24,39 +24,51 @@ http_interactions:
24
24
  - Cowboy
25
25
  Connection:
26
26
  - keep-alive
27
- Strict-Transport-Security:
28
- - max-age=2592000
29
- Total:
30
- - '2'
27
+ X-Frame-Options:
28
+ - DENY
29
+ X-Xss-Protection:
30
+ - 1; mode=block
31
+ X-Content-Type-Options:
32
+ - nosniff
33
+ X-Download-Options:
34
+ - noopen
35
+ X-Permitted-Cross-Domain-Policies:
36
+ - none
37
+ Referrer-Policy:
38
+ - strict-origin-when-cross-origin
39
+ Per-Page:
40
+ - '50'
41
+ Page:
42
+ - ''
31
43
  Content-Type:
32
44
  - application/json; charset=utf-8
33
45
  X-Ratelimit-Limit:
34
- - '500'
46
+ - '60'
35
47
  X-Ratelimit-Remaining:
36
- - '467'
48
+ - '39'
37
49
  Etag:
38
- - W/"2e1210e97d24b7cdbb9fc07792ae2aed"
50
+ - W/"4642ec3d0b34807fa3dcb57d6ebca932"
39
51
  Cache-Control:
40
52
  - must-revalidate, private, max-age=0
41
53
  X-Request-Id:
42
- - 13ec92f4-227a-4a3b-b9bd-132b34206857
54
+ - a207601d-1426-45bc-aaeb-4d1413f507c3
43
55
  X-Runtime:
44
- - '0.103404'
56
+ - '0.039746'
45
57
  Date:
46
- - Sun, 08 Mar 2015 19:55:31 GMT
58
+ - Tue, 13 Apr 2021 17:18:55 GMT
47
59
  X-Rack-Cache:
48
60
  - miss
61
+ Strict-Transport-Security:
62
+ - max-age=2629746
49
63
  Vary:
50
- - Accept-Encoding
64
+ - Origin,Accept-Encoding
51
65
  Transfer-Encoding:
52
66
  - chunked
53
67
  Via:
54
68
  - 1.1 vegur
55
69
  body:
56
70
  encoding: UTF-8
57
- string: '[{"id":59,"amount":9.01,"created_at":"2015-02-10","description":"Boleto
58
- Bancário 688","kind":"credit","processed_at":"2015-02-19","sent_at":null,"status":"processed","credit_at":"2015-02-19"},{"id":60,"amount":-5.0,"created_at":"2015-02-10","description":"Boleto
59
- Bancário 688","kind":"fee","processed_at":"2015-02-19","sent_at":null,"status":"processed","credit_at":"2015-02-19"}]'
60
- http_version:
61
- recorded_at: Sun, 08 Mar 2015 19:55:31 GMT
62
- recorded_with: VCR 2.9.3
71
+ string: '[{"id":526,"amount":-123.0,"created_at":"2021-04-13T09:34:52-03:00","description":"Upgrade
72
+ de Plano","kind":"plan_fee","processed_at":null,"sent_at":null,"status":"unprocessed","credit_at":"2021-04-13"}]'
73
+ recorded_at: Tue, 13 Apr 2021 17:18:55 GMT
74
+ recorded_with: VCR 6.0.0
@@ -2,63 +2,72 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://sandbox.boletosimples.com.br/api/v1/webhooks?access_token=BOLETOSIMPLES_ACCESS_TOKEN
5
+ uri: https://sandbox.boletosimples.com.br/api/v1/webhooks
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
+ Server:
24
+ - Cowboy
23
25
  Connection:
24
26
  - keep-alive
27
+ X-Frame-Options:
28
+ - DENY
29
+ X-Xss-Protection:
30
+ - 1; mode=block
31
+ X-Content-Type-Options:
32
+ - nosniff
33
+ X-Download-Options:
34
+ - noopen
35
+ X-Permitted-Cross-Domain-Policies:
36
+ - none
37
+ Referrer-Policy:
38
+ - strict-origin-when-cross-origin
39
+ Per-Page:
40
+ - '50'
41
+ Page:
42
+ - ''
25
43
  Content-Type:
26
44
  - application/json; charset=utf-8
27
- Transfer-Encoding:
28
- - chunked
29
- Status:
30
- - 200 OK
31
- Cache-Control:
32
- - must-revalidate, private, max-age=0
33
45
  X-Ratelimit-Limit:
34
- - '500'
35
- Date:
36
- - Mon, 24 Aug 2015 18:19:42 GMT
37
- Strict-Transport-Security:
38
- - max-age=2592000
46
+ - '60'
39
47
  X-Ratelimit-Remaining:
40
- - '492'
41
- Vary:
42
- - Accept-Encoding
43
- X-Request-Id:
44
- - 87f24b72-4d2c-4d34-a42c-96da07bdeb9c
45
- Total:
46
- - '1'
48
+ - '52'
47
49
  Etag:
48
- - W/"e37218891cd4584530ca6b91573d338e"
50
+ - W/"88dbb05d87d7e2af22f847e4896fe83c"
51
+ Cache-Control:
52
+ - must-revalidate, private, max-age=0
53
+ X-Request-Id:
54
+ - e5d86cc6-2a8a-43ef-8cfe-58886569fbf2
49
55
  X-Runtime:
50
- - '0.029120'
56
+ - '0.033169'
57
+ Date:
58
+ - Tue, 13 Apr 2021 17:18:29 GMT
51
59
  X-Rack-Cache:
52
60
  - miss
53
- X-Powered-By:
54
- - Phusion Passenger 5.0.15
55
- Server:
56
- - nginx/1.8.0 + Phusion Passenger 5.0.15
61
+ Strict-Transport-Security:
62
+ - max-age=2629746
63
+ Vary:
64
+ - Origin,Accept-Encoding
65
+ Transfer-Encoding:
66
+ - chunked
57
67
  Via:
58
68
  - 1.1 vegur
59
69
  body:
60
70
  encoding: UTF-8
61
- string: '[{"id":48,"url":"https://example.com","content_type":"application/json","events":["*"],"ssl_verification_enabled":true,"active":true}]'
62
- http_version:
63
- recorded_at: Mon, 24 Aug 2015 18:19:42 GMT
64
- recorded_with: VCR 2.9.3
71
+ string: '[{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"secret_key":"7d467d0d0902c2052961282bdb7b688472f808ceb2a2192f4377bcd103de2d80","bank_billet_account_id":null,"concurrency_limit":10}]'
72
+ recorded_at: Tue, 13 Apr 2021 17:18:29 GMT
73
+ recorded_with: VCR 6.0.0
@@ -2,84 +2,1262 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://sandbox.boletosimples.com.br/api/v1/webhook_deliveries?access_token=BOLETOSIMPLES_ACCESS_TOKEN
5
+ uri: https://sandbox.boletosimples.com.br/api/v1/webhook_deliveries
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
+ Server:
24
+ - Cowboy
23
25
  Connection:
24
26
  - keep-alive
27
+ X-Frame-Options:
28
+ - DENY
29
+ X-Xss-Protection:
30
+ - 1; mode=block
31
+ X-Content-Type-Options:
32
+ - nosniff
33
+ X-Download-Options:
34
+ - noopen
35
+ X-Permitted-Cross-Domain-Policies:
36
+ - none
37
+ Referrer-Policy:
38
+ - strict-origin-when-cross-origin
39
+ Link:
40
+ - <https://sandbox.boletosimples.com.br/api/v1/webhook_deliveries?page=2>; rel="next"
41
+ Per-Page:
42
+ - '50'
43
+ Page:
44
+ - ''
25
45
  Content-Type:
26
46
  - application/json; charset=utf-8
27
- Transfer-Encoding:
28
- - chunked
29
- Status:
30
- - 200 OK
31
- Cache-Control:
32
- - must-revalidate, private, max-age=0
33
47
  X-Ratelimit-Limit:
34
- - '500'
35
- Date:
36
- - Mon, 24 Aug 2015 18:22:27 GMT
37
- Strict-Transport-Security:
38
- - max-age=2592000
48
+ - '60'
39
49
  X-Ratelimit-Remaining:
40
- - '491'
41
- Vary:
42
- - Accept-Encoding
43
- X-Request-Id:
44
- - 27610549-e053-4cce-b496-6e097d680193
45
- Total:
46
- - '1'
50
+ - '54'
47
51
  Etag:
48
- - W/"821177355d204f38ed3af15a2aecde23"
52
+ - W/"1023ffa5009a4928797b2c0062c4b819"
53
+ Cache-Control:
54
+ - must-revalidate, private, max-age=0
55
+ X-Request-Id:
56
+ - 7a5d9511-851a-4087-85c9-e671aa32fdee
49
57
  X-Runtime:
50
- - '0.065348'
58
+ - '0.855763'
59
+ Date:
60
+ - Tue, 13 Apr 2021 17:18:27 GMT
51
61
  X-Rack-Cache:
52
62
  - miss
53
- X-Powered-By:
54
- - Phusion Passenger 5.0.15
55
- Server:
56
- - nginx/1.8.0 + Phusion Passenger 5.0.15
63
+ Strict-Transport-Security:
64
+ - max-age=2629746
65
+ Vary:
66
+ - Origin,Accept-Encoding
67
+ Transfer-Encoding:
68
+ - chunked
57
69
  Via:
58
70
  - 1.1 vegur
59
71
  body:
60
72
  encoding: UTF-8
61
- string: '[{"id":1434,"uid":"476750a1-bbdf-4e2c-b821-ce80d916af1d","url":"https://example.com","duration":194,"request_headers":{"X-BoletoSimples-Event":"ping","X-Hub-Signature":"sha1=fb0ba87d0416cfaadc762b7296f4a2edeeb3501b","X-BoletoSimples-Delivery-Id":"476750a1-bbdf-4e2c-b821-ce80d916af1d","X-BoletoSimples-Environment":"sandbox","User-Agent":"BoletoSimples-Robot
62
- (sandbox)","Content-Type":"application/json"},"request_payload":{"event_code":"ping","webhook":{"id":48,"url":"https://example.com"}},"request_error":null,"response_body":"\u003c!doctype
63
- html\u003e\n\u003chtml\u003e\n\u003chead\u003e\n \u003ctitle\u003eExample
64
- Domain\u003c/title\u003e\n\n \u003cmeta charset=\"utf-8\" /\u003e\n \u003cmeta
65
- http-equiv=\"Content-type\" content=\"text/html; charset=utf-8\" /\u003e\n \u003cmeta
66
- name=\"viewport\" content=\"width=device-width, initial-scale=1\" /\u003e\n \u003cstyle
67
- type=\"text/css\"\u003e\n body {\n background-color: #f0f0f2;\n margin:
68
- 0;\n padding: 0;\n font-family: \"Open Sans\", \"Helvetica Neue\",
69
- Helvetica, Arial, sans-serif;\n \n }\n div {\n width:
70
- 600px;\n margin: 5em auto;\n padding: 50px;\n background-color:
71
- #fff;\n border-radius: 1em;\n }\n a:link, a:visited {\n color:
72
- #38488f;\n text-decoration: none;\n }\n @media (max-width: 700px)
73
- {\n body {\n background-color: #fff;\n }\n div
74
- {\n width: auto;\n margin: 0 auto;\n border-radius:
75
- 0;\n padding: 1em;\n }\n }\n \u003c/style\u003e \n\u003c/head\u003e\n\n\u003cbody\u003e\n\u003cdiv\u003e\n \u003ch1\u003eExample
76
- Domain\u003c/h1\u003e\n \u003cp\u003eThis domain is established to be used
77
- for illustrative examples in documents. You may use this\n domain in examples
78
- without prior coordination or asking for permission.\u003c/p\u003e\n \u003cp\u003e\u003ca
79
- href=\"http://www.iana.org/domains/example\"\u003eMore information...\u003c/a\u003e\u003c/p\u003e\n\u003c/div\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n","response_code":200,"response_headers":{"accept-ranges":["bytes"],"cache-control":["max-age=604800"],"content-type":["text/html"],"date":["Mon,
80
- 24 Aug 2015 18:19:26 GMT"],"etag":["\"359670651\""],"expires":["Mon, 31 Aug
81
- 2015 18:19:26 GMT"],"last-modified":["Fri, 09 Aug 2013 23:54:35 GMT"],"server":["EOS
82
- (lax004/2816)"],"content-length":["1270"],"connection":["close"]},"response_message":"OK","delivered_at":"2015-08-24T15:19:26.452-03:00","event":null}]'
83
- http_version:
84
- recorded_at: Mon, 24 Aug 2015 18:22:27 GMT
85
- recorded_with: VCR 2.9.3
73
+ string: '[{"id":608597,"uid":"5000fb20-27e8-4653-bcb7-2fcef2cae277","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":122,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=c07282a02d9319f971192e904dd2cd3726964c1c","X-BoletoSimples-Delivery-Id":"5000fb20-27e8-4653-bcb7-2fcef2cae277","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
74
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382350,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzjmd","customer_person_name":"Joao
75
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
76
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
77
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
78
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzjmd","formats":{"default":"https://sandbox.bole.to/3/kyzjmd","png":"https://sandbox.bole.to/3/kyzjmd.png?r=1618325073","pdf":"https://sandbox.bole.to/3/kyzjmd.pdf?r=1618325073","boleto_hibrido":"https://sandbox.bole.to/3/kyzjmd/boleto_hibrido?r=1618325073","boleto_pix":"https://sandbox.bole.to/3/kyzjmd/boleto_pix?r=1618325073","barcode":"https://sandbox.bole.to/3/kyzjmd/barcode","envelope":"https://sandbox.bole.to/3/kyzjmd/envelope","letter":"https://sandbox.bole.to/3/kyzjmd/letter","line":"https://sandbox.bole.to/3/kyzjmd/line","recibo":"https://sandbox.bole.to/3/kyzjmd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
79
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
80
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
81
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
82
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000066-3","processed_our_number_raw":"109000000663","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
83
+ 00006.632335 21231.200003 4 86190000112040","our_number":"00000066","customer_subscription_id":2639,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:32-03:00","updated_at":"2021-04-13T11:44:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006632332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
84
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
85
+ 13 Apr 2021 14:44:36 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
86
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:44:36-03:00","fails_count":1,"failed_at":"2021-04-13T11:44:36-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886227,"code":"bank_billet.generated","data":{"object":{"id":382350,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzjmd","customer_person_name":"Joao
87
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
88
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
89
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
90
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzjmd","formats":{"default":"https://sandbox.bole.to/3/kyzjmd","png":"https://sandbox.bole.to/3/kyzjmd.png?r=1618325073","pdf":"https://sandbox.bole.to/3/kyzjmd.pdf?r=1618325073","boleto_hibrido":"https://sandbox.bole.to/3/kyzjmd/boleto_hibrido?r=1618325073","boleto_pix":"https://sandbox.bole.to/3/kyzjmd/boleto_pix?r=1618325073","barcode":"https://sandbox.bole.to/3/kyzjmd/barcode","envelope":"https://sandbox.bole.to/3/kyzjmd/envelope","letter":"https://sandbox.bole.to/3/kyzjmd/letter","line":"https://sandbox.bole.to/3/kyzjmd/line","recibo":"https://sandbox.bole.to/3/kyzjmd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
91
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
92
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
93
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
94
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000066-3","processed_our_number_raw":"109000000663","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
95
+ 00006.632335 21231.200003 4 86190000112040","our_number":"00000066","customer_subscription_id":2639,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:32-03:00","updated_at":"2021-04-13T11:44:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006632332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:44:34-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:35-03:00","updated_at":"2021-04-13T11:44:35-03:00"}},{"id":608596,"uid":"fd1673e2-5b28-4324-bffb-62c358755eb0","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":144,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=63e985792917678be42194ea97add480cb222a93","X-BoletoSimples-Delivery-Id":"fd1673e2-5b28-4324-bffb-62c358755eb0","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
96
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382350,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzjmd","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_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
100
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzjmd","formats":{"default":"https://sandbox.bole.to/3/kyzjmd","png":"https://sandbox.bole.to/3/kyzjmd.png?r=1618325073","pdf":"https://sandbox.bole.to/3/kyzjmd.pdf?r=1618325073","boleto_hibrido":"https://sandbox.bole.to/3/kyzjmd/boleto_hibrido?r=1618325073","boleto_pix":"https://sandbox.bole.to/3/kyzjmd/boleto_pix?r=1618325073","barcode":"https://sandbox.bole.to/3/kyzjmd/barcode","envelope":"https://sandbox.bole.to/3/kyzjmd/envelope","letter":"https://sandbox.bole.to/3/kyzjmd/letter","line":"https://sandbox.bole.to/3/kyzjmd/line","recibo":"https://sandbox.bole.to/3/kyzjmd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
101
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
102
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
103
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
104
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000066-3","processed_our_number_raw":"109000000663","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
105
+ 00006.632335 21231.200003 4 86190000112040","our_number":"00000066","customer_subscription_id":2639,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:32-03:00","updated_at":"2021-04-13T11:44:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006632332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
106
+ 11:44:32 -0300","2021-04-13 11:44:33 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
107
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
108
+ 13 Apr 2021 14:44:36 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
109
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:44:35-03:00","fails_count":1,"failed_at":"2021-04-13T11:44:36-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886226,"code":"bank_billet.updated","data":{"object":{"id":382350,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzjmd","customer_person_name":"Joao
110
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
111
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
112
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
113
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzjmd","formats":{"default":"https://sandbox.bole.to/3/kyzjmd","png":"https://sandbox.bole.to/3/kyzjmd.png?r=1618325073","pdf":"https://sandbox.bole.to/3/kyzjmd.pdf?r=1618325073","boleto_hibrido":"https://sandbox.bole.to/3/kyzjmd/boleto_hibrido?r=1618325073","boleto_pix":"https://sandbox.bole.to/3/kyzjmd/boleto_pix?r=1618325073","barcode":"https://sandbox.bole.to/3/kyzjmd/barcode","envelope":"https://sandbox.bole.to/3/kyzjmd/envelope","letter":"https://sandbox.bole.to/3/kyzjmd/letter","line":"https://sandbox.bole.to/3/kyzjmd/line","recibo":"https://sandbox.bole.to/3/kyzjmd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
114
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
115
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
116
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
117
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000066-3","processed_our_number_raw":"109000000663","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
118
+ 00006.632335 21231.200003 4 86190000112040","our_number":"00000066","customer_subscription_id":2639,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:32-03:00","updated_at":"2021-04-13T11:44:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006632332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
119
+ 11:44:32 -0300","2021-04-13 11:44:33 -0300"]}},"occurred_at":"2021-04-13T11:44:33-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:34-03:00","updated_at":"2021-04-13T11:44:34-03:00"}},{"id":608595,"uid":"c34bdf79-24f6-48a4-b694-dfa103b309d4","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":581,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=57c2d45cf47038d55dc77dddfc850977699f79eb","X-BoletoSimples-Delivery-Id":"c34bdf79-24f6-48a4-b694-dfa103b309d4","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
120
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382350,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/kyzjmd","customer_person_name":"Joao
121
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
122
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
123
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
124
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzjmd","formats":{"default":"https://sandbox.bole.to/3/kyzjmd","png":"https://sandbox.bole.to/3/kyzjmd.png?r=1618325072","pdf":"https://sandbox.bole.to/3/kyzjmd.pdf?r=1618325072","boleto_hibrido":"https://sandbox.bole.to/3/kyzjmd/boleto_hibrido?r=1618325072","boleto_pix":"https://sandbox.bole.to/3/kyzjmd/boleto_pix?r=1618325072","barcode":"https://sandbox.bole.to/3/kyzjmd/barcode","envelope":"https://sandbox.bole.to/3/kyzjmd/envelope","letter":"https://sandbox.bole.to/3/kyzjmd/letter","line":"https://sandbox.bole.to/3/kyzjmd/line","recibo":"https://sandbox.bole.to/3/kyzjmd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
125
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
126
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
127
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
128
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000066-3","processed_our_number_raw":"109000000663","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
129
+ 00006.632335 21231.200003 4 86190000112040","our_number":"00000066","customer_subscription_id":2639,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:32-03:00","updated_at":"2021-04-13T11:44:32-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006632332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
130
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
131
+ 13 Apr 2021 14:44:34 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
132
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:44:34-03:00","fails_count":1,"failed_at":"2021-04-13T11:44:34-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886225,"code":"bank_billet.created","data":{"object":{"id":382350,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/kyzjmd","customer_person_name":"Joao
133
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
134
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
135
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
136
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzjmd","formats":{"default":"https://sandbox.bole.to/3/kyzjmd","png":"https://sandbox.bole.to/3/kyzjmd.png?r=1618325072","pdf":"https://sandbox.bole.to/3/kyzjmd.pdf?r=1618325072","boleto_hibrido":"https://sandbox.bole.to/3/kyzjmd/boleto_hibrido?r=1618325072","boleto_pix":"https://sandbox.bole.to/3/kyzjmd/boleto_pix?r=1618325072","barcode":"https://sandbox.bole.to/3/kyzjmd/barcode","envelope":"https://sandbox.bole.to/3/kyzjmd/envelope","letter":"https://sandbox.bole.to/3/kyzjmd/letter","line":"https://sandbox.bole.to/3/kyzjmd/line","recibo":"https://sandbox.bole.to/3/kyzjmd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
137
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
138
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
139
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
140
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000066-3","processed_our_number_raw":"109000000663","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
141
+ 00006.632335 21231.200003 4 86190000112040","our_number":"00000066","customer_subscription_id":2639,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:32-03:00","updated_at":"2021-04-13T11:44:32-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006632332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:44:32-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:33-03:00","updated_at":"2021-04-13T11:44:33-03:00"}},{"id":608594,"uid":"c6cdbc6b-54cc-49ef-a85d-b03640d29975","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":599,"request_headers":{"X-BoletoSimples-Event":"bank_billet.canceled","X-Hub-Signature":"sha1=95a80c9ca892477cc0e27a85c413e216ad4280bc","X-BoletoSimples-Delivery-Id":"c6cdbc6b-54cc-49ef-a85d-b03640d29975","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
142
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
143
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
144
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
145
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
146
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
147
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgbqn","formats":{"default":"https://sandbox.bole.to/3/qzgbqn","png":"https://sandbox.bole.to/3/qzgbqn.png?r=1618325043","pdf":"https://sandbox.bole.to/3/qzgbqn.pdf?r=1618325043","boleto_hibrido":"https://sandbox.bole.to/3/qzgbqn/boleto_hibrido?r=1618325043","boleto_pix":"https://sandbox.bole.to/3/qzgbqn/boleto_pix?r=1618325043","barcode":"https://sandbox.bole.to/3/qzgbqn/barcode","envelope":"https://sandbox.bole.to/3/qzgbqn/envelope","letter":"https://sandbox.bole.to/3/qzgbqn/letter","line":"https://sandbox.bole.to/3/qzgbqn/line","recibo":"https://sandbox.bole.to/3/qzgbqn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
148
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
149
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
150
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
151
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000065-5","processed_our_number_raw":"109000000655","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
152
+ 00006.552335 21231.200003 2 88540000000901","our_number":"00000065","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:02-03:00","updated_at":"2021-04-13T11:44:03-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34192885400000009011090000006552332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
153
+ 11:44:02 -0300","2021-04-13 11:44:03 -0300"]},"event_code":"bank_billet.canceled","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
154
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
155
+ 13 Apr 2021 14:44:06 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
156
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:44:06-03:00","fails_count":1,"failed_at":"2021-04-13T11:44:07-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886216,"code":"bank_billet.canceled","data":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
157
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
158
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
159
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
160
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
161
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgbqn","formats":{"default":"https://sandbox.bole.to/3/qzgbqn","png":"https://sandbox.bole.to/3/qzgbqn.png?r=1618325043","pdf":"https://sandbox.bole.to/3/qzgbqn.pdf?r=1618325043","boleto_hibrido":"https://sandbox.bole.to/3/qzgbqn/boleto_hibrido?r=1618325043","boleto_pix":"https://sandbox.bole.to/3/qzgbqn/boleto_pix?r=1618325043","barcode":"https://sandbox.bole.to/3/qzgbqn/barcode","envelope":"https://sandbox.bole.to/3/qzgbqn/envelope","letter":"https://sandbox.bole.to/3/qzgbqn/letter","line":"https://sandbox.bole.to/3/qzgbqn/line","recibo":"https://sandbox.bole.to/3/qzgbqn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
162
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
163
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
164
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
165
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000065-5","processed_our_number_raw":"109000000655","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
166
+ 00006.552335 21231.200003 2 88540000000901","our_number":"00000065","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:02-03:00","updated_at":"2021-04-13T11:44:03-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34192885400000009011090000006552332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
167
+ 11:44:02 -0300","2021-04-13 11:44:03 -0300"]}},"occurred_at":"2021-04-13T11:44:03-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:05-03:00","updated_at":"2021-04-13T11:44:05-03:00"}},{"id":608593,"uid":"47c54407-be14-402a-87ed-5a3e9f023506","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":198,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=bbc8fa5b2ca568478688e946764bacb11b5087c1","X-BoletoSimples-Delivery-Id":"47c54407-be14-402a-87ed-5a3e9f023506","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
168
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
169
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
170
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
171
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
172
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
173
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgbqn","formats":{"default":"https://sandbox.bole.to/3/qzgbqn","png":"https://sandbox.bole.to/3/qzgbqn.png?r=1618325043","pdf":"https://sandbox.bole.to/3/qzgbqn.pdf?r=1618325043","boleto_hibrido":"https://sandbox.bole.to/3/qzgbqn/boleto_hibrido?r=1618325043","boleto_pix":"https://sandbox.bole.to/3/qzgbqn/boleto_pix?r=1618325043","barcode":"https://sandbox.bole.to/3/qzgbqn/barcode","envelope":"https://sandbox.bole.to/3/qzgbqn/envelope","letter":"https://sandbox.bole.to/3/qzgbqn/letter","line":"https://sandbox.bole.to/3/qzgbqn/line","recibo":"https://sandbox.bole.to/3/qzgbqn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
174
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
175
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
176
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
177
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000065-5","processed_our_number_raw":"109000000655","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
178
+ 00006.552335 21231.200003 2 88540000000901","our_number":"00000065","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:02-03:00","updated_at":"2021-04-13T11:44:03-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34192885400000009011090000006552332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
179
+ 11:44:02 -0300","2021-04-13 11:44:03 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
180
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
181
+ 13 Apr 2021 14:44:06 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
182
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:44:05-03:00","fails_count":1,"failed_at":"2021-04-13T11:44:06-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886215,"code":"bank_billet.updated","data":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
183
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
184
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
185
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
186
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
187
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgbqn","formats":{"default":"https://sandbox.bole.to/3/qzgbqn","png":"https://sandbox.bole.to/3/qzgbqn.png?r=1618325043","pdf":"https://sandbox.bole.to/3/qzgbqn.pdf?r=1618325043","boleto_hibrido":"https://sandbox.bole.to/3/qzgbqn/boleto_hibrido?r=1618325043","boleto_pix":"https://sandbox.bole.to/3/qzgbqn/boleto_pix?r=1618325043","barcode":"https://sandbox.bole.to/3/qzgbqn/barcode","envelope":"https://sandbox.bole.to/3/qzgbqn/envelope","letter":"https://sandbox.bole.to/3/qzgbqn/letter","line":"https://sandbox.bole.to/3/qzgbqn/line","recibo":"https://sandbox.bole.to/3/qzgbqn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
188
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
189
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
190
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
191
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000065-5","processed_our_number_raw":"109000000655","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
192
+ 00006.552335 21231.200003 2 88540000000901","our_number":"00000065","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:02-03:00","updated_at":"2021-04-13T11:44:03-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34192885400000009011090000006552332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
193
+ 11:44:02 -0300","2021-04-13 11:44:03 -0300"]}},"occurred_at":"2021-04-13T11:44:03-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:04-03:00","updated_at":"2021-04-13T11:44:04-03:00"}},{"id":608592,"uid":"657f5b81-354f-4d63-91fb-62e8e99e22b1","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":136,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=377887dbd106e8f575ea3b3182aa989f2c2cced6","X-BoletoSimples-Delivery-Id":"657f5b81-354f-4d63-91fb-62e8e99e22b1","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
194
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
195
+ do contrato 0012","status":"opened","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
196
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
197
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
198
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
199
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgbqn","formats":{"default":"https://sandbox.bole.to/3/qzgbqn","png":"https://sandbox.bole.to/3/qzgbqn.png?r=1618325042","pdf":"https://sandbox.bole.to/3/qzgbqn.pdf?r=1618325042","boleto_hibrido":"https://sandbox.bole.to/3/qzgbqn/boleto_hibrido?r=1618325042","boleto_pix":"https://sandbox.bole.to/3/qzgbqn/boleto_pix?r=1618325042","barcode":"https://sandbox.bole.to/3/qzgbqn/barcode","envelope":"https://sandbox.bole.to/3/qzgbqn/envelope","letter":"https://sandbox.bole.to/3/qzgbqn/letter","line":"https://sandbox.bole.to/3/qzgbqn/line","recibo":"https://sandbox.bole.to/3/qzgbqn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
200
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
201
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
202
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
203
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000065-5","processed_our_number_raw":"109000000655","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
204
+ 00006.552335 21231.200003 2 88540000000901","our_number":"00000065","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:02-03:00","updated_at":"2021-04-13T11:44:02-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34192885400000009011090000006552332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
205
+ 11:44:02 -0300","2021-04-13 11:44:02 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
206
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
207
+ 13 Apr 2021 14:44:05 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
208
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:44:05-03:00","fails_count":1,"failed_at":"2021-04-13T11:44:05-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886214,"code":"bank_billet.updated","data":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
209
+ do contrato 0012","status":"opened","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
210
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
211
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
212
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
213
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgbqn","formats":{"default":"https://sandbox.bole.to/3/qzgbqn","png":"https://sandbox.bole.to/3/qzgbqn.png?r=1618325042","pdf":"https://sandbox.bole.to/3/qzgbqn.pdf?r=1618325042","boleto_hibrido":"https://sandbox.bole.to/3/qzgbqn/boleto_hibrido?r=1618325042","boleto_pix":"https://sandbox.bole.to/3/qzgbqn/boleto_pix?r=1618325042","barcode":"https://sandbox.bole.to/3/qzgbqn/barcode","envelope":"https://sandbox.bole.to/3/qzgbqn/envelope","letter":"https://sandbox.bole.to/3/qzgbqn/letter","line":"https://sandbox.bole.to/3/qzgbqn/line","recibo":"https://sandbox.bole.to/3/qzgbqn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
214
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
215
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
216
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
217
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000065-5","processed_our_number_raw":"109000000655","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
218
+ 00006.552335 21231.200003 2 88540000000901","our_number":"00000065","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:02-03:00","updated_at":"2021-04-13T11:44:02-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34192885400000009011090000006552332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
219
+ 11:44:02 -0300","2021-04-13 11:44:02 -0300"]}},"occurred_at":"2021-04-13T11:44:02-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:04-03:00","updated_at":"2021-04-13T11:44:04-03:00"}},{"id":608591,"uid":"b2d0f712-131e-4bc4-8888-382444079e11","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":161,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=1c11dfd7f07f3c88bf6214e9f3e37194338196bc","X-BoletoSimples-Delivery-Id":"b2d0f712-131e-4bc4-8888-382444079e11","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
220
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
221
+ do contrato 0012","status":"generating","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
222
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
223
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
224
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
225
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgbqn","formats":{"default":"https://sandbox.bole.to/3/qzgbqn","png":"https://sandbox.bole.to/3/qzgbqn.png?r=1618325042","pdf":"https://sandbox.bole.to/3/qzgbqn.pdf?r=1618325042","boleto_hibrido":"https://sandbox.bole.to/3/qzgbqn/boleto_hibrido?r=1618325042","boleto_pix":"https://sandbox.bole.to/3/qzgbqn/boleto_pix?r=1618325042","barcode":"https://sandbox.bole.to/3/qzgbqn/barcode","envelope":"https://sandbox.bole.to/3/qzgbqn/envelope","letter":"https://sandbox.bole.to/3/qzgbqn/letter","line":"https://sandbox.bole.to/3/qzgbqn/line","recibo":"https://sandbox.bole.to/3/qzgbqn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
226
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
227
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
228
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
229
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000065-5","processed_our_number_raw":"109000000655","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
230
+ 00006.552335 21231.200003 2 88540000000901","our_number":"00000065","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:02-03:00","updated_at":"2021-04-13T11:44:02-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34192885400000009011090000006552332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
231
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
232
+ 13 Apr 2021 14:44:04 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
233
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:44:04-03:00","fails_count":1,"failed_at":"2021-04-13T11:44:04-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886213,"code":"bank_billet.created","data":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
234
+ do contrato 0012","status":"generating","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
235
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
236
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
237
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
238
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgbqn","formats":{"default":"https://sandbox.bole.to/3/qzgbqn","png":"https://sandbox.bole.to/3/qzgbqn.png?r=1618325042","pdf":"https://sandbox.bole.to/3/qzgbqn.pdf?r=1618325042","boleto_hibrido":"https://sandbox.bole.to/3/qzgbqn/boleto_hibrido?r=1618325042","boleto_pix":"https://sandbox.bole.to/3/qzgbqn/boleto_pix?r=1618325042","barcode":"https://sandbox.bole.to/3/qzgbqn/barcode","envelope":"https://sandbox.bole.to/3/qzgbqn/envelope","letter":"https://sandbox.bole.to/3/qzgbqn/letter","line":"https://sandbox.bole.to/3/qzgbqn/line","recibo":"https://sandbox.bole.to/3/qzgbqn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
239
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
240
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
241
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
242
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000065-5","processed_our_number_raw":"109000000655","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
243
+ 00006.552335 21231.200003 2 88540000000901","our_number":"00000065","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:44:02-03:00","updated_at":"2021-04-13T11:44:02-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34192885400000009011090000006552332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:44:02-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:03-03:00","updated_at":"2021-04-13T11:44:03-03:00"}},{"id":608590,"uid":"045075d0-4db7-49a1-a35a-a89a622f9cd7","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":128,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=e8125e044d7a836edade8fedd7b6bfa3f0f08805","X-BoletoSimples-Delivery-Id":"045075d0-4db7-49a1-a35a-a89a622f9cd7","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
244
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382348,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/gqwrym","customer_person_name":"Joao
245
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
246
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
247
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
248
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/gqwrym","formats":{"default":"https://sandbox.bole.to/3/gqwrym","png":"https://sandbox.bole.to/3/gqwrym.png?r=1618325035","pdf":"https://sandbox.bole.to/3/gqwrym.pdf?r=1618325035","boleto_hibrido":"https://sandbox.bole.to/3/gqwrym/boleto_hibrido?r=1618325035","boleto_pix":"https://sandbox.bole.to/3/gqwrym/boleto_pix?r=1618325035","barcode":"https://sandbox.bole.to/3/gqwrym/barcode","envelope":"https://sandbox.bole.to/3/gqwrym/envelope","letter":"https://sandbox.bole.to/3/gqwrym/letter","line":"https://sandbox.bole.to/3/gqwrym/line","recibo":"https://sandbox.bole.to/3/gqwrym/recibo","carne":"https://sandbox.bole.to/3/gqwrym/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":3547,"beneficiary_name":"J
249
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
250
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
251
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
252
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000064-8","processed_our_number_raw":"109000000648","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
253
+ 00006.482335 21231.200003 5 91710000112040","our_number":"00000064","customer_subscription_id":null,"installment_number":3,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/gqwrym/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:53-03:00","updated_at":"2021-04-13T11:43:55-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195917100001120401090000006482332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348196,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382348,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
254
+ de Título","created_at":"2021-04-13T11:43:57-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
255
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
256
+ 13 Apr 2021 14:44:04 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
257
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:44:03-03:00","fails_count":1,"failed_at":"2021-04-13T11:44:04-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886212,"code":"bank_billet.generated","data":{"object":{"id":382348,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/gqwrym","customer_person_name":"Joao
258
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
259
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
260
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
261
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/gqwrym","formats":{"default":"https://sandbox.bole.to/3/gqwrym","png":"https://sandbox.bole.to/3/gqwrym.png?r=1618325035","pdf":"https://sandbox.bole.to/3/gqwrym.pdf?r=1618325035","boleto_hibrido":"https://sandbox.bole.to/3/gqwrym/boleto_hibrido?r=1618325035","boleto_pix":"https://sandbox.bole.to/3/gqwrym/boleto_pix?r=1618325035","barcode":"https://sandbox.bole.to/3/gqwrym/barcode","envelope":"https://sandbox.bole.to/3/gqwrym/envelope","letter":"https://sandbox.bole.to/3/gqwrym/letter","line":"https://sandbox.bole.to/3/gqwrym/line","recibo":"https://sandbox.bole.to/3/gqwrym/recibo","carne":"https://sandbox.bole.to/3/gqwrym/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":3547,"beneficiary_name":"J
262
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
263
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
264
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
265
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000064-8","processed_our_number_raw":"109000000648","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
266
+ 00006.482335 21231.200003 5 91710000112040","our_number":"00000064","customer_subscription_id":null,"installment_number":3,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/gqwrym/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:53-03:00","updated_at":"2021-04-13T11:43:55-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195917100001120401090000006482332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348196,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382348,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
267
+ de Título","created_at":"2021-04-13T11:43:57-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:43:58-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:02-03:00","updated_at":"2021-04-13T11:44:02-03:00"}},{"id":608589,"uid":"42800e54-2bc5-404e-b2ef-4445c836887e","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":716,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=4491906775c148bd2425761a75a800132225c195","X-BoletoSimples-Delivery-Id":"42800e54-2bc5-404e-b2ef-4445c836887e","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
268
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382348,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/gqwrym","customer_person_name":"Joao
269
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
270
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
271
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
272
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/gqwrym","formats":{"default":"https://sandbox.bole.to/3/gqwrym","png":"https://sandbox.bole.to/3/gqwrym.png?r=1618325035","pdf":"https://sandbox.bole.to/3/gqwrym.pdf?r=1618325035","boleto_hibrido":"https://sandbox.bole.to/3/gqwrym/boleto_hibrido?r=1618325035","boleto_pix":"https://sandbox.bole.to/3/gqwrym/boleto_pix?r=1618325035","barcode":"https://sandbox.bole.to/3/gqwrym/barcode","envelope":"https://sandbox.bole.to/3/gqwrym/envelope","letter":"https://sandbox.bole.to/3/gqwrym/letter","line":"https://sandbox.bole.to/3/gqwrym/line","recibo":"https://sandbox.bole.to/3/gqwrym/recibo","carne":"https://sandbox.bole.to/3/gqwrym/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":3547,"beneficiary_name":"J
273
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
274
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
275
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
276
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000064-8","processed_our_number_raw":"109000000648","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
277
+ 00006.482335 21231.200003 5 91710000112040","our_number":"00000064","customer_subscription_id":null,"installment_number":3,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/gqwrym/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:53-03:00","updated_at":"2021-04-13T11:43:55-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195917100001120401090000006482332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
278
+ 11:43:53 -0300","2021-04-13 11:43:55 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
279
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
280
+ 13 Apr 2021 14:44:03 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
281
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:44:03-03:00","fails_count":1,"failed_at":"2021-04-13T11:44:03-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886209,"code":"bank_billet.updated","data":{"object":{"id":382348,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/gqwrym","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_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/gqwrym","formats":{"default":"https://sandbox.bole.to/3/gqwrym","png":"https://sandbox.bole.to/3/gqwrym.png?r=1618325035","pdf":"https://sandbox.bole.to/3/gqwrym.pdf?r=1618325035","boleto_hibrido":"https://sandbox.bole.to/3/gqwrym/boleto_hibrido?r=1618325035","boleto_pix":"https://sandbox.bole.to/3/gqwrym/boleto_pix?r=1618325035","barcode":"https://sandbox.bole.to/3/gqwrym/barcode","envelope":"https://sandbox.bole.to/3/gqwrym/envelope","letter":"https://sandbox.bole.to/3/gqwrym/letter","line":"https://sandbox.bole.to/3/gqwrym/line","recibo":"https://sandbox.bole.to/3/gqwrym/recibo","carne":"https://sandbox.bole.to/3/gqwrym/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":3547,"beneficiary_name":"J
286
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
287
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
288
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
289
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000064-8","processed_our_number_raw":"109000000648","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
290
+ 00006.482335 21231.200003 5 91710000112040","our_number":"00000064","customer_subscription_id":null,"installment_number":3,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/gqwrym/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:53-03:00","updated_at":"2021-04-13T11:43:55-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195917100001120401090000006482332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
291
+ 11:43:53 -0300","2021-04-13 11:43:55 -0300"]}},"occurred_at":"2021-04-13T11:43:55-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:00-03:00","updated_at":"2021-04-13T11:44:00-03:00"}},{"id":608588,"uid":"bb349396-33b2-4b77-9ba7-53714c359e84","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":156,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=4056abc7de750c4ee515db4bd9071bcf193d351e","X-BoletoSimples-Delivery-Id":"bb349396-33b2-4b77-9ba7-53714c359e84","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
292
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382347,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/jzdlqq","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_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/jzdlqq","formats":{"default":"https://sandbox.bole.to/3/jzdlqq","png":"https://sandbox.bole.to/3/jzdlqq.png?r=1618325034","pdf":"https://sandbox.bole.to/3/jzdlqq.pdf?r=1618325034","boleto_hibrido":"https://sandbox.bole.to/3/jzdlqq/boleto_hibrido?r=1618325034","boleto_pix":"https://sandbox.bole.to/3/jzdlqq/boleto_pix?r=1618325034","barcode":"https://sandbox.bole.to/3/jzdlqq/barcode","envelope":"https://sandbox.bole.to/3/jzdlqq/envelope","letter":"https://sandbox.bole.to/3/jzdlqq/letter","line":"https://sandbox.bole.to/3/jzdlqq/line","recibo":"https://sandbox.bole.to/3/jzdlqq/recibo","carne":"https://sandbox.bole.to/3/jzdlqq/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":3547,"beneficiary_name":"J
297
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
298
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
299
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
300
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000063-0","processed_our_number_raw":"109000000630","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
301
+ 00006.302335 21231.200003 1 91410000112040","our_number":"00000063","customer_subscription_id":null,"installment_number":2,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/jzdlqq/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:54-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191914100001120401090000006302332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348195,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382347,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
302
+ de Título","created_at":"2021-04-13T11:43:55-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
303
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
304
+ 13 Apr 2021 14:44:02 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
305
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:44:02-03:00","fails_count":1,"failed_at":"2021-04-13T11:44:02-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886207,"code":"bank_billet.generated","data":{"object":{"id":382347,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/jzdlqq","customer_person_name":"Joao
306
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
307
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
308
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
309
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/jzdlqq","formats":{"default":"https://sandbox.bole.to/3/jzdlqq","png":"https://sandbox.bole.to/3/jzdlqq.png?r=1618325034","pdf":"https://sandbox.bole.to/3/jzdlqq.pdf?r=1618325034","boleto_hibrido":"https://sandbox.bole.to/3/jzdlqq/boleto_hibrido?r=1618325034","boleto_pix":"https://sandbox.bole.to/3/jzdlqq/boleto_pix?r=1618325034","barcode":"https://sandbox.bole.to/3/jzdlqq/barcode","envelope":"https://sandbox.bole.to/3/jzdlqq/envelope","letter":"https://sandbox.bole.to/3/jzdlqq/letter","line":"https://sandbox.bole.to/3/jzdlqq/line","recibo":"https://sandbox.bole.to/3/jzdlqq/recibo","carne":"https://sandbox.bole.to/3/jzdlqq/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":3547,"beneficiary_name":"J
310
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
311
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
312
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
313
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000063-0","processed_our_number_raw":"109000000630","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
314
+ 00006.302335 21231.200003 1 91410000112040","our_number":"00000063","customer_subscription_id":null,"installment_number":2,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/jzdlqq/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:54-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191914100001120401090000006302332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348195,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382347,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
315
+ de Título","created_at":"2021-04-13T11:43:55-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:43:55-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:43:59-03:00","updated_at":"2021-04-13T11:43:59-03:00"}},{"id":608587,"uid":"46ca225a-99c3-4927-8ac3-3328980c94ad","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":123,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=8a7c6e508213179359d97208d139e6a7db99bc4d","X-BoletoSimples-Delivery-Id":"46ca225a-99c3-4927-8ac3-3328980c94ad","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
316
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382348,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/gqwrym","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_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/gqwrym","formats":{"default":"https://sandbox.bole.to/3/gqwrym","png":"https://sandbox.bole.to/3/gqwrym.png?r=1618325033","pdf":"https://sandbox.bole.to/3/gqwrym.pdf?r=1618325033","boleto_hibrido":"https://sandbox.bole.to/3/gqwrym/boleto_hibrido?r=1618325033","boleto_pix":"https://sandbox.bole.to/3/gqwrym/boleto_pix?r=1618325033","barcode":"https://sandbox.bole.to/3/gqwrym/barcode","envelope":"https://sandbox.bole.to/3/gqwrym/envelope","letter":"https://sandbox.bole.to/3/gqwrym/letter","line":"https://sandbox.bole.to/3/gqwrym/line","recibo":"https://sandbox.bole.to/3/gqwrym/recibo","carne":"https://sandbox.bole.to/3/gqwrym/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":3547,"beneficiary_name":"J
321
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
322
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
323
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
324
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000064-8","processed_our_number_raw":"109000000648","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
325
+ 00006.482335 21231.200003 5 91710000112040","our_number":"00000064","customer_subscription_id":null,"installment_number":3,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/gqwrym/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:53-03:00","updated_at":"2021-04-13T11:43:53-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195917100001120401090000006482332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
326
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
327
+ 13 Apr 2021 14:43:59 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
328
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:43:59-03:00","fails_count":1,"failed_at":"2021-04-13T11:43:59-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886206,"code":"bank_billet.created","data":{"object":{"id":382348,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/gqwrym","customer_person_name":"Joao
329
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
330
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
331
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
332
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/gqwrym","formats":{"default":"https://sandbox.bole.to/3/gqwrym","png":"https://sandbox.bole.to/3/gqwrym.png?r=1618325033","pdf":"https://sandbox.bole.to/3/gqwrym.pdf?r=1618325033","boleto_hibrido":"https://sandbox.bole.to/3/gqwrym/boleto_hibrido?r=1618325033","boleto_pix":"https://sandbox.bole.to/3/gqwrym/boleto_pix?r=1618325033","barcode":"https://sandbox.bole.to/3/gqwrym/barcode","envelope":"https://sandbox.bole.to/3/gqwrym/envelope","letter":"https://sandbox.bole.to/3/gqwrym/letter","line":"https://sandbox.bole.to/3/gqwrym/line","recibo":"https://sandbox.bole.to/3/gqwrym/recibo","carne":"https://sandbox.bole.to/3/gqwrym/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":3547,"beneficiary_name":"J
333
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
334
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
335
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
336
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000064-8","processed_our_number_raw":"109000000648","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
337
+ 00006.482335 21231.200003 5 91710000112040","our_number":"00000064","customer_subscription_id":null,"installment_number":3,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/gqwrym/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:53-03:00","updated_at":"2021-04-13T11:43:53-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195917100001120401090000006482332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:43:53-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:43:57-03:00","updated_at":"2021-04-13T11:43:57-03:00"}},{"id":608586,"uid":"9ac7448a-6539-4728-958e-cb71fc4693b7","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":137,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=e4d3b8caff11fdea598903a97b8c2b3133493659","X-BoletoSimples-Delivery-Id":"9ac7448a-6539-4728-958e-cb71fc4693b7","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
338
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382347,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/jzdlqq","customer_person_name":"Joao
339
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
340
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
341
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
342
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/jzdlqq","formats":{"default":"https://sandbox.bole.to/3/jzdlqq","png":"https://sandbox.bole.to/3/jzdlqq.png?r=1618325034","pdf":"https://sandbox.bole.to/3/jzdlqq.pdf?r=1618325034","boleto_hibrido":"https://sandbox.bole.to/3/jzdlqq/boleto_hibrido?r=1618325034","boleto_pix":"https://sandbox.bole.to/3/jzdlqq/boleto_pix?r=1618325034","barcode":"https://sandbox.bole.to/3/jzdlqq/barcode","envelope":"https://sandbox.bole.to/3/jzdlqq/envelope","letter":"https://sandbox.bole.to/3/jzdlqq/letter","line":"https://sandbox.bole.to/3/jzdlqq/line","recibo":"https://sandbox.bole.to/3/jzdlqq/recibo","carne":"https://sandbox.bole.to/3/jzdlqq/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":3547,"beneficiary_name":"J
343
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
344
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
345
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
346
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000063-0","processed_our_number_raw":"109000000630","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
347
+ 00006.302335 21231.200003 1 91410000112040","our_number":"00000063","customer_subscription_id":null,"installment_number":2,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/jzdlqq/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:54-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191914100001120401090000006302332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
348
+ 11:43:51 -0300","2021-04-13 11:43:54 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
349
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
350
+ 13 Apr 2021 14:43:59 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
351
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:43:59-03:00","fails_count":1,"failed_at":"2021-04-13T11:43:59-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886205,"code":"bank_billet.updated","data":{"object":{"id":382347,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/jzdlqq","customer_person_name":"Joao
352
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
353
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
354
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
355
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/jzdlqq","formats":{"default":"https://sandbox.bole.to/3/jzdlqq","png":"https://sandbox.bole.to/3/jzdlqq.png?r=1618325034","pdf":"https://sandbox.bole.to/3/jzdlqq.pdf?r=1618325034","boleto_hibrido":"https://sandbox.bole.to/3/jzdlqq/boleto_hibrido?r=1618325034","boleto_pix":"https://sandbox.bole.to/3/jzdlqq/boleto_pix?r=1618325034","barcode":"https://sandbox.bole.to/3/jzdlqq/barcode","envelope":"https://sandbox.bole.to/3/jzdlqq/envelope","letter":"https://sandbox.bole.to/3/jzdlqq/letter","line":"https://sandbox.bole.to/3/jzdlqq/line","recibo":"https://sandbox.bole.to/3/jzdlqq/recibo","carne":"https://sandbox.bole.to/3/jzdlqq/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":3547,"beneficiary_name":"J
356
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
357
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
358
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
359
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000063-0","processed_our_number_raw":"109000000630","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
360
+ 00006.302335 21231.200003 1 91410000112040","our_number":"00000063","customer_subscription_id":null,"installment_number":2,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/jzdlqq/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:54-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191914100001120401090000006302332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
361
+ 11:43:51 -0300","2021-04-13 11:43:54 -0300"]}},"occurred_at":"2021-04-13T11:43:54-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:43:57-03:00","updated_at":"2021-04-13T11:43:57-03:00"}},{"id":608585,"uid":"fd59b2ae-64c0-47c5-b04e-6dd566212bd6","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":183,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=4616aed40e2e307a7433b8e21f801eca9d8e970a","X-BoletoSimples-Delivery-Id":"fd59b2ae-64c0-47c5-b04e-6dd566212bd6","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
362
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382347,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/jzdlqq","customer_person_name":"Joao
363
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
364
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
365
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
366
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/jzdlqq","formats":{"default":"https://sandbox.bole.to/3/jzdlqq","png":"https://sandbox.bole.to/3/jzdlqq.png?r=1618325031","pdf":"https://sandbox.bole.to/3/jzdlqq.pdf?r=1618325031","boleto_hibrido":"https://sandbox.bole.to/3/jzdlqq/boleto_hibrido?r=1618325031","boleto_pix":"https://sandbox.bole.to/3/jzdlqq/boleto_pix?r=1618325031","barcode":"https://sandbox.bole.to/3/jzdlqq/barcode","envelope":"https://sandbox.bole.to/3/jzdlqq/envelope","letter":"https://sandbox.bole.to/3/jzdlqq/letter","line":"https://sandbox.bole.to/3/jzdlqq/line","recibo":"https://sandbox.bole.to/3/jzdlqq/recibo","carne":"https://sandbox.bole.to/3/jzdlqq/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":3547,"beneficiary_name":"J
367
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
368
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
369
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
370
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000063-0","processed_our_number_raw":"109000000630","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
371
+ 00006.302335 21231.200003 1 91410000112040","our_number":"00000063","customer_subscription_id":null,"installment_number":2,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/jzdlqq/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:51-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191914100001120401090000006302332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
372
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
373
+ 13 Apr 2021 14:43:59 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
374
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:43:59-03:00","fails_count":1,"failed_at":"2021-04-13T11:43:59-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886202,"code":"bank_billet.created","data":{"object":{"id":382347,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/jzdlqq","customer_person_name":"Joao
375
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
376
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
377
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
378
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/jzdlqq","formats":{"default":"https://sandbox.bole.to/3/jzdlqq","png":"https://sandbox.bole.to/3/jzdlqq.png?r=1618325031","pdf":"https://sandbox.bole.to/3/jzdlqq.pdf?r=1618325031","boleto_hibrido":"https://sandbox.bole.to/3/jzdlqq/boleto_hibrido?r=1618325031","boleto_pix":"https://sandbox.bole.to/3/jzdlqq/boleto_pix?r=1618325031","barcode":"https://sandbox.bole.to/3/jzdlqq/barcode","envelope":"https://sandbox.bole.to/3/jzdlqq/envelope","letter":"https://sandbox.bole.to/3/jzdlqq/letter","line":"https://sandbox.bole.to/3/jzdlqq/line","recibo":"https://sandbox.bole.to/3/jzdlqq/recibo","carne":"https://sandbox.bole.to/3/jzdlqq/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":3547,"beneficiary_name":"J
379
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
380
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
381
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
382
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000063-0","processed_our_number_raw":"109000000630","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
383
+ 00006.302335 21231.200003 1 91410000112040","our_number":"00000063","customer_subscription_id":null,"installment_number":2,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/jzdlqq/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:51-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191914100001120401090000006302332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:43:51-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:43:55-03:00","updated_at":"2021-04-13T11:43:55-03:00"}},{"id":608584,"uid":"b26cce93-e502-4d69-a81d-a1402bb000fb","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":699,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=12c6f5856e86f809844dbecf11d41f996306172b","X-BoletoSimples-Delivery-Id":"b26cce93-e502-4d69-a81d-a1402bb000fb","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
384
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382346,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/lkgbzz","customer_person_name":"Joao
385
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
386
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
387
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
388
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgbzz","formats":{"default":"https://sandbox.bole.to/3/lkgbzz","png":"https://sandbox.bole.to/3/lkgbzz.png?r=1618325031","pdf":"https://sandbox.bole.to/3/lkgbzz.pdf?r=1618325031","boleto_hibrido":"https://sandbox.bole.to/3/lkgbzz/boleto_hibrido?r=1618325031","boleto_pix":"https://sandbox.bole.to/3/lkgbzz/boleto_pix?r=1618325031","barcode":"https://sandbox.bole.to/3/lkgbzz/barcode","envelope":"https://sandbox.bole.to/3/lkgbzz/envelope","letter":"https://sandbox.bole.to/3/lkgbzz/letter","line":"https://sandbox.bole.to/3/lkgbzz/line","recibo":"https://sandbox.bole.to/3/lkgbzz/recibo","carne":"https://sandbox.bole.to/3/lkgbzz/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":3547,"beneficiary_name":"J
389
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
390
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
391
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
392
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000062-2","processed_our_number_raw":"109000000622","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
393
+ 00006.222335 21231.200003 1 91090000112040","our_number":"00000062","customer_subscription_id":null,"installment_number":1,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/lkgbzz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:51-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191910900001120401090000006222332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
394
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
395
+ 13 Apr 2021 14:43:58 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
396
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:43:57-03:00","fails_count":1,"failed_at":"2021-04-13T11:43:58-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886200,"code":"bank_billet.generated","data":{"object":{"id":382346,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/lkgbzz","customer_person_name":"Joao
397
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
398
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
399
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
400
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgbzz","formats":{"default":"https://sandbox.bole.to/3/lkgbzz","png":"https://sandbox.bole.to/3/lkgbzz.png?r=1618325031","pdf":"https://sandbox.bole.to/3/lkgbzz.pdf?r=1618325031","boleto_hibrido":"https://sandbox.bole.to/3/lkgbzz/boleto_hibrido?r=1618325031","boleto_pix":"https://sandbox.bole.to/3/lkgbzz/boleto_pix?r=1618325031","barcode":"https://sandbox.bole.to/3/lkgbzz/barcode","envelope":"https://sandbox.bole.to/3/lkgbzz/envelope","letter":"https://sandbox.bole.to/3/lkgbzz/letter","line":"https://sandbox.bole.to/3/lkgbzz/line","recibo":"https://sandbox.bole.to/3/lkgbzz/recibo","carne":"https://sandbox.bole.to/3/lkgbzz/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":3547,"beneficiary_name":"J
401
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
402
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
403
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
404
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000062-2","processed_our_number_raw":"109000000622","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
405
+ 00006.222335 21231.200003 1 91090000112040","our_number":"00000062","customer_subscription_id":null,"installment_number":1,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/lkgbzz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:51-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191910900001120401090000006222332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:43:53-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:43:54-03:00","updated_at":"2021-04-13T11:43:54-03:00"}},{"id":608583,"uid":"c68e4f60-c6b5-40f7-9362-62551f2c3db9","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":126,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=4f009690831ace46bd61d90f1d7d0a4628af9be2","X-BoletoSimples-Delivery-Id":"c68e4f60-c6b5-40f7-9362-62551f2c3db9","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
406
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382346,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/lkgbzz","customer_person_name":"Joao
407
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
408
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
409
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
410
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgbzz","formats":{"default":"https://sandbox.bole.to/3/lkgbzz","png":"https://sandbox.bole.to/3/lkgbzz.png?r=1618325031","pdf":"https://sandbox.bole.to/3/lkgbzz.pdf?r=1618325031","boleto_hibrido":"https://sandbox.bole.to/3/lkgbzz/boleto_hibrido?r=1618325031","boleto_pix":"https://sandbox.bole.to/3/lkgbzz/boleto_pix?r=1618325031","barcode":"https://sandbox.bole.to/3/lkgbzz/barcode","envelope":"https://sandbox.bole.to/3/lkgbzz/envelope","letter":"https://sandbox.bole.to/3/lkgbzz/letter","line":"https://sandbox.bole.to/3/lkgbzz/line","recibo":"https://sandbox.bole.to/3/lkgbzz/recibo","carne":"https://sandbox.bole.to/3/lkgbzz/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":3547,"beneficiary_name":"J
411
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
412
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
413
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
414
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000062-2","processed_our_number_raw":"109000000622","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
415
+ 00006.222335 21231.200003 1 91090000112040","our_number":"00000062","customer_subscription_id":null,"installment_number":1,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/lkgbzz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:51-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191910900001120401090000006222332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
416
+ 11:43:51 -0300","2021-04-13 11:43:51 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
417
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
418
+ 13 Apr 2021 14:43:57 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
419
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:43:56-03:00","fails_count":1,"failed_at":"2021-04-13T11:43:57-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886199,"code":"bank_billet.updated","data":{"object":{"id":382346,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/lkgbzz","customer_person_name":"Joao
420
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
421
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
422
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
423
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgbzz","formats":{"default":"https://sandbox.bole.to/3/lkgbzz","png":"https://sandbox.bole.to/3/lkgbzz.png?r=1618325031","pdf":"https://sandbox.bole.to/3/lkgbzz.pdf?r=1618325031","boleto_hibrido":"https://sandbox.bole.to/3/lkgbzz/boleto_hibrido?r=1618325031","boleto_pix":"https://sandbox.bole.to/3/lkgbzz/boleto_pix?r=1618325031","barcode":"https://sandbox.bole.to/3/lkgbzz/barcode","envelope":"https://sandbox.bole.to/3/lkgbzz/envelope","letter":"https://sandbox.bole.to/3/lkgbzz/letter","line":"https://sandbox.bole.to/3/lkgbzz/line","recibo":"https://sandbox.bole.to/3/lkgbzz/recibo","carne":"https://sandbox.bole.to/3/lkgbzz/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":3547,"beneficiary_name":"J
424
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
425
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
426
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
427
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000062-2","processed_our_number_raw":"109000000622","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
428
+ 00006.222335 21231.200003 1 91090000112040","our_number":"00000062","customer_subscription_id":null,"installment_number":1,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/lkgbzz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:51-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191910900001120401090000006222332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
429
+ 11:43:51 -0300","2021-04-13 11:43:51 -0300"]}},"occurred_at":"2021-04-13T11:43:51-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:43:53-03:00","updated_at":"2021-04-13T11:43:53-03:00"}},{"id":608582,"uid":"063b8ea5-0f58-4461-b997-8504e3220258","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":103,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=3e81b0e0c3a2c531fcd0821714b1a19e93bd6d71","X-BoletoSimples-Delivery-Id":"063b8ea5-0f58-4461-b997-8504e3220258","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
430
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382346,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/lkgbzz","customer_person_name":"Joao
431
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
432
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
433
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
434
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgbzz","formats":{"default":"https://sandbox.bole.to/3/lkgbzz","png":"https://sandbox.bole.to/3/lkgbzz.png?r=1618325031","pdf":"https://sandbox.bole.to/3/lkgbzz.pdf?r=1618325031","boleto_hibrido":"https://sandbox.bole.to/3/lkgbzz/boleto_hibrido?r=1618325031","boleto_pix":"https://sandbox.bole.to/3/lkgbzz/boleto_pix?r=1618325031","barcode":"https://sandbox.bole.to/3/lkgbzz/barcode","envelope":"https://sandbox.bole.to/3/lkgbzz/envelope","letter":"https://sandbox.bole.to/3/lkgbzz/letter","line":"https://sandbox.bole.to/3/lkgbzz/line","recibo":"https://sandbox.bole.to/3/lkgbzz/recibo","carne":"https://sandbox.bole.to/3/lkgbzz/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":3547,"beneficiary_name":"J
435
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
436
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
437
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
438
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000062-2","processed_our_number_raw":"109000000622","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
439
+ 00006.222335 21231.200003 1 91090000112040","our_number":"00000062","customer_subscription_id":null,"installment_number":1,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/lkgbzz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:51-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191910900001120401090000006222332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
440
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
441
+ 13 Apr 2021 14:43:53 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
442
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:43:52-03:00","fails_count":1,"failed_at":"2021-04-13T11:43:53-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886198,"code":"bank_billet.created","data":{"object":{"id":382346,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/lkgbzz","customer_person_name":"Joao
443
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
444
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
445
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
446
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgbzz","formats":{"default":"https://sandbox.bole.to/3/lkgbzz","png":"https://sandbox.bole.to/3/lkgbzz.png?r=1618325031","pdf":"https://sandbox.bole.to/3/lkgbzz.pdf?r=1618325031","boleto_hibrido":"https://sandbox.bole.to/3/lkgbzz/boleto_hibrido?r=1618325031","boleto_pix":"https://sandbox.bole.to/3/lkgbzz/boleto_pix?r=1618325031","barcode":"https://sandbox.bole.to/3/lkgbzz/barcode","envelope":"https://sandbox.bole.to/3/lkgbzz/envelope","letter":"https://sandbox.bole.to/3/lkgbzz/letter","line":"https://sandbox.bole.to/3/lkgbzz/line","recibo":"https://sandbox.bole.to/3/lkgbzz/recibo","carne":"https://sandbox.bole.to/3/lkgbzz/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":3547,"beneficiary_name":"J
447
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
448
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
449
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
450
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000062-2","processed_our_number_raw":"109000000622","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
451
+ 00006.222335 21231.200003 1 91090000112040","our_number":"00000062","customer_subscription_id":null,"installment_number":1,"installment_id":12419,"carne_url":"https://sandbox.bole.to/3/lkgbzz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:51-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34191910900001120401090000006222332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:43:51-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:51-03:00"}},{"id":608581,"uid":"126de5b8-26a0-47e0-9363-c8bb41201c4e","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":418,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=b7b8fdf7b23f81344b436ca1cdc5a345d634e213","X-BoletoSimples-Delivery-Id":"126de5b8-26a0-47e0-9363-c8bb41201c4e","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
452
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382345,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ymwbvy","customer_person_name":"Joao
453
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
454
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
455
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
456
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwbvy","formats":{"default":"https://sandbox.bole.to/3/ymwbvy","png":"https://sandbox.bole.to/3/ymwbvy.png?r=1618324820","pdf":"https://sandbox.bole.to/3/ymwbvy.pdf?r=1618324820","boleto_hibrido":"https://sandbox.bole.to/3/ymwbvy/boleto_hibrido?r=1618324820","boleto_pix":"https://sandbox.bole.to/3/ymwbvy/boleto_pix?r=1618324820","barcode":"https://sandbox.bole.to/3/ymwbvy/barcode","envelope":"https://sandbox.bole.to/3/ymwbvy/envelope","letter":"https://sandbox.bole.to/3/ymwbvy/letter","line":"https://sandbox.bole.to/3/ymwbvy/line","recibo":"https://sandbox.bole.to/3/ymwbvy/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
457
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
458
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
459
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
460
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000061-4","processed_our_number_raw":"109000000614","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
461
+ 00006.142335 21231.200003 4 86190000112040","our_number":"00000061","customer_subscription_id":2638,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:18-03:00","updated_at":"2021-04-13T11:40:20-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006142332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348193,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382345,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
462
+ de Título","created_at":"2021-04-13T11:40:22-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
463
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
464
+ 13 Apr 2021 14:40:29 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
465
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:29-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:29-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886196,"code":"bank_billet.generated","data":{"object":{"id":382345,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ymwbvy","customer_person_name":"Joao
466
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
467
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
468
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
469
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwbvy","formats":{"default":"https://sandbox.bole.to/3/ymwbvy","png":"https://sandbox.bole.to/3/ymwbvy.png?r=1618324820","pdf":"https://sandbox.bole.to/3/ymwbvy.pdf?r=1618324820","boleto_hibrido":"https://sandbox.bole.to/3/ymwbvy/boleto_hibrido?r=1618324820","boleto_pix":"https://sandbox.bole.to/3/ymwbvy/boleto_pix?r=1618324820","barcode":"https://sandbox.bole.to/3/ymwbvy/barcode","envelope":"https://sandbox.bole.to/3/ymwbvy/envelope","letter":"https://sandbox.bole.to/3/ymwbvy/letter","line":"https://sandbox.bole.to/3/ymwbvy/line","recibo":"https://sandbox.bole.to/3/ymwbvy/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
470
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
471
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
472
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
473
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000061-4","processed_our_number_raw":"109000000614","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
474
+ 00006.142335 21231.200003 4 86190000112040","our_number":"00000061","customer_subscription_id":2638,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:18-03:00","updated_at":"2021-04-13T11:40:20-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006142332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348193,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382345,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
475
+ de Título","created_at":"2021-04-13T11:40:22-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:40:22-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:27-03:00","updated_at":"2021-04-13T11:40:27-03:00"}},{"id":608580,"uid":"1b7c8631-7294-4882-b98a-de261981acff","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":527,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=41a441e65ee8ae412268be7bb2bc8c8d15186a67","X-BoletoSimples-Delivery-Id":"1b7c8631-7294-4882-b98a-de261981acff","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
476
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382345,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ymwbvy","customer_person_name":"Joao
477
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
478
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
479
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
480
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwbvy","formats":{"default":"https://sandbox.bole.to/3/ymwbvy","png":"https://sandbox.bole.to/3/ymwbvy.png?r=1618324820","pdf":"https://sandbox.bole.to/3/ymwbvy.pdf?r=1618324820","boleto_hibrido":"https://sandbox.bole.to/3/ymwbvy/boleto_hibrido?r=1618324820","boleto_pix":"https://sandbox.bole.to/3/ymwbvy/boleto_pix?r=1618324820","barcode":"https://sandbox.bole.to/3/ymwbvy/barcode","envelope":"https://sandbox.bole.to/3/ymwbvy/envelope","letter":"https://sandbox.bole.to/3/ymwbvy/letter","line":"https://sandbox.bole.to/3/ymwbvy/line","recibo":"https://sandbox.bole.to/3/ymwbvy/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
481
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
482
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
483
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
484
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000061-4","processed_our_number_raw":"109000000614","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
485
+ 00006.142335 21231.200003 4 86190000112040","our_number":"00000061","customer_subscription_id":2638,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:18-03:00","updated_at":"2021-04-13T11:40:20-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006142332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
486
+ 11:40:18 -0300","2021-04-13 11:40:20 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
487
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
488
+ 13 Apr 2021 14:40:27 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
489
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:27-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:28-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886194,"code":"bank_billet.updated","data":{"object":{"id":382345,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ymwbvy","customer_person_name":"Joao
490
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
491
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
492
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
493
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwbvy","formats":{"default":"https://sandbox.bole.to/3/ymwbvy","png":"https://sandbox.bole.to/3/ymwbvy.png?r=1618324820","pdf":"https://sandbox.bole.to/3/ymwbvy.pdf?r=1618324820","boleto_hibrido":"https://sandbox.bole.to/3/ymwbvy/boleto_hibrido?r=1618324820","boleto_pix":"https://sandbox.bole.to/3/ymwbvy/boleto_pix?r=1618324820","barcode":"https://sandbox.bole.to/3/ymwbvy/barcode","envelope":"https://sandbox.bole.to/3/ymwbvy/envelope","letter":"https://sandbox.bole.to/3/ymwbvy/letter","line":"https://sandbox.bole.to/3/ymwbvy/line","recibo":"https://sandbox.bole.to/3/ymwbvy/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
494
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
495
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
496
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
497
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000061-4","processed_our_number_raw":"109000000614","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
498
+ 00006.142335 21231.200003 4 86190000112040","our_number":"00000061","customer_subscription_id":2638,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:18-03:00","updated_at":"2021-04-13T11:40:20-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006142332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
499
+ 11:40:18 -0300","2021-04-13 11:40:20 -0300"]}},"occurred_at":"2021-04-13T11:40:20-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:26-03:00","updated_at":"2021-04-13T11:40:26-03:00"}},{"id":608579,"uid":"aba83e8b-de33-4e9a-a613-1d67a4de3bfc","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":499,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=fce991f23f709a9133be926ab37db95344778816","X-BoletoSimples-Delivery-Id":"aba83e8b-de33-4e9a-a613-1d67a4de3bfc","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
500
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382345,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/ymwbvy","customer_person_name":"Joao
501
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
502
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
503
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
504
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwbvy","formats":{"default":"https://sandbox.bole.to/3/ymwbvy","png":"https://sandbox.bole.to/3/ymwbvy.png?r=1618324818","pdf":"https://sandbox.bole.to/3/ymwbvy.pdf?r=1618324818","boleto_hibrido":"https://sandbox.bole.to/3/ymwbvy/boleto_hibrido?r=1618324818","boleto_pix":"https://sandbox.bole.to/3/ymwbvy/boleto_pix?r=1618324818","barcode":"https://sandbox.bole.to/3/ymwbvy/barcode","envelope":"https://sandbox.bole.to/3/ymwbvy/envelope","letter":"https://sandbox.bole.to/3/ymwbvy/letter","line":"https://sandbox.bole.to/3/ymwbvy/line","recibo":"https://sandbox.bole.to/3/ymwbvy/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
505
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
506
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
507
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
508
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000061-4","processed_our_number_raw":"109000000614","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
509
+ 00006.142335 21231.200003 4 86190000112040","our_number":"00000061","customer_subscription_id":2638,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:18-03:00","updated_at":"2021-04-13T11:40:18-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006142332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
510
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
511
+ 13 Apr 2021 14:40:26 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
512
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:26-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:27-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886193,"code":"bank_billet.created","data":{"object":{"id":382345,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/ymwbvy","customer_person_name":"Joao
513
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
514
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
515
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
516
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwbvy","formats":{"default":"https://sandbox.bole.to/3/ymwbvy","png":"https://sandbox.bole.to/3/ymwbvy.png?r=1618324818","pdf":"https://sandbox.bole.to/3/ymwbvy.pdf?r=1618324818","boleto_hibrido":"https://sandbox.bole.to/3/ymwbvy/boleto_hibrido?r=1618324818","boleto_pix":"https://sandbox.bole.to/3/ymwbvy/boleto_pix?r=1618324818","barcode":"https://sandbox.bole.to/3/ymwbvy/barcode","envelope":"https://sandbox.bole.to/3/ymwbvy/envelope","letter":"https://sandbox.bole.to/3/ymwbvy/letter","line":"https://sandbox.bole.to/3/ymwbvy/line","recibo":"https://sandbox.bole.to/3/ymwbvy/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
517
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
518
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
519
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
520
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000061-4","processed_our_number_raw":"109000000614","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
521
+ 00006.142335 21231.200003 4 86190000112040","our_number":"00000061","customer_subscription_id":2638,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:18-03:00","updated_at":"2021-04-13T11:40:18-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194861900001120401090000006142332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:40:18-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:25-03:00","updated_at":"2021-04-13T11:40:25-03:00"}},{"id":608578,"uid":"eac48c73-4a29-4c48-a2e9-2abdb819482a","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":102,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=75120555c1d205f13d0a011269943c11c4cb807a","X-BoletoSimples-Delivery-Id":"eac48c73-4a29-4c48-a2e9-2abdb819482a","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
522
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382344,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/mkqnmo","customer_person_name":"Joao
523
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
524
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
525
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
526
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mkqnmo","formats":{"default":"https://sandbox.bole.to/3/mkqnmo","png":"https://sandbox.bole.to/3/mkqnmo.png?r=1618324813","pdf":"https://sandbox.bole.to/3/mkqnmo.pdf?r=1618324813","boleto_hibrido":"https://sandbox.bole.to/3/mkqnmo/boleto_hibrido?r=1618324813","boleto_pix":"https://sandbox.bole.to/3/mkqnmo/boleto_pix?r=1618324813","barcode":"https://sandbox.bole.to/3/mkqnmo/barcode","envelope":"https://sandbox.bole.to/3/mkqnmo/envelope","letter":"https://sandbox.bole.to/3/mkqnmo/letter","line":"https://sandbox.bole.to/3/mkqnmo/line","recibo":"https://sandbox.bole.to/3/mkqnmo/recibo","carne":"https://sandbox.bole.to/3/mkqnmo/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":3547,"beneficiary_name":"J
527
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
528
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
529
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
530
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000060-6","processed_our_number_raw":"109000000606","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
531
+ 00006.062335 21231.200003 7 91710000112040","our_number":"00000060","customer_subscription_id":null,"installment_number":3,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/mkqnmo/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:10-03:00","updated_at":"2021-04-13T11:40:13-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197917100001120401090000006062332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348192,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382344,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
532
+ de Título","created_at":"2021-04-13T11:40:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
533
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
534
+ 13 Apr 2021 14:40:26 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
535
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:26-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:26-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886191,"code":"bank_billet.generated","data":{"object":{"id":382344,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/mkqnmo","customer_person_name":"Joao
536
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
537
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
538
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
539
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mkqnmo","formats":{"default":"https://sandbox.bole.to/3/mkqnmo","png":"https://sandbox.bole.to/3/mkqnmo.png?r=1618324813","pdf":"https://sandbox.bole.to/3/mkqnmo.pdf?r=1618324813","boleto_hibrido":"https://sandbox.bole.to/3/mkqnmo/boleto_hibrido?r=1618324813","boleto_pix":"https://sandbox.bole.to/3/mkqnmo/boleto_pix?r=1618324813","barcode":"https://sandbox.bole.to/3/mkqnmo/barcode","envelope":"https://sandbox.bole.to/3/mkqnmo/envelope","letter":"https://sandbox.bole.to/3/mkqnmo/letter","line":"https://sandbox.bole.to/3/mkqnmo/line","recibo":"https://sandbox.bole.to/3/mkqnmo/recibo","carne":"https://sandbox.bole.to/3/mkqnmo/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":3547,"beneficiary_name":"J
540
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
541
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
542
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
543
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000060-6","processed_our_number_raw":"109000000606","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
544
+ 00006.062335 21231.200003 7 91710000112040","our_number":"00000060","customer_subscription_id":null,"installment_number":3,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/mkqnmo/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:10-03:00","updated_at":"2021-04-13T11:40:13-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197917100001120401090000006062332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348192,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382344,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
545
+ de Título","created_at":"2021-04-13T11:40:16-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:40:18-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:25-03:00","updated_at":"2021-04-13T11:40:25-03:00"}},{"id":608577,"uid":"f49ce7a7-6846-45a5-9078-a14bd802f8fd","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":502,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=647ccb25f5023907d7a9d1c04d748f5780ad42f0","X-BoletoSimples-Delivery-Id":"f49ce7a7-6846-45a5-9078-a14bd802f8fd","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
546
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382343,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/rzgywy","customer_person_name":"Joao
547
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
548
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
549
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
550
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rzgywy","formats":{"default":"https://sandbox.bole.to/3/rzgywy","png":"https://sandbox.bole.to/3/rzgywy.png?r=1618324811","pdf":"https://sandbox.bole.to/3/rzgywy.pdf?r=1618324811","boleto_hibrido":"https://sandbox.bole.to/3/rzgywy/boleto_hibrido?r=1618324811","boleto_pix":"https://sandbox.bole.to/3/rzgywy/boleto_pix?r=1618324811","barcode":"https://sandbox.bole.to/3/rzgywy/barcode","envelope":"https://sandbox.bole.to/3/rzgywy/envelope","letter":"https://sandbox.bole.to/3/rzgywy/letter","line":"https://sandbox.bole.to/3/rzgywy/line","recibo":"https://sandbox.bole.to/3/rzgywy/recibo","carne":"https://sandbox.bole.to/3/rzgywy/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":3547,"beneficiary_name":"J
551
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
552
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
553
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
554
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000059-8","processed_our_number_raw":"109000000598","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
555
+ 00005.982335 21231.200003 3 91410000112040","our_number":"00000059","customer_subscription_id":null,"installment_number":2,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/rzgywy/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:09-03:00","updated_at":"2021-04-13T11:40:11-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34193914100001120401090000005982332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348191,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382343,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
556
+ de Título","created_at":"2021-04-13T11:40:13-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
557
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
558
+ 13 Apr 2021 14:40:23 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
559
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:22-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:23-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886188,"code":"bank_billet.generated","data":{"object":{"id":382343,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/rzgywy","customer_person_name":"Joao
560
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
561
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
562
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
563
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rzgywy","formats":{"default":"https://sandbox.bole.to/3/rzgywy","png":"https://sandbox.bole.to/3/rzgywy.png?r=1618324811","pdf":"https://sandbox.bole.to/3/rzgywy.pdf?r=1618324811","boleto_hibrido":"https://sandbox.bole.to/3/rzgywy/boleto_hibrido?r=1618324811","boleto_pix":"https://sandbox.bole.to/3/rzgywy/boleto_pix?r=1618324811","barcode":"https://sandbox.bole.to/3/rzgywy/barcode","envelope":"https://sandbox.bole.to/3/rzgywy/envelope","letter":"https://sandbox.bole.to/3/rzgywy/letter","line":"https://sandbox.bole.to/3/rzgywy/line","recibo":"https://sandbox.bole.to/3/rzgywy/recibo","carne":"https://sandbox.bole.to/3/rzgywy/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":3547,"beneficiary_name":"J
564
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
565
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
566
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
567
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000059-8","processed_our_number_raw":"109000000598","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
568
+ 00005.982335 21231.200003 3 91410000112040","our_number":"00000059","customer_subscription_id":null,"installment_number":2,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/rzgywy/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:09-03:00","updated_at":"2021-04-13T11:40:11-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34193914100001120401090000005982332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348191,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382343,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
569
+ de Título","created_at":"2021-04-13T11:40:13-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:40:15-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:21-03:00","updated_at":"2021-04-13T11:40:21-03:00"}},{"id":608576,"uid":"70051b94-e8f6-4847-84b6-1a95676e8707","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":972,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=30555aa19b62304be32b254eec75e30610e54976","X-BoletoSimples-Delivery-Id":"70051b94-e8f6-4847-84b6-1a95676e8707","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
570
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382344,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/mkqnmo","customer_person_name":"Joao
571
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
572
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
573
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
574
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mkqnmo","formats":{"default":"https://sandbox.bole.to/3/mkqnmo","png":"https://sandbox.bole.to/3/mkqnmo.png?r=1618324813","pdf":"https://sandbox.bole.to/3/mkqnmo.pdf?r=1618324813","boleto_hibrido":"https://sandbox.bole.to/3/mkqnmo/boleto_hibrido?r=1618324813","boleto_pix":"https://sandbox.bole.to/3/mkqnmo/boleto_pix?r=1618324813","barcode":"https://sandbox.bole.to/3/mkqnmo/barcode","envelope":"https://sandbox.bole.to/3/mkqnmo/envelope","letter":"https://sandbox.bole.to/3/mkqnmo/letter","line":"https://sandbox.bole.to/3/mkqnmo/line","recibo":"https://sandbox.bole.to/3/mkqnmo/recibo","carne":"https://sandbox.bole.to/3/mkqnmo/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":3547,"beneficiary_name":"J
575
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
576
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
577
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
578
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000060-6","processed_our_number_raw":"109000000606","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
579
+ 00006.062335 21231.200003 7 91710000112040","our_number":"00000060","customer_subscription_id":null,"installment_number":3,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/mkqnmo/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:10-03:00","updated_at":"2021-04-13T11:40:13-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197917100001120401090000006062332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
580
+ 11:40:10 -0300","2021-04-13 11:40:13 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
581
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
582
+ 13 Apr 2021 14:40:22 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
583
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:21-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:22-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886186,"code":"bank_billet.updated","data":{"object":{"id":382344,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/mkqnmo","customer_person_name":"Joao
584
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
585
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
586
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
587
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mkqnmo","formats":{"default":"https://sandbox.bole.to/3/mkqnmo","png":"https://sandbox.bole.to/3/mkqnmo.png?r=1618324813","pdf":"https://sandbox.bole.to/3/mkqnmo.pdf?r=1618324813","boleto_hibrido":"https://sandbox.bole.to/3/mkqnmo/boleto_hibrido?r=1618324813","boleto_pix":"https://sandbox.bole.to/3/mkqnmo/boleto_pix?r=1618324813","barcode":"https://sandbox.bole.to/3/mkqnmo/barcode","envelope":"https://sandbox.bole.to/3/mkqnmo/envelope","letter":"https://sandbox.bole.to/3/mkqnmo/letter","line":"https://sandbox.bole.to/3/mkqnmo/line","recibo":"https://sandbox.bole.to/3/mkqnmo/recibo","carne":"https://sandbox.bole.to/3/mkqnmo/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":3547,"beneficiary_name":"J
588
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
589
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
590
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
591
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000060-6","processed_our_number_raw":"109000000606","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
592
+ 00006.062335 21231.200003 7 91710000112040","our_number":"00000060","customer_subscription_id":null,"installment_number":3,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/mkqnmo/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:10-03:00","updated_at":"2021-04-13T11:40:13-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197917100001120401090000006062332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
593
+ 11:40:10 -0300","2021-04-13 11:40:13 -0300"]}},"occurred_at":"2021-04-13T11:40:13-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:18-03:00","updated_at":"2021-04-13T11:40:18-03:00"}},{"id":608575,"uid":"190169e7-41b4-4252-9165-89a1d05e3285","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":152,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=800bac4096b55427b007d5666460194681627dff","X-BoletoSimples-Delivery-Id":"190169e7-41b4-4252-9165-89a1d05e3285","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
594
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382344,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/mkqnmo","customer_person_name":"Joao
595
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
596
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
597
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
598
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mkqnmo","formats":{"default":"https://sandbox.bole.to/3/mkqnmo","png":"https://sandbox.bole.to/3/mkqnmo.png?r=1618324810","pdf":"https://sandbox.bole.to/3/mkqnmo.pdf?r=1618324810","boleto_hibrido":"https://sandbox.bole.to/3/mkqnmo/boleto_hibrido?r=1618324810","boleto_pix":"https://sandbox.bole.to/3/mkqnmo/boleto_pix?r=1618324810","barcode":"https://sandbox.bole.to/3/mkqnmo/barcode","envelope":"https://sandbox.bole.to/3/mkqnmo/envelope","letter":"https://sandbox.bole.to/3/mkqnmo/letter","line":"https://sandbox.bole.to/3/mkqnmo/line","recibo":"https://sandbox.bole.to/3/mkqnmo/recibo","carne":"https://sandbox.bole.to/3/mkqnmo/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":3547,"beneficiary_name":"J
599
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
600
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
601
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
602
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000060-6","processed_our_number_raw":"109000000606","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
603
+ 00006.062335 21231.200003 7 91710000112040","our_number":"00000060","customer_subscription_id":null,"installment_number":3,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/mkqnmo/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:10-03:00","updated_at":"2021-04-13T11:40:10-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197917100001120401090000006062332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
604
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
605
+ 13 Apr 2021 14:40:19 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
606
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:19-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:19-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886183,"code":"bank_billet.created","data":{"object":{"id":382344,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/mkqnmo","customer_person_name":"Joao
607
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
608
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
609
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
610
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mkqnmo","formats":{"default":"https://sandbox.bole.to/3/mkqnmo","png":"https://sandbox.bole.to/3/mkqnmo.png?r=1618324810","pdf":"https://sandbox.bole.to/3/mkqnmo.pdf?r=1618324810","boleto_hibrido":"https://sandbox.bole.to/3/mkqnmo/boleto_hibrido?r=1618324810","boleto_pix":"https://sandbox.bole.to/3/mkqnmo/boleto_pix?r=1618324810","barcode":"https://sandbox.bole.to/3/mkqnmo/barcode","envelope":"https://sandbox.bole.to/3/mkqnmo/envelope","letter":"https://sandbox.bole.to/3/mkqnmo/letter","line":"https://sandbox.bole.to/3/mkqnmo/line","recibo":"https://sandbox.bole.to/3/mkqnmo/recibo","carne":"https://sandbox.bole.to/3/mkqnmo/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":3547,"beneficiary_name":"J
611
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
612
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
613
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
614
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000060-6","processed_our_number_raw":"109000000606","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
615
+ 00006.062335 21231.200003 7 91710000112040","our_number":"00000060","customer_subscription_id":null,"installment_number":3,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/mkqnmo/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:10-03:00","updated_at":"2021-04-13T11:40:10-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197917100001120401090000006062332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:40:10-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:17-03:00","updated_at":"2021-04-13T11:40:17-03:00"}},{"id":608574,"uid":"7cf62478-fb22-4bca-a9be-255f0c5ea6ac","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":218,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=d7c4c715642888b88656ba2a5f91d673e5c946a8","X-BoletoSimples-Delivery-Id":"7cf62478-fb22-4bca-a9be-255f0c5ea6ac","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
616
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382343,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/rzgywy","customer_person_name":"Joao
617
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
618
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
619
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
620
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rzgywy","formats":{"default":"https://sandbox.bole.to/3/rzgywy","png":"https://sandbox.bole.to/3/rzgywy.png?r=1618324811","pdf":"https://sandbox.bole.to/3/rzgywy.pdf?r=1618324811","boleto_hibrido":"https://sandbox.bole.to/3/rzgywy/boleto_hibrido?r=1618324811","boleto_pix":"https://sandbox.bole.to/3/rzgywy/boleto_pix?r=1618324811","barcode":"https://sandbox.bole.to/3/rzgywy/barcode","envelope":"https://sandbox.bole.to/3/rzgywy/envelope","letter":"https://sandbox.bole.to/3/rzgywy/letter","line":"https://sandbox.bole.to/3/rzgywy/line","recibo":"https://sandbox.bole.to/3/rzgywy/recibo","carne":"https://sandbox.bole.to/3/rzgywy/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":3547,"beneficiary_name":"J
621
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
622
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
623
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
624
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000059-8","processed_our_number_raw":"109000000598","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
625
+ 00005.982335 21231.200003 3 91410000112040","our_number":"00000059","customer_subscription_id":null,"installment_number":2,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/rzgywy/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:09-03:00","updated_at":"2021-04-13T11:40:11-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34193914100001120401090000005982332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
626
+ 11:40:09 -0300","2021-04-13 11:40:11 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
627
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
628
+ 13 Apr 2021 14:40:17 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
629
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:17-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:17-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886182,"code":"bank_billet.updated","data":{"object":{"id":382343,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/rzgywy","customer_person_name":"Joao
630
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
631
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
632
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
633
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rzgywy","formats":{"default":"https://sandbox.bole.to/3/rzgywy","png":"https://sandbox.bole.to/3/rzgywy.png?r=1618324811","pdf":"https://sandbox.bole.to/3/rzgywy.pdf?r=1618324811","boleto_hibrido":"https://sandbox.bole.to/3/rzgywy/boleto_hibrido?r=1618324811","boleto_pix":"https://sandbox.bole.to/3/rzgywy/boleto_pix?r=1618324811","barcode":"https://sandbox.bole.to/3/rzgywy/barcode","envelope":"https://sandbox.bole.to/3/rzgywy/envelope","letter":"https://sandbox.bole.to/3/rzgywy/letter","line":"https://sandbox.bole.to/3/rzgywy/line","recibo":"https://sandbox.bole.to/3/rzgywy/recibo","carne":"https://sandbox.bole.to/3/rzgywy/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":3547,"beneficiary_name":"J
634
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
635
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
636
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
637
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000059-8","processed_our_number_raw":"109000000598","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
638
+ 00005.982335 21231.200003 3 91410000112040","our_number":"00000059","customer_subscription_id":null,"installment_number":2,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/rzgywy/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:09-03:00","updated_at":"2021-04-13T11:40:11-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34193914100001120401090000005982332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
639
+ 11:40:09 -0300","2021-04-13 11:40:11 -0300"]}},"occurred_at":"2021-04-13T11:40:11-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:15-03:00","updated_at":"2021-04-13T11:40:15-03:00"}},{"id":608573,"uid":"84610395-982f-4f68-9dc7-a5f050756e53","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":206,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=3a1fc4606afe3c87ef38aa4b94528c97526a88ba","X-BoletoSimples-Delivery-Id":"84610395-982f-4f68-9dc7-a5f050756e53","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
640
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382342,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/zdbnwz","customer_person_name":"Joao
641
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
642
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
643
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
644
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zdbnwz","formats":{"default":"https://sandbox.bole.to/3/zdbnwz","png":"https://sandbox.bole.to/3/zdbnwz.png?r=1618324809","pdf":"https://sandbox.bole.to/3/zdbnwz.pdf?r=1618324809","boleto_hibrido":"https://sandbox.bole.to/3/zdbnwz/boleto_hibrido?r=1618324809","boleto_pix":"https://sandbox.bole.to/3/zdbnwz/boleto_pix?r=1618324809","barcode":"https://sandbox.bole.to/3/zdbnwz/barcode","envelope":"https://sandbox.bole.to/3/zdbnwz/envelope","letter":"https://sandbox.bole.to/3/zdbnwz/letter","line":"https://sandbox.bole.to/3/zdbnwz/line","recibo":"https://sandbox.bole.to/3/zdbnwz/recibo","carne":"https://sandbox.bole.to/3/zdbnwz/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":3547,"beneficiary_name":"J
645
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
646
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
647
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
648
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000058-0","processed_our_number_raw":"109000000580","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
649
+ 00005.802335 21231.200003 7 91090000112040","our_number":"00000058","customer_subscription_id":null,"installment_number":1,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/zdbnwz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:08-03:00","updated_at":"2021-04-13T11:40:09-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197910900001120401090000005802332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
650
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
651
+ 13 Apr 2021 14:40:17 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
652
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:17-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:17-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886181,"code":"bank_billet.generated","data":{"object":{"id":382342,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/zdbnwz","customer_person_name":"Joao
653
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
654
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
655
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
656
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zdbnwz","formats":{"default":"https://sandbox.bole.to/3/zdbnwz","png":"https://sandbox.bole.to/3/zdbnwz.png?r=1618324809","pdf":"https://sandbox.bole.to/3/zdbnwz.pdf?r=1618324809","boleto_hibrido":"https://sandbox.bole.to/3/zdbnwz/boleto_hibrido?r=1618324809","boleto_pix":"https://sandbox.bole.to/3/zdbnwz/boleto_pix?r=1618324809","barcode":"https://sandbox.bole.to/3/zdbnwz/barcode","envelope":"https://sandbox.bole.to/3/zdbnwz/envelope","letter":"https://sandbox.bole.to/3/zdbnwz/letter","line":"https://sandbox.bole.to/3/zdbnwz/line","recibo":"https://sandbox.bole.to/3/zdbnwz/recibo","carne":"https://sandbox.bole.to/3/zdbnwz/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":3547,"beneficiary_name":"J
657
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
658
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
659
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
660
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000058-0","processed_our_number_raw":"109000000580","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
661
+ 00005.802335 21231.200003 7 91090000112040","our_number":"00000058","customer_subscription_id":null,"installment_number":1,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/zdbnwz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:08-03:00","updated_at":"2021-04-13T11:40:09-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197910900001120401090000005802332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:40:12-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:15-03:00","updated_at":"2021-04-13T11:40:15-03:00"}},{"id":608572,"uid":"4dc17e0f-55cb-4834-924b-b7ae7d919476","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":115,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=bb6517e621dfd118d5f9fc3d86d4dbe2782242ba","X-BoletoSimples-Delivery-Id":"4dc17e0f-55cb-4834-924b-b7ae7d919476","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
662
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382343,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/rzgywy","customer_person_name":"Joao
663
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
664
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
665
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
666
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rzgywy","formats":{"default":"https://sandbox.bole.to/3/rzgywy","png":"https://sandbox.bole.to/3/rzgywy.png?r=1618324809","pdf":"https://sandbox.bole.to/3/rzgywy.pdf?r=1618324809","boleto_hibrido":"https://sandbox.bole.to/3/rzgywy/boleto_hibrido?r=1618324809","boleto_pix":"https://sandbox.bole.to/3/rzgywy/boleto_pix?r=1618324809","barcode":"https://sandbox.bole.to/3/rzgywy/barcode","envelope":"https://sandbox.bole.to/3/rzgywy/envelope","letter":"https://sandbox.bole.to/3/rzgywy/letter","line":"https://sandbox.bole.to/3/rzgywy/line","recibo":"https://sandbox.bole.to/3/rzgywy/recibo","carne":"https://sandbox.bole.to/3/rzgywy/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":3547,"beneficiary_name":"J
667
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
668
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
669
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
670
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000059-8","processed_our_number_raw":"109000000598","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
671
+ 00005.982335 21231.200003 3 91410000112040","our_number":"00000059","customer_subscription_id":null,"installment_number":2,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/rzgywy/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:09-03:00","updated_at":"2021-04-13T11:40:09-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34193914100001120401090000005982332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
672
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
673
+ 13 Apr 2021 14:40:15 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
674
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:14-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:15-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886179,"code":"bank_billet.created","data":{"object":{"id":382343,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/rzgywy","customer_person_name":"Joao
675
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
676
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
677
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
678
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rzgywy","formats":{"default":"https://sandbox.bole.to/3/rzgywy","png":"https://sandbox.bole.to/3/rzgywy.png?r=1618324809","pdf":"https://sandbox.bole.to/3/rzgywy.pdf?r=1618324809","boleto_hibrido":"https://sandbox.bole.to/3/rzgywy/boleto_hibrido?r=1618324809","boleto_pix":"https://sandbox.bole.to/3/rzgywy/boleto_pix?r=1618324809","barcode":"https://sandbox.bole.to/3/rzgywy/barcode","envelope":"https://sandbox.bole.to/3/rzgywy/envelope","letter":"https://sandbox.bole.to/3/rzgywy/letter","line":"https://sandbox.bole.to/3/rzgywy/line","recibo":"https://sandbox.bole.to/3/rzgywy/recibo","carne":"https://sandbox.bole.to/3/rzgywy/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":3547,"beneficiary_name":"J
679
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
680
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
681
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
682
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000059-8","processed_our_number_raw":"109000000598","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
683
+ 00005.982335 21231.200003 3 91410000112040","our_number":"00000059","customer_subscription_id":null,"installment_number":2,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/rzgywy/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:09-03:00","updated_at":"2021-04-13T11:40:09-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34193914100001120401090000005982332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:40:09-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:13-03:00","updated_at":"2021-04-13T11:40:13-03:00"}},{"id":608571,"uid":"89c4669e-d816-4050-b21c-70e12b3d86b5","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":406,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=50870010e6c11b297da0d96643dc929bfcb00eec","X-BoletoSimples-Delivery-Id":"89c4669e-d816-4050-b21c-70e12b3d86b5","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
684
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382342,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/zdbnwz","customer_person_name":"Joao
685
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
686
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
687
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
688
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zdbnwz","formats":{"default":"https://sandbox.bole.to/3/zdbnwz","png":"https://sandbox.bole.to/3/zdbnwz.png?r=1618324809","pdf":"https://sandbox.bole.to/3/zdbnwz.pdf?r=1618324809","boleto_hibrido":"https://sandbox.bole.to/3/zdbnwz/boleto_hibrido?r=1618324809","boleto_pix":"https://sandbox.bole.to/3/zdbnwz/boleto_pix?r=1618324809","barcode":"https://sandbox.bole.to/3/zdbnwz/barcode","envelope":"https://sandbox.bole.to/3/zdbnwz/envelope","letter":"https://sandbox.bole.to/3/zdbnwz/letter","line":"https://sandbox.bole.to/3/zdbnwz/line","recibo":"https://sandbox.bole.to/3/zdbnwz/recibo","carne":"https://sandbox.bole.to/3/zdbnwz/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":3547,"beneficiary_name":"J
689
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
690
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
691
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
692
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000058-0","processed_our_number_raw":"109000000580","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
693
+ 00005.802335 21231.200003 7 91090000112040","our_number":"00000058","customer_subscription_id":null,"installment_number":1,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/zdbnwz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:08-03:00","updated_at":"2021-04-13T11:40:09-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197910900001120401090000005802332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
694
+ 11:40:08 -0300","2021-04-13 11:40:09 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
695
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
696
+ 13 Apr 2021 14:40:12 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
697
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:11-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:12-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886177,"code":"bank_billet.updated","data":{"object":{"id":382342,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/zdbnwz","customer_person_name":"Joao
698
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
699
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
700
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
701
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zdbnwz","formats":{"default":"https://sandbox.bole.to/3/zdbnwz","png":"https://sandbox.bole.to/3/zdbnwz.png?r=1618324809","pdf":"https://sandbox.bole.to/3/zdbnwz.pdf?r=1618324809","boleto_hibrido":"https://sandbox.bole.to/3/zdbnwz/boleto_hibrido?r=1618324809","boleto_pix":"https://sandbox.bole.to/3/zdbnwz/boleto_pix?r=1618324809","barcode":"https://sandbox.bole.to/3/zdbnwz/barcode","envelope":"https://sandbox.bole.to/3/zdbnwz/envelope","letter":"https://sandbox.bole.to/3/zdbnwz/letter","line":"https://sandbox.bole.to/3/zdbnwz/line","recibo":"https://sandbox.bole.to/3/zdbnwz/recibo","carne":"https://sandbox.bole.to/3/zdbnwz/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":3547,"beneficiary_name":"J
702
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
703
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
704
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
705
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000058-0","processed_our_number_raw":"109000000580","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
706
+ 00005.802335 21231.200003 7 91090000112040","our_number":"00000058","customer_subscription_id":null,"installment_number":1,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/zdbnwz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:08-03:00","updated_at":"2021-04-13T11:40:09-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197910900001120401090000005802332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
707
+ 11:40:08 -0300","2021-04-13 11:40:09 -0300"]}},"occurred_at":"2021-04-13T11:40:09-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:10-03:00","updated_at":"2021-04-13T11:40:10-03:00"}},{"id":608570,"uid":"671982c3-b101-49bd-abdb-53219e378551","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":229,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=638f8bc6bb9f727bc2b925e0aa1f6a22de6254db","X-BoletoSimples-Delivery-Id":"671982c3-b101-49bd-abdb-53219e378551","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
708
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382342,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/zdbnwz","customer_person_name":"Joao
709
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
710
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
711
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
712
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zdbnwz","formats":{"default":"https://sandbox.bole.to/3/zdbnwz","png":"https://sandbox.bole.to/3/zdbnwz.png?r=1618324808","pdf":"https://sandbox.bole.to/3/zdbnwz.pdf?r=1618324808","boleto_hibrido":"https://sandbox.bole.to/3/zdbnwz/boleto_hibrido?r=1618324808","boleto_pix":"https://sandbox.bole.to/3/zdbnwz/boleto_pix?r=1618324808","barcode":"https://sandbox.bole.to/3/zdbnwz/barcode","envelope":"https://sandbox.bole.to/3/zdbnwz/envelope","letter":"https://sandbox.bole.to/3/zdbnwz/letter","line":"https://sandbox.bole.to/3/zdbnwz/line","recibo":"https://sandbox.bole.to/3/zdbnwz/recibo","carne":"https://sandbox.bole.to/3/zdbnwz/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":3547,"beneficiary_name":"J
713
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
714
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
715
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
716
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000058-0","processed_our_number_raw":"109000000580","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
717
+ 00005.802335 21231.200003 7 91090000112040","our_number":"00000058","customer_subscription_id":null,"installment_number":1,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/zdbnwz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:08-03:00","updated_at":"2021-04-13T11:40:08-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197910900001120401090000005802332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
718
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
719
+ 13 Apr 2021 14:40:10 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
720
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:40:10-03:00","fails_count":1,"failed_at":"2021-04-13T11:40:11-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886176,"code":"bank_billet.created","data":{"object":{"id":382342,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/zdbnwz","customer_person_name":"Joao
721
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
722
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
723
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
724
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/zdbnwz","formats":{"default":"https://sandbox.bole.to/3/zdbnwz","png":"https://sandbox.bole.to/3/zdbnwz.png?r=1618324808","pdf":"https://sandbox.bole.to/3/zdbnwz.pdf?r=1618324808","boleto_hibrido":"https://sandbox.bole.to/3/zdbnwz/boleto_hibrido?r=1618324808","boleto_pix":"https://sandbox.bole.to/3/zdbnwz/boleto_pix?r=1618324808","barcode":"https://sandbox.bole.to/3/zdbnwz/barcode","envelope":"https://sandbox.bole.to/3/zdbnwz/envelope","letter":"https://sandbox.bole.to/3/zdbnwz/letter","line":"https://sandbox.bole.to/3/zdbnwz/line","recibo":"https://sandbox.bole.to/3/zdbnwz/recibo","carne":"https://sandbox.bole.to/3/zdbnwz/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":3547,"beneficiary_name":"J
725
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
726
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
727
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
728
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000058-0","processed_our_number_raw":"109000000580","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
729
+ 00005.802335 21231.200003 7 91090000112040","our_number":"00000058","customer_subscription_id":null,"installment_number":1,"installment_id":12418,"carne_url":"https://sandbox.bole.to/3/zdbnwz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:40:08-03:00","updated_at":"2021-04-13T11:40:08-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197910900001120401090000005802332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:40:08-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:09-03:00","updated_at":"2021-04-13T11:40:09-03:00"}},{"id":608569,"uid":"a9a10643-2947-4ef5-a0f6-03f1230ab92f","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":104,"request_headers":{"X-BoletoSimples-Event":"bank_billet.canceled","X-Hub-Signature":"sha1=20657f04db9a676afd926f28285068e8bdfbd93e","X-BoletoSimples-Delivery-Id":"a9a10643-2947-4ef5-a0f6-03f1230ab92f","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
730
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382341,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
731
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/dromzl","customer_person_name":"Joao
732
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
733
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
734
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
735
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/dromzl","formats":{"default":"https://sandbox.bole.to/3/dromzl","png":"https://sandbox.bole.to/3/dromzl.png?r=1618324789","pdf":"https://sandbox.bole.to/3/dromzl.pdf?r=1618324789","boleto_hibrido":"https://sandbox.bole.to/3/dromzl/boleto_hibrido?r=1618324789","boleto_pix":"https://sandbox.bole.to/3/dromzl/boleto_pix?r=1618324789","barcode":"https://sandbox.bole.to/3/dromzl/barcode","envelope":"https://sandbox.bole.to/3/dromzl/envelope","letter":"https://sandbox.bole.to/3/dromzl/letter","line":"https://sandbox.bole.to/3/dromzl/line","recibo":"https://sandbox.bole.to/3/dromzl/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
736
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
737
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
738
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
739
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000057-2","processed_our_number_raw":"109000000572","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
740
+ 00005.722335 21231.200003 5 88540000000901","our_number":"00000057","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005722332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348189,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382341,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
741
+ de Título","created_at":"2021-04-13T11:39:48-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
742
+ 11:39:46 -0300","2021-04-13 11:39:49 -0300"]},"event_code":"bank_billet.canceled","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
743
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
744
+ 13 Apr 2021 14:39:52 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
745
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:39:52-03:00","fails_count":1,"failed_at":"2021-04-13T11:39:52-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886171,"code":"bank_billet.canceled","data":{"object":{"id":382341,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
746
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/dromzl","customer_person_name":"Joao
747
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
748
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
749
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
750
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/dromzl","formats":{"default":"https://sandbox.bole.to/3/dromzl","png":"https://sandbox.bole.to/3/dromzl.png?r=1618324789","pdf":"https://sandbox.bole.to/3/dromzl.pdf?r=1618324789","boleto_hibrido":"https://sandbox.bole.to/3/dromzl/boleto_hibrido?r=1618324789","boleto_pix":"https://sandbox.bole.to/3/dromzl/boleto_pix?r=1618324789","barcode":"https://sandbox.bole.to/3/dromzl/barcode","envelope":"https://sandbox.bole.to/3/dromzl/envelope","letter":"https://sandbox.bole.to/3/dromzl/letter","line":"https://sandbox.bole.to/3/dromzl/line","recibo":"https://sandbox.bole.to/3/dromzl/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
751
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
752
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
753
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
754
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000057-2","processed_our_number_raw":"109000000572","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
755
+ 00005.722335 21231.200003 5 88540000000901","our_number":"00000057","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005722332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348189,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382341,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
756
+ de Título","created_at":"2021-04-13T11:39:48-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
757
+ 11:39:46 -0300","2021-04-13 11:39:49 -0300"]}},"occurred_at":"2021-04-13T11:39:49-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:39:50-03:00","updated_at":"2021-04-13T11:39:50-03:00"}},{"id":608568,"uid":"8829a2ad-74b3-414e-a9eb-283a02384daa","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":546,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=696be077965f20cc04be5deba8dccbdb2152a414","X-BoletoSimples-Delivery-Id":"8829a2ad-74b3-414e-a9eb-283a02384daa","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
758
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382341,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
759
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/dromzl","customer_person_name":"Joao
760
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
761
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
762
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
763
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/dromzl","formats":{"default":"https://sandbox.bole.to/3/dromzl","png":"https://sandbox.bole.to/3/dromzl.png?r=1618324789","pdf":"https://sandbox.bole.to/3/dromzl.pdf?r=1618324789","boleto_hibrido":"https://sandbox.bole.to/3/dromzl/boleto_hibrido?r=1618324789","boleto_pix":"https://sandbox.bole.to/3/dromzl/boleto_pix?r=1618324789","barcode":"https://sandbox.bole.to/3/dromzl/barcode","envelope":"https://sandbox.bole.to/3/dromzl/envelope","letter":"https://sandbox.bole.to/3/dromzl/letter","line":"https://sandbox.bole.to/3/dromzl/line","recibo":"https://sandbox.bole.to/3/dromzl/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
764
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
765
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
766
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
767
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000057-2","processed_our_number_raw":"109000000572","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
768
+ 00005.722335 21231.200003 5 88540000000901","our_number":"00000057","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005722332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348189,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382341,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
769
+ de Título","created_at":"2021-04-13T11:39:48-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
770
+ 11:39:46 -0300","2021-04-13 11:39:49 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
771
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
772
+ 13 Apr 2021 14:39:51 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
773
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:39:51-03:00","fails_count":1,"failed_at":"2021-04-13T11:39:52-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886170,"code":"bank_billet.updated","data":{"object":{"id":382341,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
774
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/dromzl","customer_person_name":"Joao
775
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
776
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
777
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
778
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/dromzl","formats":{"default":"https://sandbox.bole.to/3/dromzl","png":"https://sandbox.bole.to/3/dromzl.png?r=1618324789","pdf":"https://sandbox.bole.to/3/dromzl.pdf?r=1618324789","boleto_hibrido":"https://sandbox.bole.to/3/dromzl/boleto_hibrido?r=1618324789","boleto_pix":"https://sandbox.bole.to/3/dromzl/boleto_pix?r=1618324789","barcode":"https://sandbox.bole.to/3/dromzl/barcode","envelope":"https://sandbox.bole.to/3/dromzl/envelope","letter":"https://sandbox.bole.to/3/dromzl/letter","line":"https://sandbox.bole.to/3/dromzl/line","recibo":"https://sandbox.bole.to/3/dromzl/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
779
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
780
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
781
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
782
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000057-2","processed_our_number_raw":"109000000572","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
783
+ 00005.722335 21231.200003 5 88540000000901","our_number":"00000057","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005722332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348189,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382341,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
784
+ de Título","created_at":"2021-04-13T11:39:48-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
785
+ 11:39:46 -0300","2021-04-13 11:39:49 -0300"]}},"occurred_at":"2021-04-13T11:39:49-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:39:50-03:00","updated_at":"2021-04-13T11:39:50-03:00"}},{"id":608567,"uid":"d2d43fff-0153-4135-8243-aef49bf102c5","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":197,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=bc4c09705e29724bd3af18d17e8361c7de992da9","X-BoletoSimples-Delivery-Id":"d2d43fff-0153-4135-8243-aef49bf102c5","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
786
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382341,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
787
+ do contrato 0012","status":"opened","shorten_url":"https://sandbox.bole.to/3/dromzl","customer_person_name":"Joao
788
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
789
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
790
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
791
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/dromzl","formats":{"default":"https://sandbox.bole.to/3/dromzl","png":"https://sandbox.bole.to/3/dromzl.png?r=1618324786","pdf":"https://sandbox.bole.to/3/dromzl.pdf?r=1618324786","boleto_hibrido":"https://sandbox.bole.to/3/dromzl/boleto_hibrido?r=1618324786","boleto_pix":"https://sandbox.bole.to/3/dromzl/boleto_pix?r=1618324786","barcode":"https://sandbox.bole.to/3/dromzl/barcode","envelope":"https://sandbox.bole.to/3/dromzl/envelope","letter":"https://sandbox.bole.to/3/dromzl/letter","line":"https://sandbox.bole.to/3/dromzl/line","recibo":"https://sandbox.bole.to/3/dromzl/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
792
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
793
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
794
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
795
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000057-2","processed_our_number_raw":"109000000572","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
796
+ 00005.722335 21231.200003 5 88540000000901","our_number":"00000057","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:46-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005722332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
797
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
798
+ 13 Apr 2021 14:39:50 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
799
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:39:49-03:00","fails_count":1,"failed_at":"2021-04-13T11:39:50-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886169,"code":"bank_billet.generated","data":{"object":{"id":382341,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
800
+ do contrato 0012","status":"opened","shorten_url":"https://sandbox.bole.to/3/dromzl","customer_person_name":"Joao
801
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
802
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
803
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
804
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/dromzl","formats":{"default":"https://sandbox.bole.to/3/dromzl","png":"https://sandbox.bole.to/3/dromzl.png?r=1618324786","pdf":"https://sandbox.bole.to/3/dromzl.pdf?r=1618324786","boleto_hibrido":"https://sandbox.bole.to/3/dromzl/boleto_hibrido?r=1618324786","boleto_pix":"https://sandbox.bole.to/3/dromzl/boleto_pix?r=1618324786","barcode":"https://sandbox.bole.to/3/dromzl/barcode","envelope":"https://sandbox.bole.to/3/dromzl/envelope","letter":"https://sandbox.bole.to/3/dromzl/letter","line":"https://sandbox.bole.to/3/dromzl/line","recibo":"https://sandbox.bole.to/3/dromzl/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
805
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
806
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
807
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
808
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000057-2","processed_our_number_raw":"109000000572","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
809
+ 00005.722335 21231.200003 5 88540000000901","our_number":"00000057","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:46-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005722332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:39:47-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:39:48-03:00","updated_at":"2021-04-13T11:39:48-03:00"}},{"id":608566,"uid":"eaad7b0f-aa1a-4471-80d6-56f33de30e1f","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":187,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=0aee52e25488b9dcf3a255a2986856e78f57adbc","X-BoletoSimples-Delivery-Id":"eaad7b0f-aa1a-4471-80d6-56f33de30e1f","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
810
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382341,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
811
+ do contrato 0012","status":"opened","shorten_url":"https://sandbox.bole.to/3/dromzl","customer_person_name":"Joao
812
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
813
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
814
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
815
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/dromzl","formats":{"default":"https://sandbox.bole.to/3/dromzl","png":"https://sandbox.bole.to/3/dromzl.png?r=1618324786","pdf":"https://sandbox.bole.to/3/dromzl.pdf?r=1618324786","boleto_hibrido":"https://sandbox.bole.to/3/dromzl/boleto_hibrido?r=1618324786","boleto_pix":"https://sandbox.bole.to/3/dromzl/boleto_pix?r=1618324786","barcode":"https://sandbox.bole.to/3/dromzl/barcode","envelope":"https://sandbox.bole.to/3/dromzl/envelope","letter":"https://sandbox.bole.to/3/dromzl/letter","line":"https://sandbox.bole.to/3/dromzl/line","recibo":"https://sandbox.bole.to/3/dromzl/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
816
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
817
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
818
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
819
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000057-2","processed_our_number_raw":"109000000572","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
820
+ 00005.722335 21231.200003 5 88540000000901","our_number":"00000057","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:46-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005722332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
821
+ 11:39:46 -0300","2021-04-13 11:39:46 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
822
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
823
+ 13 Apr 2021 14:39:49 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
824
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:39:49-03:00","fails_count":1,"failed_at":"2021-04-13T11:39:50-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886167,"code":"bank_billet.updated","data":{"object":{"id":382341,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
825
+ do contrato 0012","status":"opened","shorten_url":"https://sandbox.bole.to/3/dromzl","customer_person_name":"Joao
826
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
827
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
828
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
829
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/dromzl","formats":{"default":"https://sandbox.bole.to/3/dromzl","png":"https://sandbox.bole.to/3/dromzl.png?r=1618324786","pdf":"https://sandbox.bole.to/3/dromzl.pdf?r=1618324786","boleto_hibrido":"https://sandbox.bole.to/3/dromzl/boleto_hibrido?r=1618324786","boleto_pix":"https://sandbox.bole.to/3/dromzl/boleto_pix?r=1618324786","barcode":"https://sandbox.bole.to/3/dromzl/barcode","envelope":"https://sandbox.bole.to/3/dromzl/envelope","letter":"https://sandbox.bole.to/3/dromzl/letter","line":"https://sandbox.bole.to/3/dromzl/line","recibo":"https://sandbox.bole.to/3/dromzl/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
830
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
831
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
832
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
833
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000057-2","processed_our_number_raw":"109000000572","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
834
+ 00005.722335 21231.200003 5 88540000000901","our_number":"00000057","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:46-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005722332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
835
+ 11:39:46 -0300","2021-04-13 11:39:46 -0300"]}},"occurred_at":"2021-04-13T11:39:46-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:39:47-03:00","updated_at":"2021-04-13T11:39:47-03:00"}},{"id":608565,"uid":"51ce0e24-e141-4990-97df-aee63a1cdcc7","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":536,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=45f2c51953c134ad3fc0e6fef1af61aca9c400ea","X-BoletoSimples-Delivery-Id":"51ce0e24-e141-4990-97df-aee63a1cdcc7","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
836
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382341,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
837
+ do contrato 0012","status":"generating","shorten_url":"https://sandbox.bole.to/3/dromzl","customer_person_name":"Joao
838
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
839
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
840
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
841
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/dromzl","formats":{"default":"https://sandbox.bole.to/3/dromzl","png":"https://sandbox.bole.to/3/dromzl.png?r=1618324786","pdf":"https://sandbox.bole.to/3/dromzl.pdf?r=1618324786","boleto_hibrido":"https://sandbox.bole.to/3/dromzl/boleto_hibrido?r=1618324786","boleto_pix":"https://sandbox.bole.to/3/dromzl/boleto_pix?r=1618324786","barcode":"https://sandbox.bole.to/3/dromzl/barcode","envelope":"https://sandbox.bole.to/3/dromzl/envelope","letter":"https://sandbox.bole.to/3/dromzl/letter","line":"https://sandbox.bole.to/3/dromzl/line","recibo":"https://sandbox.bole.to/3/dromzl/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
842
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
843
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
844
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
845
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000057-2","processed_our_number_raw":"109000000572","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
846
+ 00005.722335 21231.200003 5 88540000000901","our_number":"00000057","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:46-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005722332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
847
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
848
+ 13 Apr 2021 14:39:48 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
849
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:39:48-03:00","fails_count":1,"failed_at":"2021-04-13T11:39:49-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886166,"code":"bank_billet.created","data":{"object":{"id":382341,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
850
+ do contrato 0012","status":"generating","shorten_url":"https://sandbox.bole.to/3/dromzl","customer_person_name":"Joao
851
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
852
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
853
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
854
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/dromzl","formats":{"default":"https://sandbox.bole.to/3/dromzl","png":"https://sandbox.bole.to/3/dromzl.png?r=1618324786","pdf":"https://sandbox.bole.to/3/dromzl.pdf?r=1618324786","boleto_hibrido":"https://sandbox.bole.to/3/dromzl/boleto_hibrido?r=1618324786","boleto_pix":"https://sandbox.bole.to/3/dromzl/boleto_pix?r=1618324786","barcode":"https://sandbox.bole.to/3/dromzl/barcode","envelope":"https://sandbox.bole.to/3/dromzl/envelope","letter":"https://sandbox.bole.to/3/dromzl/letter","line":"https://sandbox.bole.to/3/dromzl/line","recibo":"https://sandbox.bole.to/3/dromzl/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
855
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
856
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
857
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
858
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000057-2","processed_our_number_raw":"109000000572","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
859
+ 00005.722335 21231.200003 5 88540000000901","our_number":"00000057","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:46-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005722332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:39:46-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:39:46-03:00","updated_at":"2021-04-13T11:39:46-03:00"}},{"id":608563,"uid":"34a0c0c4-3cca-4602-8b11-27b8cd7e6e67","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":147,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=1c460a8676b3f1f2eeb890c64838190252804f2d","X-BoletoSimples-Delivery-Id":"34a0c0c4-3cca-4602-8b11-27b8cd7e6e67","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
860
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382338,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/wkvxge","customer_person_name":"Joao
861
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
862
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
863
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
864
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvxge","formats":{"default":"https://sandbox.bole.to/3/wkvxge","png":"https://sandbox.bole.to/3/wkvxge.png?r=1618324686","pdf":"https://sandbox.bole.to/3/wkvxge.pdf?r=1618324686","boleto_hibrido":"https://sandbox.bole.to/3/wkvxge/boleto_hibrido?r=1618324686","boleto_pix":"https://sandbox.bole.to/3/wkvxge/boleto_pix?r=1618324686","barcode":"https://sandbox.bole.to/3/wkvxge/barcode","envelope":"https://sandbox.bole.to/3/wkvxge/envelope","letter":"https://sandbox.bole.to/3/wkvxge/letter","line":"https://sandbox.bole.to/3/wkvxge/line","recibo":"https://sandbox.bole.to/3/wkvxge/recibo","carne":"https://sandbox.bole.to/3/wkvxge/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":3547,"beneficiary_name":"J
865
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
866
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
867
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
868
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000056-4","processed_our_number_raw":"109000000564","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
869
+ 00005.642335 21231.200003 4 91710000112040","our_number":"00000056","customer_subscription_id":null,"installment_number":3,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/wkvxge/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:05-03:00","updated_at":"2021-04-13T11:38:06-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194917100001120401090000005642332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
870
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
871
+ 13 Apr 2021 14:38:25 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
872
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:38:25-03:00","fails_count":1,"failed_at":"2021-04-13T11:38:25-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886157,"code":"bank_billet.generated","data":{"object":{"id":382338,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/wkvxge","customer_person_name":"Joao
873
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
874
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
875
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
876
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvxge","formats":{"default":"https://sandbox.bole.to/3/wkvxge","png":"https://sandbox.bole.to/3/wkvxge.png?r=1618324686","pdf":"https://sandbox.bole.to/3/wkvxge.pdf?r=1618324686","boleto_hibrido":"https://sandbox.bole.to/3/wkvxge/boleto_hibrido?r=1618324686","boleto_pix":"https://sandbox.bole.to/3/wkvxge/boleto_pix?r=1618324686","barcode":"https://sandbox.bole.to/3/wkvxge/barcode","envelope":"https://sandbox.bole.to/3/wkvxge/envelope","letter":"https://sandbox.bole.to/3/wkvxge/letter","line":"https://sandbox.bole.to/3/wkvxge/line","recibo":"https://sandbox.bole.to/3/wkvxge/recibo","carne":"https://sandbox.bole.to/3/wkvxge/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":3547,"beneficiary_name":"J
877
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
878
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
879
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
880
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000056-4","processed_our_number_raw":"109000000564","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
881
+ 00005.642335 21231.200003 4 91710000112040","our_number":"00000056","customer_subscription_id":null,"installment_number":3,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/wkvxge/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:05-03:00","updated_at":"2021-04-13T11:38:06-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194917100001120401090000005642332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:38:08-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:38:19-03:00","updated_at":"2021-04-13T11:38:19-03:00"}},{"id":608561,"uid":"093bec6a-efa6-40cd-865d-3e7c1ecdea9b","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":132,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=da8523448c1fb284e719e37f18f39fd1588ff683","X-BoletoSimples-Delivery-Id":"093bec6a-efa6-40cd-865d-3e7c1ecdea9b","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
882
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382336,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/vxovlg","customer_person_name":"Joao
883
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
884
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
885
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
886
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxovlg","formats":{"default":"https://sandbox.bole.to/3/vxovlg","png":"https://sandbox.bole.to/3/vxovlg.png?r=1618324685","pdf":"https://sandbox.bole.to/3/vxovlg.pdf?r=1618324685","boleto_hibrido":"https://sandbox.bole.to/3/vxovlg/boleto_hibrido?r=1618324685","boleto_pix":"https://sandbox.bole.to/3/vxovlg/boleto_pix?r=1618324685","barcode":"https://sandbox.bole.to/3/vxovlg/barcode","envelope":"https://sandbox.bole.to/3/vxovlg/envelope","letter":"https://sandbox.bole.to/3/vxovlg/letter","line":"https://sandbox.bole.to/3/vxovlg/line","recibo":"https://sandbox.bole.to/3/vxovlg/recibo","carne":"https://sandbox.bole.to/3/vxovlg/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":3547,"beneficiary_name":"J
887
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
888
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
889
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
890
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000055-6","processed_our_number_raw":"109000000556","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
891
+ 00005.562335 21231.200003 5 91410000112040","our_number":"00000055","customer_subscription_id":null,"installment_number":2,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/vxovlg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:05-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195914100001120401090000005562332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348185,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382336,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
892
+ de Título","created_at":"2021-04-13T11:38:07-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
893
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
894
+ 13 Apr 2021 14:38:23 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
895
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:38:23-03:00","fails_count":1,"failed_at":"2021-04-13T11:38:23-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886155,"code":"bank_billet.generated","data":{"object":{"id":382336,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/vxovlg","customer_person_name":"Joao
896
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
897
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
898
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
899
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxovlg","formats":{"default":"https://sandbox.bole.to/3/vxovlg","png":"https://sandbox.bole.to/3/vxovlg.png?r=1618324685","pdf":"https://sandbox.bole.to/3/vxovlg.pdf?r=1618324685","boleto_hibrido":"https://sandbox.bole.to/3/vxovlg/boleto_hibrido?r=1618324685","boleto_pix":"https://sandbox.bole.to/3/vxovlg/boleto_pix?r=1618324685","barcode":"https://sandbox.bole.to/3/vxovlg/barcode","envelope":"https://sandbox.bole.to/3/vxovlg/envelope","letter":"https://sandbox.bole.to/3/vxovlg/letter","line":"https://sandbox.bole.to/3/vxovlg/line","recibo":"https://sandbox.bole.to/3/vxovlg/recibo","carne":"https://sandbox.bole.to/3/vxovlg/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":3547,"beneficiary_name":"J
900
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
901
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
902
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
903
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000055-6","processed_our_number_raw":"109000000556","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
904
+ 00005.562335 21231.200003 5 91410000112040","our_number":"00000055","customer_subscription_id":null,"installment_number":2,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/vxovlg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:05-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195914100001120401090000005562332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348185,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382336,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
905
+ de Título","created_at":"2021-04-13T11:38:07-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:38:08-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:38:16-03:00","updated_at":"2021-04-13T11:38:16-03:00"}},{"id":608560,"uid":"5d81eaca-3ac9-4891-9f4d-33520b6ef2ef","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":980,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=24539b16775dc06f1b66413b19961af0d1e4d1a5","X-BoletoSimples-Delivery-Id":"5d81eaca-3ac9-4891-9f4d-33520b6ef2ef","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
906
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382338,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/wkvxge","customer_person_name":"Joao
907
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
908
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
909
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
910
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvxge","formats":{"default":"https://sandbox.bole.to/3/wkvxge","png":"https://sandbox.bole.to/3/wkvxge.png?r=1618324686","pdf":"https://sandbox.bole.to/3/wkvxge.pdf?r=1618324686","boleto_hibrido":"https://sandbox.bole.to/3/wkvxge/boleto_hibrido?r=1618324686","boleto_pix":"https://sandbox.bole.to/3/wkvxge/boleto_pix?r=1618324686","barcode":"https://sandbox.bole.to/3/wkvxge/barcode","envelope":"https://sandbox.bole.to/3/wkvxge/envelope","letter":"https://sandbox.bole.to/3/wkvxge/letter","line":"https://sandbox.bole.to/3/wkvxge/line","recibo":"https://sandbox.bole.to/3/wkvxge/recibo","carne":"https://sandbox.bole.to/3/wkvxge/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":3547,"beneficiary_name":"J
911
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
912
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
913
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
914
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000056-4","processed_our_number_raw":"109000000564","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
915
+ 00005.642335 21231.200003 4 91710000112040","our_number":"00000056","customer_subscription_id":null,"installment_number":3,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/wkvxge/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:05-03:00","updated_at":"2021-04-13T11:38:06-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194917100001120401090000005642332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
916
+ 11:38:05 -0300","2021-04-13 11:38:06 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
917
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
918
+ 13 Apr 2021 14:38:22 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
919
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:38:21-03:00","fails_count":1,"failed_at":"2021-04-13T11:38:22-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886152,"code":"bank_billet.updated","data":{"object":{"id":382338,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/wkvxge","customer_person_name":"Joao
920
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
921
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
922
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
923
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvxge","formats":{"default":"https://sandbox.bole.to/3/wkvxge","png":"https://sandbox.bole.to/3/wkvxge.png?r=1618324686","pdf":"https://sandbox.bole.to/3/wkvxge.pdf?r=1618324686","boleto_hibrido":"https://sandbox.bole.to/3/wkvxge/boleto_hibrido?r=1618324686","boleto_pix":"https://sandbox.bole.to/3/wkvxge/boleto_pix?r=1618324686","barcode":"https://sandbox.bole.to/3/wkvxge/barcode","envelope":"https://sandbox.bole.to/3/wkvxge/envelope","letter":"https://sandbox.bole.to/3/wkvxge/letter","line":"https://sandbox.bole.to/3/wkvxge/line","recibo":"https://sandbox.bole.to/3/wkvxge/recibo","carne":"https://sandbox.bole.to/3/wkvxge/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":3547,"beneficiary_name":"J
924
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
925
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
926
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
927
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000056-4","processed_our_number_raw":"109000000564","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
928
+ 00005.642335 21231.200003 4 91710000112040","our_number":"00000056","customer_subscription_id":null,"installment_number":3,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/wkvxge/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:05-03:00","updated_at":"2021-04-13T11:38:06-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194917100001120401090000005642332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
929
+ 11:38:05 -0300","2021-04-13 11:38:06 -0300"]}},"occurred_at":"2021-04-13T11:38:06-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:38:15-03:00","updated_at":"2021-04-13T11:38:15-03:00"}},{"id":608559,"uid":"bf0d36cd-0286-43dd-af48-a336b211ae21","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":709,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=f40587f8dfc5d1a2623a8cbcb597b16992b202ec","X-BoletoSimples-Delivery-Id":"bf0d36cd-0286-43dd-af48-a336b211ae21","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
930
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382338,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/wkvxge","customer_person_name":"Joao
931
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
932
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
933
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
934
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvxge","formats":{"default":"https://sandbox.bole.to/3/wkvxge","png":"https://sandbox.bole.to/3/wkvxge.png?r=1618324685","pdf":"https://sandbox.bole.to/3/wkvxge.pdf?r=1618324685","boleto_hibrido":"https://sandbox.bole.to/3/wkvxge/boleto_hibrido?r=1618324685","boleto_pix":"https://sandbox.bole.to/3/wkvxge/boleto_pix?r=1618324685","barcode":"https://sandbox.bole.to/3/wkvxge/barcode","envelope":"https://sandbox.bole.to/3/wkvxge/envelope","letter":"https://sandbox.bole.to/3/wkvxge/letter","line":"https://sandbox.bole.to/3/wkvxge/line","recibo":"https://sandbox.bole.to/3/wkvxge/recibo","carne":"https://sandbox.bole.to/3/wkvxge/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":3547,"beneficiary_name":"J
935
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
936
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
937
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
938
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000056-4","processed_our_number_raw":"109000000564","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
939
+ 00005.642335 21231.200003 4 91710000112040","our_number":"00000056","customer_subscription_id":null,"installment_number":3,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/wkvxge/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:05-03:00","updated_at":"2021-04-13T11:38:05-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194917100001120401090000005642332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
940
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
941
+ 13 Apr 2021 14:38:16 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
942
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:38:15-03:00","fails_count":1,"failed_at":"2021-04-13T11:38:16-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886150,"code":"bank_billet.created","data":{"object":{"id":382338,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/wkvxge","customer_person_name":"Joao
943
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
944
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
945
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
946
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvxge","formats":{"default":"https://sandbox.bole.to/3/wkvxge","png":"https://sandbox.bole.to/3/wkvxge.png?r=1618324685","pdf":"https://sandbox.bole.to/3/wkvxge.pdf?r=1618324685","boleto_hibrido":"https://sandbox.bole.to/3/wkvxge/boleto_hibrido?r=1618324685","boleto_pix":"https://sandbox.bole.to/3/wkvxge/boleto_pix?r=1618324685","barcode":"https://sandbox.bole.to/3/wkvxge/barcode","envelope":"https://sandbox.bole.to/3/wkvxge/envelope","letter":"https://sandbox.bole.to/3/wkvxge/letter","line":"https://sandbox.bole.to/3/wkvxge/line","recibo":"https://sandbox.bole.to/3/wkvxge/recibo","carne":"https://sandbox.bole.to/3/wkvxge/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":3547,"beneficiary_name":"J
947
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
948
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
949
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
950
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000056-4","processed_our_number_raw":"109000000564","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
951
+ 00005.642335 21231.200003 4 91710000112040","our_number":"00000056","customer_subscription_id":null,"installment_number":3,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/wkvxge/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:05-03:00","updated_at":"2021-04-13T11:38:05-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194917100001120401090000005642332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:38:05-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:38:13-03:00","updated_at":"2021-04-13T11:38:13-03:00"}},{"id":608558,"uid":"adc1b6d3-e7d7-491e-9882-93a030a61790","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":211,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=a51f1fbc23257b463213276ef41c9d811180b769","X-BoletoSimples-Delivery-Id":"adc1b6d3-e7d7-491e-9882-93a030a61790","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
952
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382335,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ojkzgw","customer_person_name":"Joao
953
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
954
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
955
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
956
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkzgw","formats":{"default":"https://sandbox.bole.to/3/ojkzgw","png":"https://sandbox.bole.to/3/ojkzgw.png?r=1618324684","pdf":"https://sandbox.bole.to/3/ojkzgw.pdf?r=1618324684","boleto_hibrido":"https://sandbox.bole.to/3/ojkzgw/boleto_hibrido?r=1618324684","boleto_pix":"https://sandbox.bole.to/3/ojkzgw/boleto_pix?r=1618324684","barcode":"https://sandbox.bole.to/3/ojkzgw/barcode","envelope":"https://sandbox.bole.to/3/ojkzgw/envelope","letter":"https://sandbox.bole.to/3/ojkzgw/letter","line":"https://sandbox.bole.to/3/ojkzgw/line","recibo":"https://sandbox.bole.to/3/ojkzgw/recibo","carne":"https://sandbox.bole.to/3/ojkzgw/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":3547,"beneficiary_name":"J
957
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
958
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
959
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
960
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000054-9","processed_our_number_raw":"109000000549","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
961
+ 00005.492335 21231.200003 9 91090000112040","our_number":"00000054","customer_subscription_id":null,"installment_number":1,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/ojkzgw/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:04-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34199910900001120401090000005492332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348184,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382335,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
962
+ de Título","created_at":"2021-04-13T11:38:05-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
963
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
964
+ 13 Apr 2021 14:38:15 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
965
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:38:14-03:00","fails_count":1,"failed_at":"2021-04-13T11:38:16-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886149,"code":"bank_billet.generated","data":{"object":{"id":382335,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ojkzgw","customer_person_name":"Joao
966
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
967
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
968
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
969
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkzgw","formats":{"default":"https://sandbox.bole.to/3/ojkzgw","png":"https://sandbox.bole.to/3/ojkzgw.png?r=1618324684","pdf":"https://sandbox.bole.to/3/ojkzgw.pdf?r=1618324684","boleto_hibrido":"https://sandbox.bole.to/3/ojkzgw/boleto_hibrido?r=1618324684","boleto_pix":"https://sandbox.bole.to/3/ojkzgw/boleto_pix?r=1618324684","barcode":"https://sandbox.bole.to/3/ojkzgw/barcode","envelope":"https://sandbox.bole.to/3/ojkzgw/envelope","letter":"https://sandbox.bole.to/3/ojkzgw/letter","line":"https://sandbox.bole.to/3/ojkzgw/line","recibo":"https://sandbox.bole.to/3/ojkzgw/recibo","carne":"https://sandbox.bole.to/3/ojkzgw/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":3547,"beneficiary_name":"J
970
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
971
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
972
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
973
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000054-9","processed_our_number_raw":"109000000549","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
974
+ 00005.492335 21231.200003 9 91090000112040","our_number":"00000054","customer_subscription_id":null,"installment_number":1,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/ojkzgw/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:04-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34199910900001120401090000005492332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[{"id":348184,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382335,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
975
+ de Título","created_at":"2021-04-13T11:38:05-03:00"}],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:38:06-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:38:13-03:00","updated_at":"2021-04-13T11:38:13-03:00"}},{"id":608557,"uid":"4fde140c-9a79-4b1b-8e64-754d1b89e847","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":1179,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=87e099da7a21b9c5d6815cdf4b799d8b85fcddcb","X-BoletoSimples-Delivery-Id":"4fde140c-9a79-4b1b-8e64-754d1b89e847","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
976
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382336,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/vxovlg","customer_person_name":"Joao
977
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
978
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
979
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
980
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxovlg","formats":{"default":"https://sandbox.bole.to/3/vxovlg","png":"https://sandbox.bole.to/3/vxovlg.png?r=1618324685","pdf":"https://sandbox.bole.to/3/vxovlg.pdf?r=1618324685","boleto_hibrido":"https://sandbox.bole.to/3/vxovlg/boleto_hibrido?r=1618324685","boleto_pix":"https://sandbox.bole.to/3/vxovlg/boleto_pix?r=1618324685","barcode":"https://sandbox.bole.to/3/vxovlg/barcode","envelope":"https://sandbox.bole.to/3/vxovlg/envelope","letter":"https://sandbox.bole.to/3/vxovlg/letter","line":"https://sandbox.bole.to/3/vxovlg/line","recibo":"https://sandbox.bole.to/3/vxovlg/recibo","carne":"https://sandbox.bole.to/3/vxovlg/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":3547,"beneficiary_name":"J
981
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
982
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
983
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
984
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000055-6","processed_our_number_raw":"109000000556","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
985
+ 00005.562335 21231.200003 5 91410000112040","our_number":"00000055","customer_subscription_id":null,"installment_number":2,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/vxovlg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:05-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195914100001120401090000005562332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
986
+ 11:38:04 -0300","2021-04-13 11:38:05 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
987
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
988
+ 13 Apr 2021 14:38:13 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
989
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:38:12-03:00","fails_count":1,"failed_at":"2021-04-13T11:38:13-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886147,"code":"bank_billet.updated","data":{"object":{"id":382336,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/vxovlg","customer_person_name":"Joao
990
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
991
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
992
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
993
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxovlg","formats":{"default":"https://sandbox.bole.to/3/vxovlg","png":"https://sandbox.bole.to/3/vxovlg.png?r=1618324685","pdf":"https://sandbox.bole.to/3/vxovlg.pdf?r=1618324685","boleto_hibrido":"https://sandbox.bole.to/3/vxovlg/boleto_hibrido?r=1618324685","boleto_pix":"https://sandbox.bole.to/3/vxovlg/boleto_pix?r=1618324685","barcode":"https://sandbox.bole.to/3/vxovlg/barcode","envelope":"https://sandbox.bole.to/3/vxovlg/envelope","letter":"https://sandbox.bole.to/3/vxovlg/letter","line":"https://sandbox.bole.to/3/vxovlg/line","recibo":"https://sandbox.bole.to/3/vxovlg/recibo","carne":"https://sandbox.bole.to/3/vxovlg/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":3547,"beneficiary_name":"J
994
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
995
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
996
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
997
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000055-6","processed_our_number_raw":"109000000556","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
998
+ 00005.562335 21231.200003 5 91410000112040","our_number":"00000055","customer_subscription_id":null,"installment_number":2,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/vxovlg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:05-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195914100001120401090000005562332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
999
+ 11:38:04 -0300","2021-04-13 11:38:05 -0300"]}},"occurred_at":"2021-04-13T11:38:05-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:38:10-03:00","updated_at":"2021-04-13T11:38:10-03:00"}},{"id":608556,"uid":"b7c04f06-7960-40a6-9c92-57953722f792","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":856,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=41bfb83cbb489850c8af147405513bd655ef9824","X-BoletoSimples-Delivery-Id":"b7c04f06-7960-40a6-9c92-57953722f792","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1000
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382336,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/vxovlg","customer_person_name":"Joao
1001
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1002
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1003
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1004
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxovlg","formats":{"default":"https://sandbox.bole.to/3/vxovlg","png":"https://sandbox.bole.to/3/vxovlg.png?r=1618324684","pdf":"https://sandbox.bole.to/3/vxovlg.pdf?r=1618324684","boleto_hibrido":"https://sandbox.bole.to/3/vxovlg/boleto_hibrido?r=1618324684","boleto_pix":"https://sandbox.bole.to/3/vxovlg/boleto_pix?r=1618324684","barcode":"https://sandbox.bole.to/3/vxovlg/barcode","envelope":"https://sandbox.bole.to/3/vxovlg/envelope","letter":"https://sandbox.bole.to/3/vxovlg/letter","line":"https://sandbox.bole.to/3/vxovlg/line","recibo":"https://sandbox.bole.to/3/vxovlg/recibo","carne":"https://sandbox.bole.to/3/vxovlg/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":3547,"beneficiary_name":"J
1005
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1006
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1007
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1008
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000055-6","processed_our_number_raw":"109000000556","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1009
+ 00005.562335 21231.200003 5 91410000112040","our_number":"00000055","customer_subscription_id":null,"installment_number":2,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/vxovlg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:04-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195914100001120401090000005562332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1010
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1011
+ 13 Apr 2021 14:38:12 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1012
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:38:10-03:00","fails_count":1,"failed_at":"2021-04-13T11:38:12-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886144,"code":"bank_billet.created","data":{"object":{"id":382336,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/vxovlg","customer_person_name":"Joao
1013
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1014
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1015
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1016
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxovlg","formats":{"default":"https://sandbox.bole.to/3/vxovlg","png":"https://sandbox.bole.to/3/vxovlg.png?r=1618324684","pdf":"https://sandbox.bole.to/3/vxovlg.pdf?r=1618324684","boleto_hibrido":"https://sandbox.bole.to/3/vxovlg/boleto_hibrido?r=1618324684","boleto_pix":"https://sandbox.bole.to/3/vxovlg/boleto_pix?r=1618324684","barcode":"https://sandbox.bole.to/3/vxovlg/barcode","envelope":"https://sandbox.bole.to/3/vxovlg/envelope","letter":"https://sandbox.bole.to/3/vxovlg/letter","line":"https://sandbox.bole.to/3/vxovlg/line","recibo":"https://sandbox.bole.to/3/vxovlg/recibo","carne":"https://sandbox.bole.to/3/vxovlg/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":3547,"beneficiary_name":"J
1017
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1018
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1019
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1020
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000055-6","processed_our_number_raw":"109000000556","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1021
+ 00005.562335 21231.200003 5 91410000112040","our_number":"00000055","customer_subscription_id":null,"installment_number":2,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/vxovlg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:04-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195914100001120401090000005562332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:38:04-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:38:09-03:00","updated_at":"2021-04-13T11:38:09-03:00"}},{"id":608555,"uid":"f057725c-2c0b-423b-8954-0370a09a2048","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":255,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=6d68bfcbc4f0d060bbe3f984b1c1df8a2c691b56","X-BoletoSimples-Delivery-Id":"f057725c-2c0b-423b-8954-0370a09a2048","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1022
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382335,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ojkzgw","customer_person_name":"Joao
1023
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1024
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1025
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1026
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkzgw","formats":{"default":"https://sandbox.bole.to/3/ojkzgw","png":"https://sandbox.bole.to/3/ojkzgw.png?r=1618324684","pdf":"https://sandbox.bole.to/3/ojkzgw.pdf?r=1618324684","boleto_hibrido":"https://sandbox.bole.to/3/ojkzgw/boleto_hibrido?r=1618324684","boleto_pix":"https://sandbox.bole.to/3/ojkzgw/boleto_pix?r=1618324684","barcode":"https://sandbox.bole.to/3/ojkzgw/barcode","envelope":"https://sandbox.bole.to/3/ojkzgw/envelope","letter":"https://sandbox.bole.to/3/ojkzgw/letter","line":"https://sandbox.bole.to/3/ojkzgw/line","recibo":"https://sandbox.bole.to/3/ojkzgw/recibo","carne":"https://sandbox.bole.to/3/ojkzgw/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":3547,"beneficiary_name":"J
1027
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1028
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1029
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1030
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000054-9","processed_our_number_raw":"109000000549","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1031
+ 00005.492335 21231.200003 9 91090000112040","our_number":"00000054","customer_subscription_id":null,"installment_number":1,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/ojkzgw/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:04-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34199910900001120401090000005492332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
1032
+ 11:38:04 -0300","2021-04-13 11:38:04 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1033
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1034
+ 13 Apr 2021 14:38:07 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1035
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:38:07-03:00","fails_count":1,"failed_at":"2021-04-13T11:38:07-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886142,"code":"bank_billet.updated","data":{"object":{"id":382335,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ojkzgw","customer_person_name":"Joao
1036
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1037
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1038
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1039
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkzgw","formats":{"default":"https://sandbox.bole.to/3/ojkzgw","png":"https://sandbox.bole.to/3/ojkzgw.png?r=1618324684","pdf":"https://sandbox.bole.to/3/ojkzgw.pdf?r=1618324684","boleto_hibrido":"https://sandbox.bole.to/3/ojkzgw/boleto_hibrido?r=1618324684","boleto_pix":"https://sandbox.bole.to/3/ojkzgw/boleto_pix?r=1618324684","barcode":"https://sandbox.bole.to/3/ojkzgw/barcode","envelope":"https://sandbox.bole.to/3/ojkzgw/envelope","letter":"https://sandbox.bole.to/3/ojkzgw/letter","line":"https://sandbox.bole.to/3/ojkzgw/line","recibo":"https://sandbox.bole.to/3/ojkzgw/recibo","carne":"https://sandbox.bole.to/3/ojkzgw/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":3547,"beneficiary_name":"J
1040
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1041
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1042
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1043
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000054-9","processed_our_number_raw":"109000000549","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1044
+ 00005.492335 21231.200003 9 91090000112040","our_number":"00000054","customer_subscription_id":null,"installment_number":1,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/ojkzgw/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:04-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34199910900001120401090000005492332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
1045
+ 11:38:04 -0300","2021-04-13 11:38:04 -0300"]}},"occurred_at":"2021-04-13T11:38:04-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:38:06-03:00","updated_at":"2021-04-13T11:38:06-03:00"}},{"id":608554,"uid":"0d345cf4-fbcf-4853-a9c0-b385a4e4ae35","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":178,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=97ce48216be7401fb66866d690f2c01372162c39","X-BoletoSimples-Delivery-Id":"0d345cf4-fbcf-4853-a9c0-b385a4e4ae35","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1046
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382335,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/ojkzgw","customer_person_name":"Joao
1047
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1048
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1049
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1050
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkzgw","formats":{"default":"https://sandbox.bole.to/3/ojkzgw","png":"https://sandbox.bole.to/3/ojkzgw.png?r=1618324684","pdf":"https://sandbox.bole.to/3/ojkzgw.pdf?r=1618324684","boleto_hibrido":"https://sandbox.bole.to/3/ojkzgw/boleto_hibrido?r=1618324684","boleto_pix":"https://sandbox.bole.to/3/ojkzgw/boleto_pix?r=1618324684","barcode":"https://sandbox.bole.to/3/ojkzgw/barcode","envelope":"https://sandbox.bole.to/3/ojkzgw/envelope","letter":"https://sandbox.bole.to/3/ojkzgw/letter","line":"https://sandbox.bole.to/3/ojkzgw/line","recibo":"https://sandbox.bole.to/3/ojkzgw/recibo","carne":"https://sandbox.bole.to/3/ojkzgw/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":3547,"beneficiary_name":"J
1051
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1052
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1053
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1054
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000054-9","processed_our_number_raw":"109000000549","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1055
+ 00005.492335 21231.200003 9 91090000112040","our_number":"00000054","customer_subscription_id":null,"installment_number":1,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/ojkzgw/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:04-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34199910900001120401090000005492332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1056
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1057
+ 13 Apr 2021 14:38:05 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1058
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:38:05-03:00","fails_count":1,"failed_at":"2021-04-13T11:38:05-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886141,"code":"bank_billet.created","data":{"object":{"id":382335,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/ojkzgw","customer_person_name":"Joao
1059
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1060
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1061
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1062
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkzgw","formats":{"default":"https://sandbox.bole.to/3/ojkzgw","png":"https://sandbox.bole.to/3/ojkzgw.png?r=1618324684","pdf":"https://sandbox.bole.to/3/ojkzgw.pdf?r=1618324684","boleto_hibrido":"https://sandbox.bole.to/3/ojkzgw/boleto_hibrido?r=1618324684","boleto_pix":"https://sandbox.bole.to/3/ojkzgw/boleto_pix?r=1618324684","barcode":"https://sandbox.bole.to/3/ojkzgw/barcode","envelope":"https://sandbox.bole.to/3/ojkzgw/envelope","letter":"https://sandbox.bole.to/3/ojkzgw/letter","line":"https://sandbox.bole.to/3/ojkzgw/line","recibo":"https://sandbox.bole.to/3/ojkzgw/recibo","carne":"https://sandbox.bole.to/3/ojkzgw/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":3547,"beneficiary_name":"J
1063
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1064
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1065
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1066
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000054-9","processed_our_number_raw":"109000000549","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1067
+ 00005.492335 21231.200003 9 91090000112040","our_number":"00000054","customer_subscription_id":null,"installment_number":1,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/ojkzgw/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:04-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34199910900001120401090000005492332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:38:04-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:04-03:00"}},{"id":608552,"uid":"32e4e278-b716-4a6b-bcc6-5f4193e590e0","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":135,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=c18490ea1dc6c262a9c6b0a114a1d2b61c5142f9","X-BoletoSimples-Delivery-Id":"32e4e278-b716-4a6b-bcc6-5f4193e590e0","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1068
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382333,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzwnd","customer_person_name":"Joao
1069
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1070
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1071
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1072
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzwnd","formats":{"default":"https://sandbox.bole.to/3/kyzwnd","png":"https://sandbox.bole.to/3/kyzwnd.png?r=1618324549","pdf":"https://sandbox.bole.to/3/kyzwnd.pdf?r=1618324549","boleto_hibrido":"https://sandbox.bole.to/3/kyzwnd/boleto_hibrido?r=1618324549","boleto_pix":"https://sandbox.bole.to/3/kyzwnd/boleto_pix?r=1618324549","barcode":"https://sandbox.bole.to/3/kyzwnd/barcode","envelope":"https://sandbox.bole.to/3/kyzwnd/envelope","letter":"https://sandbox.bole.to/3/kyzwnd/letter","line":"https://sandbox.bole.to/3/kyzwnd/line","recibo":"https://sandbox.bole.to/3/kyzwnd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1073
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1074
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1075
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1076
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000053-1","processed_our_number_raw":"109000000531","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1077
+ 00005.312335 21231.200003 7 86190000112040","our_number":"00000053","customer_subscription_id":2637,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:49-03:00","updated_at":"2021-04-13T11:35:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197861900001120401090000005312332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1078
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1079
+ 13 Apr 2021 14:35:53 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1080
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:35:53-03:00","fails_count":1,"failed_at":"2021-04-13T11:35:53-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886135,"code":"bank_billet.generated","data":{"object":{"id":382333,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzwnd","customer_person_name":"Joao
1081
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1082
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1083
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1084
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzwnd","formats":{"default":"https://sandbox.bole.to/3/kyzwnd","png":"https://sandbox.bole.to/3/kyzwnd.png?r=1618324549","pdf":"https://sandbox.bole.to/3/kyzwnd.pdf?r=1618324549","boleto_hibrido":"https://sandbox.bole.to/3/kyzwnd/boleto_hibrido?r=1618324549","boleto_pix":"https://sandbox.bole.to/3/kyzwnd/boleto_pix?r=1618324549","barcode":"https://sandbox.bole.to/3/kyzwnd/barcode","envelope":"https://sandbox.bole.to/3/kyzwnd/envelope","letter":"https://sandbox.bole.to/3/kyzwnd/letter","line":"https://sandbox.bole.to/3/kyzwnd/line","recibo":"https://sandbox.bole.to/3/kyzwnd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1085
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1086
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1087
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1088
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000053-1","processed_our_number_raw":"109000000531","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1089
+ 00005.312335 21231.200003 7 86190000112040","our_number":"00000053","customer_subscription_id":2637,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:49-03:00","updated_at":"2021-04-13T11:35:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197861900001120401090000005312332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:35:50-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:35:51-03:00","updated_at":"2021-04-13T11:35:51-03:00"}},{"id":608551,"uid":"ce5400f5-af62-48c3-b71e-68dc4b268125","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":838,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=488c25f7864d9f9e047f6e088356b0244ef95988","X-BoletoSimples-Delivery-Id":"ce5400f5-af62-48c3-b71e-68dc4b268125","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1090
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382333,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzwnd","customer_person_name":"Joao
1091
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1092
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1093
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1094
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzwnd","formats":{"default":"https://sandbox.bole.to/3/kyzwnd","png":"https://sandbox.bole.to/3/kyzwnd.png?r=1618324549","pdf":"https://sandbox.bole.to/3/kyzwnd.pdf?r=1618324549","boleto_hibrido":"https://sandbox.bole.to/3/kyzwnd/boleto_hibrido?r=1618324549","boleto_pix":"https://sandbox.bole.to/3/kyzwnd/boleto_pix?r=1618324549","barcode":"https://sandbox.bole.to/3/kyzwnd/barcode","envelope":"https://sandbox.bole.to/3/kyzwnd/envelope","letter":"https://sandbox.bole.to/3/kyzwnd/letter","line":"https://sandbox.bole.to/3/kyzwnd/line","recibo":"https://sandbox.bole.to/3/kyzwnd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1095
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1096
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1097
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1098
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000053-1","processed_our_number_raw":"109000000531","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1099
+ 00005.312335 21231.200003 7 86190000112040","our_number":"00000053","customer_subscription_id":2637,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:49-03:00","updated_at":"2021-04-13T11:35:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197861900001120401090000005312332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
1100
+ 11:35:49 -0300","2021-04-13 11:35:49 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1101
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1102
+ 13 Apr 2021 14:35:52 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1103
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:35:51-03:00","fails_count":1,"failed_at":"2021-04-13T11:35:52-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886133,"code":"bank_billet.updated","data":{"object":{"id":382333,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzwnd","customer_person_name":"Joao
1104
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1105
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1106
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1107
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzwnd","formats":{"default":"https://sandbox.bole.to/3/kyzwnd","png":"https://sandbox.bole.to/3/kyzwnd.png?r=1618324549","pdf":"https://sandbox.bole.to/3/kyzwnd.pdf?r=1618324549","boleto_hibrido":"https://sandbox.bole.to/3/kyzwnd/boleto_hibrido?r=1618324549","boleto_pix":"https://sandbox.bole.to/3/kyzwnd/boleto_pix?r=1618324549","barcode":"https://sandbox.bole.to/3/kyzwnd/barcode","envelope":"https://sandbox.bole.to/3/kyzwnd/envelope","letter":"https://sandbox.bole.to/3/kyzwnd/letter","line":"https://sandbox.bole.to/3/kyzwnd/line","recibo":"https://sandbox.bole.to/3/kyzwnd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1108
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1109
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1110
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1111
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000053-1","processed_our_number_raw":"109000000531","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1112
+ 00005.312335 21231.200003 7 86190000112040","our_number":"00000053","customer_subscription_id":2637,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:49-03:00","updated_at":"2021-04-13T11:35:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197861900001120401090000005312332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
1113
+ 11:35:49 -0300","2021-04-13 11:35:49 -0300"]}},"occurred_at":"2021-04-13T11:35:49-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:35:50-03:00","updated_at":"2021-04-13T11:35:50-03:00"}},{"id":608550,"uid":"fa708fa2-c17d-42d0-8b69-9f2a3b8f85f1","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":206,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=c7ff5faa27f7fa6a8d9b91b650339e4cf8a61bb7","X-BoletoSimples-Delivery-Id":"fa708fa2-c17d-42d0-8b69-9f2a3b8f85f1","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1114
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382333,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/kyzwnd","customer_person_name":"Joao
1115
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1116
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1117
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1118
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzwnd","formats":{"default":"https://sandbox.bole.to/3/kyzwnd","png":"https://sandbox.bole.to/3/kyzwnd.png?r=1618324549","pdf":"https://sandbox.bole.to/3/kyzwnd.pdf?r=1618324549","boleto_hibrido":"https://sandbox.bole.to/3/kyzwnd/boleto_hibrido?r=1618324549","boleto_pix":"https://sandbox.bole.to/3/kyzwnd/boleto_pix?r=1618324549","barcode":"https://sandbox.bole.to/3/kyzwnd/barcode","envelope":"https://sandbox.bole.to/3/kyzwnd/envelope","letter":"https://sandbox.bole.to/3/kyzwnd/letter","line":"https://sandbox.bole.to/3/kyzwnd/line","recibo":"https://sandbox.bole.to/3/kyzwnd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1119
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1120
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1121
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1122
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000053-1","processed_our_number_raw":"109000000531","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1123
+ 00005.312335 21231.200003 7 86190000112040","our_number":"00000053","customer_subscription_id":2637,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:49-03:00","updated_at":"2021-04-13T11:35:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197861900001120401090000005312332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1124
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1125
+ 13 Apr 2021 14:35:50 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1126
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:35:50-03:00","fails_count":1,"failed_at":"2021-04-13T11:35:50-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886132,"code":"bank_billet.created","data":{"object":{"id":382333,"expire_at":"2021-05-13","paid_at":null,"description":"Hospedagem","status":"generating","shorten_url":"https://sandbox.bole.to/3/kyzwnd","customer_person_name":"Joao
1127
+ da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
1128
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1129
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
1130
+ de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/kyzwnd","formats":{"default":"https://sandbox.bole.to/3/kyzwnd","png":"https://sandbox.bole.to/3/kyzwnd.png?r=1618324549","pdf":"https://sandbox.bole.to/3/kyzwnd.pdf?r=1618324549","boleto_hibrido":"https://sandbox.bole.to/3/kyzwnd/boleto_hibrido?r=1618324549","boleto_pix":"https://sandbox.bole.to/3/kyzwnd/boleto_pix?r=1618324549","barcode":"https://sandbox.bole.to/3/kyzwnd/barcode","envelope":"https://sandbox.bole.to/3/kyzwnd/envelope","letter":"https://sandbox.bole.to/3/kyzwnd/letter","line":"https://sandbox.bole.to/3/kyzwnd/line","recibo":"https://sandbox.bole.to/3/kyzwnd/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1131
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1132
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1133
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1134
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000053-1","processed_our_number_raw":"109000000531","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1135
+ 00005.312335 21231.200003 7 86190000112040","our_number":"00000053","customer_subscription_id":2637,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:49-03:00","updated_at":"2021-04-13T11:35:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197861900001120401090000005312332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:35:49-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:35:49-03:00","updated_at":"2021-04-13T11:35:49-03:00"}},{"id":608549,"uid":"bd17750e-de53-4729-a469-069b93ebe944","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":74,"request_headers":{"X-BoletoSimples-Event":"bank_billet.canceled","X-Hub-Signature":"sha1=c01268184276f1cd2f363c0f6986b5377ed5745e","X-BoletoSimples-Delivery-Id":"bd17750e-de53-4729-a469-069b93ebe944","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1136
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382332,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
1137
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgmvn","customer_person_name":"Joao
1138
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
1139
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1140
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
1141
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgmvn","formats":{"default":"https://sandbox.bole.to/3/qzgmvn","png":"https://sandbox.bole.to/3/qzgmvn.png?r=1618324533","pdf":"https://sandbox.bole.to/3/qzgmvn.pdf?r=1618324533","boleto_hibrido":"https://sandbox.bole.to/3/qzgmvn/boleto_hibrido?r=1618324533","boleto_pix":"https://sandbox.bole.to/3/qzgmvn/boleto_pix?r=1618324533","barcode":"https://sandbox.bole.to/3/qzgmvn/barcode","envelope":"https://sandbox.bole.to/3/qzgmvn/envelope","letter":"https://sandbox.bole.to/3/qzgmvn/letter","line":"https://sandbox.bole.to/3/qzgmvn/line","recibo":"https://sandbox.bole.to/3/qzgmvn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1142
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1143
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1144
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1145
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000052-3","processed_our_number_raw":"109000000523","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1146
+ 00005.232335 21231.200003 5 88540000000901","our_number":"00000052","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:30-03:00","updated_at":"2021-04-13T11:35:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005232332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
1147
+ 11:35:32 -0300","2021-04-13 11:35:33 -0300"]},"event_code":"bank_billet.canceled","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1148
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1149
+ 13 Apr 2021 14:35:40 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1150
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:35:40-03:00","fails_count":1,"failed_at":"2021-04-13T11:35:40-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886126,"code":"bank_billet.canceled","data":{"object":{"id":382332,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
1151
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgmvn","customer_person_name":"Joao
1152
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
1153
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1154
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
1155
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgmvn","formats":{"default":"https://sandbox.bole.to/3/qzgmvn","png":"https://sandbox.bole.to/3/qzgmvn.png?r=1618324533","pdf":"https://sandbox.bole.to/3/qzgmvn.pdf?r=1618324533","boleto_hibrido":"https://sandbox.bole.to/3/qzgmvn/boleto_hibrido?r=1618324533","boleto_pix":"https://sandbox.bole.to/3/qzgmvn/boleto_pix?r=1618324533","barcode":"https://sandbox.bole.to/3/qzgmvn/barcode","envelope":"https://sandbox.bole.to/3/qzgmvn/envelope","letter":"https://sandbox.bole.to/3/qzgmvn/letter","line":"https://sandbox.bole.to/3/qzgmvn/line","recibo":"https://sandbox.bole.to/3/qzgmvn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1156
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1157
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1158
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1159
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000052-3","processed_our_number_raw":"109000000523","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1160
+ 00005.232335 21231.200003 5 88540000000901","our_number":"00000052","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:30-03:00","updated_at":"2021-04-13T11:35:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005232332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
1161
+ 11:35:32 -0300","2021-04-13 11:35:33 -0300"]}},"occurred_at":"2021-04-13T11:35:33-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:35:37-03:00","updated_at":"2021-04-13T11:35:37-03:00"}},{"id":608548,"uid":"2d36a976-f279-4f8b-8768-6032799ba048","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":156,"request_headers":{"X-BoletoSimples-Event":"bank_billet.generated","X-Hub-Signature":"sha1=0bbad6c771ddd5255623f587b2fc5f31e99d4af4","X-BoletoSimples-Delivery-Id":"2d36a976-f279-4f8b-8768-6032799ba048","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1162
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382332,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
1163
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgmvn","customer_person_name":"Joao
1164
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
1165
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1166
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
1167
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgmvn","formats":{"default":"https://sandbox.bole.to/3/qzgmvn","png":"https://sandbox.bole.to/3/qzgmvn.png?r=1618324533","pdf":"https://sandbox.bole.to/3/qzgmvn.pdf?r=1618324533","boleto_hibrido":"https://sandbox.bole.to/3/qzgmvn/boleto_hibrido?r=1618324533","boleto_pix":"https://sandbox.bole.to/3/qzgmvn/boleto_pix?r=1618324533","barcode":"https://sandbox.bole.to/3/qzgmvn/barcode","envelope":"https://sandbox.bole.to/3/qzgmvn/envelope","letter":"https://sandbox.bole.to/3/qzgmvn/letter","line":"https://sandbox.bole.to/3/qzgmvn/line","recibo":"https://sandbox.bole.to/3/qzgmvn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1168
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1169
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1170
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1171
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000052-3","processed_our_number_raw":"109000000523","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1172
+ 00005.232335 21231.200003 5 88540000000901","our_number":"00000052","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:30-03:00","updated_at":"2021-04-13T11:35:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005232332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.generated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1173
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1174
+ 13 Apr 2021 14:35:39 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1175
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:35:39-03:00","fails_count":1,"failed_at":"2021-04-13T11:35:39-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886125,"code":"bank_billet.generated","data":{"object":{"id":382332,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
1176
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgmvn","customer_person_name":"Joao
1177
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
1178
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1179
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
1180
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgmvn","formats":{"default":"https://sandbox.bole.to/3/qzgmvn","png":"https://sandbox.bole.to/3/qzgmvn.png?r=1618324533","pdf":"https://sandbox.bole.to/3/qzgmvn.pdf?r=1618324533","boleto_hibrido":"https://sandbox.bole.to/3/qzgmvn/boleto_hibrido?r=1618324533","boleto_pix":"https://sandbox.bole.to/3/qzgmvn/boleto_pix?r=1618324533","barcode":"https://sandbox.bole.to/3/qzgmvn/barcode","envelope":"https://sandbox.bole.to/3/qzgmvn/envelope","letter":"https://sandbox.bole.to/3/qzgmvn/letter","line":"https://sandbox.bole.to/3/qzgmvn/line","recibo":"https://sandbox.bole.to/3/qzgmvn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1181
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1182
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1183
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1184
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000052-3","processed_our_number_raw":"109000000523","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1185
+ 00005.232335 21231.200003 5 88540000000901","our_number":"00000052","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:30-03:00","updated_at":"2021-04-13T11:35:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005232332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:35:33-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:35:37-03:00","updated_at":"2021-04-13T11:35:37-03:00"}},{"id":608547,"uid":"80cc0b43-74d8-4302-8b6f-aa38e1001ef8","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":194,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=511fff6e16a6d061796efde9fd1f24866aa6ef63","X-BoletoSimples-Delivery-Id":"80cc0b43-74d8-4302-8b6f-aa38e1001ef8","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1186
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382332,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
1187
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgmvn","customer_person_name":"Joao
1188
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
1189
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1190
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
1191
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgmvn","formats":{"default":"https://sandbox.bole.to/3/qzgmvn","png":"https://sandbox.bole.to/3/qzgmvn.png?r=1618324533","pdf":"https://sandbox.bole.to/3/qzgmvn.pdf?r=1618324533","boleto_hibrido":"https://sandbox.bole.to/3/qzgmvn/boleto_hibrido?r=1618324533","boleto_pix":"https://sandbox.bole.to/3/qzgmvn/boleto_pix?r=1618324533","barcode":"https://sandbox.bole.to/3/qzgmvn/barcode","envelope":"https://sandbox.bole.to/3/qzgmvn/envelope","letter":"https://sandbox.bole.to/3/qzgmvn/letter","line":"https://sandbox.bole.to/3/qzgmvn/line","recibo":"https://sandbox.bole.to/3/qzgmvn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1192
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1193
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1194
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1195
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000052-3","processed_our_number_raw":"109000000523","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1196
+ 00005.232335 21231.200003 5 88540000000901","our_number":"00000052","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:30-03:00","updated_at":"2021-04-13T11:35:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005232332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
1197
+ 11:35:32 -0300","2021-04-13 11:35:33 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1198
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1199
+ 13 Apr 2021 14:35:39 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1200
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:35:39-03:00","fails_count":1,"failed_at":"2021-04-13T11:35:39-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886124,"code":"bank_billet.updated","data":{"object":{"id":382332,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
1201
+ do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgmvn","customer_person_name":"Joao
1202
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
1203
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1204
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
1205
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgmvn","formats":{"default":"https://sandbox.bole.to/3/qzgmvn","png":"https://sandbox.bole.to/3/qzgmvn.png?r=1618324533","pdf":"https://sandbox.bole.to/3/qzgmvn.pdf?r=1618324533","boleto_hibrido":"https://sandbox.bole.to/3/qzgmvn/boleto_hibrido?r=1618324533","boleto_pix":"https://sandbox.bole.to/3/qzgmvn/boleto_pix?r=1618324533","barcode":"https://sandbox.bole.to/3/qzgmvn/barcode","envelope":"https://sandbox.bole.to/3/qzgmvn/envelope","letter":"https://sandbox.bole.to/3/qzgmvn/letter","line":"https://sandbox.bole.to/3/qzgmvn/line","recibo":"https://sandbox.bole.to/3/qzgmvn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1206
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1207
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1208
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1209
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000052-3","processed_our_number_raw":"109000000523","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1210
+ 00005.232335 21231.200003 5 88540000000901","our_number":"00000052","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:30-03:00","updated_at":"2021-04-13T11:35:33-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005232332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["opened","canceled"],"updated_at":["2021-04-13
1211
+ 11:35:32 -0300","2021-04-13 11:35:33 -0300"]}},"occurred_at":"2021-04-13T11:35:33-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:35:37-03:00","updated_at":"2021-04-13T11:35:37-03:00"}},{"id":608546,"uid":"7f5d06b8-0ef3-44e0-9d75-55d3c76d173e","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":487,"request_headers":{"X-BoletoSimples-Event":"bank_billet.updated","X-Hub-Signature":"sha1=fbf246e2fab29308b4560fc0c0556812fc328531","X-BoletoSimples-Delivery-Id":"7f5d06b8-0ef3-44e0-9d75-55d3c76d173e","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1212
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382332,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
1213
+ do contrato 0012","status":"opened","shorten_url":"https://sandbox.bole.to/3/qzgmvn","customer_person_name":"Joao
1214
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
1215
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1216
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
1217
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgmvn","formats":{"default":"https://sandbox.bole.to/3/qzgmvn","png":"https://sandbox.bole.to/3/qzgmvn.png?r=1618324532","pdf":"https://sandbox.bole.to/3/qzgmvn.pdf?r=1618324532","boleto_hibrido":"https://sandbox.bole.to/3/qzgmvn/boleto_hibrido?r=1618324532","boleto_pix":"https://sandbox.bole.to/3/qzgmvn/boleto_pix?r=1618324532","barcode":"https://sandbox.bole.to/3/qzgmvn/barcode","envelope":"https://sandbox.bole.to/3/qzgmvn/envelope","letter":"https://sandbox.bole.to/3/qzgmvn/letter","line":"https://sandbox.bole.to/3/qzgmvn/line","recibo":"https://sandbox.bole.to/3/qzgmvn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1218
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1219
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1220
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1221
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000052-3","processed_our_number_raw":"109000000523","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1222
+ 00005.232335 21231.200003 5 88540000000901","our_number":"00000052","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:30-03:00","updated_at":"2021-04-13T11:35:32-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005232332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
1223
+ 11:35:30 -0300","2021-04-13 11:35:32 -0300"]},"event_code":"bank_billet.updated","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1224
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1225
+ 13 Apr 2021 14:35:38 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1226
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:35:38-03:00","fails_count":1,"failed_at":"2021-04-13T11:35:39-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886122,"code":"bank_billet.updated","data":{"object":{"id":382332,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
1227
+ do contrato 0012","status":"opened","shorten_url":"https://sandbox.bole.to/3/qzgmvn","customer_person_name":"Joao
1228
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
1229
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1230
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
1231
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgmvn","formats":{"default":"https://sandbox.bole.to/3/qzgmvn","png":"https://sandbox.bole.to/3/qzgmvn.png?r=1618324532","pdf":"https://sandbox.bole.to/3/qzgmvn.pdf?r=1618324532","boleto_hibrido":"https://sandbox.bole.to/3/qzgmvn/boleto_hibrido?r=1618324532","boleto_pix":"https://sandbox.bole.to/3/qzgmvn/boleto_pix?r=1618324532","barcode":"https://sandbox.bole.to/3/qzgmvn/barcode","envelope":"https://sandbox.bole.to/3/qzgmvn/envelope","letter":"https://sandbox.bole.to/3/qzgmvn/letter","line":"https://sandbox.bole.to/3/qzgmvn/line","recibo":"https://sandbox.bole.to/3/qzgmvn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1232
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1233
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1234
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1235
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000052-3","processed_our_number_raw":"109000000523","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1236
+ 00005.232335 21231.200003 5 88540000000901","our_number":"00000052","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:30-03:00","updated_at":"2021-04-13T11:35:32-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005232332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
1237
+ 11:35:30 -0300","2021-04-13 11:35:32 -0300"]}},"occurred_at":"2021-04-13T11:35:32-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:35:36-03:00","updated_at":"2021-04-13T11:35:36-03:00"}},{"id":608545,"uid":"907d38e0-daea-4a84-a4c0-c6fec4742f43","url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","duration":130,"request_headers":{"X-BoletoSimples-Event":"bank_billet.created","X-Hub-Signature":"sha1=7457a1ed9c3143188543a1ea8d731261bb08a47e","X-BoletoSimples-Delivery-Id":"907d38e0-daea-4a84-a4c0-c6fec4742f43","X-BoletoSimples-Environment":"production","User-Agent":"BoletoSimples-Robot
1238
+ (production)","Content-Type":"application/json"},"request_payload":{"object":{"id":382332,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
1239
+ do contrato 0012","status":"generating","shorten_url":"https://sandbox.bole.to/3/qzgmvn","customer_person_name":"Joao
1240
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
1241
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1242
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
1243
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgmvn","formats":{"default":"https://sandbox.bole.to/3/qzgmvn","png":"https://sandbox.bole.to/3/qzgmvn.png?r=1618324530","pdf":"https://sandbox.bole.to/3/qzgmvn.pdf?r=1618324530","boleto_hibrido":"https://sandbox.bole.to/3/qzgmvn/boleto_hibrido?r=1618324530","boleto_pix":"https://sandbox.bole.to/3/qzgmvn/boleto_pix?r=1618324530","barcode":"https://sandbox.bole.to/3/qzgmvn/barcode","envelope":"https://sandbox.bole.to/3/qzgmvn/envelope","letter":"https://sandbox.bole.to/3/qzgmvn/letter","line":"https://sandbox.bole.to/3/qzgmvn/line","recibo":"https://sandbox.bole.to/3/qzgmvn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1244
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1245
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1246
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1247
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000052-3","processed_our_number_raw":"109000000523","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1248
+ 00005.232335 21231.200003 5 88540000000901","our_number":"00000052","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:30-03:00","updated_at":"2021-04-13T11:35:30-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005232332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]},"event_code":"bank_billet.created","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","first_try":null}},"request_error":null,"response_body":"Not
1249
+ found\n","response_code":404,"response_headers":{"connection":["close"],"server":["gunicorn/19.7.1"],"date":["Tue,
1250
+ 13 Apr 2021 14:35:36 GMT"],"content-type":["text/html; charset=utf-8"],"content-length":["10"],"via":["1.1
1251
+ vegur"]},"response_message":"NOT FOUND","delivered_at":null,"first_try":"2021-04-13T11:35:36-03:00","fails_count":1,"failed_at":"2021-04-13T11:35:36-03:00","webhook":{"id":3888,"url":"https://reqbs.herokuapp.com/r0b6mqr0?inspect","content_type":"application/json","events":["bank_billet.*"],"ssl_verification_enabled":true,"active":true,"bank_billet_account_id":null,"concurrency_limit":10},"status":"failed","bank_billet_account_id":3547,"content_type":"application/json","event":{"id":1886121,"code":"bank_billet.created","data":{"object":{"id":382332,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
1252
+ do contrato 0012","status":"generating","shorten_url":"https://sandbox.bole.to/3/qzgmvn","customer_person_name":"Joao
1253
+ da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
1254
+ quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
1255
+ 4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
1256
+ de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://sandbox.bole.to/3/qzgmvn","formats":{"default":"https://sandbox.bole.to/3/qzgmvn","png":"https://sandbox.bole.to/3/qzgmvn.png?r=1618324530","pdf":"https://sandbox.bole.to/3/qzgmvn.pdf?r=1618324530","boleto_hibrido":"https://sandbox.bole.to/3/qzgmvn/boleto_hibrido?r=1618324530","boleto_pix":"https://sandbox.bole.to/3/qzgmvn/boleto_pix?r=1618324530","barcode":"https://sandbox.bole.to/3/qzgmvn/barcode","envelope":"https://sandbox.bole.to/3/qzgmvn/envelope","letter":"https://sandbox.bole.to/3/qzgmvn/letter","line":"https://sandbox.bole.to/3/qzgmvn/line","recibo":"https://sandbox.bole.to/3/qzgmvn/recibo"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
1257
+ Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
1258
+ dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
1259
+ / 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
1260
+ em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000052-3","processed_our_number_raw":"109000000523","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
1261
+ 00005.232335 21231.200003 5 88540000000901","our_number":"00000052","customer_subscription_id":null,"installment_number":null,"installment_id":null,"carne_url":null,"bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:30-03:00","updated_at":"2021-04-13T11:35:30-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195885400000009011090000005232332123120000","registered_at":null,"prevent_registration":false,"customer_id":80707,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null,"bank_billet_discharges":[],"bank_billet_remittances":[],"bank_billet_payments":[],"bank_billet_registrations":[],"bank_billet_split_accounts":[]}},"occurred_at":"2021-04-13T11:35:30-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:35:35-03:00","updated_at":"2021-04-13T11:35:35-03:00"}}]'
1262
+ recorded_at: Tue, 13 Apr 2021 17:18:27 GMT
1263
+ recorded_with: VCR 6.0.0