boletosimples 0.6.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +34 -0
- data/.rspec +3 -0
- data/.rubocop.yml +9 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +6 -20
- data/Gemfile +2 -0
- data/README.md +12 -54
- data/Rakefile +3 -1
- data/boletosimples.gemspec +14 -11
- data/lib/boletosimples.rb +4 -6
- data/lib/boletosimples/configuration.rb +14 -25
- data/lib/boletosimples/last_request.rb +12 -9
- data/lib/boletosimples/middlewares/bearer.rb +12 -0
- data/lib/boletosimples/middlewares/last_request.rb +3 -1
- data/lib/boletosimples/middlewares/raise_error.rb +9 -2
- data/lib/boletosimples/middlewares/user_agent.rb +3 -1
- data/lib/boletosimples/resources/bank_billet.rb +5 -11
- data/lib/boletosimples/resources/bank_billet_account.rb +3 -1
- data/lib/boletosimples/resources/bank_billet_discharge.rb +3 -1
- data/lib/boletosimples/resources/bank_billet_payment.rb +3 -1
- data/lib/boletosimples/resources/bank_billet_remittance.rb +3 -1
- data/lib/boletosimples/resources/base_model.rb +3 -1
- data/lib/boletosimples/resources/customer.rb +3 -1
- data/lib/boletosimples/resources/customer_import.rb +5 -3
- data/lib/boletosimples/resources/customer_subscription.rb +3 -10
- data/lib/boletosimples/resources/customer_subscription_import.rb +5 -3
- data/lib/boletosimples/resources/discharge.rb +4 -11
- data/lib/boletosimples/resources/email_delivery.rb +3 -1
- data/lib/boletosimples/resources/event.rb +3 -1
- data/lib/boletosimples/resources/installment.rb +3 -1
- data/lib/boletosimples/resources/remittance.rb +3 -1
- data/lib/boletosimples/resources/sms_delivery.rb +6 -0
- data/lib/boletosimples/resources/transaction.rb +3 -1
- data/lib/boletosimples/resources/webhook.rb +3 -1
- data/lib/boletosimples/resources/webhook_delivery.rb +3 -1
- data/lib/boletosimples/response_error.rb +8 -3
- data/lib/boletosimples/version.rb +3 -1
- data/spec/boletosimples/configuration_spec.rb +71 -101
- data/spec/boletosimples/last_request_spec.rb +16 -28
- data/spec/boletosimples/resources/bank_billet_account_spec.rb +57 -33
- data/spec/boletosimples/resources/bank_billet_discharge_spec.rb +7 -12
- data/spec/boletosimples/resources/bank_billet_payment_spec.rb +7 -12
- data/spec/boletosimples/resources/bank_billet_remittance_spec.rb +7 -12
- data/spec/boletosimples/resources/bank_billet_spec.rb +56 -42
- data/spec/boletosimples/resources/customer_import_spec.rb +41 -30
- data/spec/boletosimples/resources/customer_spec.rb +52 -39
- data/spec/boletosimples/resources/customer_subscription_import_spec.rb +41 -30
- data/spec/boletosimples/resources/customer_subscription_spec.rb +61 -33
- data/spec/boletosimples/resources/discharge_spec.rb +64 -11
- data/spec/boletosimples/resources/email_delivery_spec.rb +6 -11
- data/spec/boletosimples/resources/event_spec.rb +7 -12
- data/spec/boletosimples/resources/installment_spec.rb +61 -32
- data/spec/boletosimples/resources/remittance_spec.rb +7 -12
- data/spec/boletosimples/resources/sms_delivery_spec.rb +12 -0
- data/spec/boletosimples/resources/transactions_spec.rb +7 -12
- data/spec/boletosimples/resources/webhook_delivery_spec.rb +7 -12
- data/spec/boletosimples/resources/webhook_spec.rb +7 -12
- data/spec/fixtures/discharge.RET +3 -0
- data/spec/fixtures/vcr_cassettes/last_request/bank_billets.yml +536 -88
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/all.yml +537 -91
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/success.yml +34 -92
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_params.yml +32 -20
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_root.yml +28 -17
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/valid.yml +43 -27
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/duplicate/success.yml +83 -0
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/find.yml +51 -27
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/all.yml +131 -20
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_params.yml +34 -20
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_root.yml +30 -19
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/valid.yml +41 -21
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/find.yml +38 -18
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_discharge/all.yml +66 -47
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_payment/all.yml +44 -42
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_remittance/all.yml +95 -48
- data/spec/fixtures/vcr_cassettes/resources/customer/all.yml +79 -32
- data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_params.yml +30 -17
- data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_root.yml +28 -17
- data/spec/fixtures/vcr_cassettes/resources/customer/create/valid.yml +33 -21
- data/spec/fixtures/vcr_cassettes/resources/customer/find.yml +33 -19
- data/spec/fixtures/vcr_cassettes/resources/customer_import/all.yml +43 -60
- data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_params.yml +37 -51
- data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_root.yml +38 -52
- data/spec/fixtures/vcr_cassettes/resources/customer_import/create/valid.yml +43 -68
- data/spec/fixtures/vcr_cassettes/resources/customer_import/find.yml +40 -54
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/all.yml +102 -52
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_params.yml +40 -50
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_root.yml +36 -48
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/valid.yml +48 -53
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/find.yml +44 -50
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/next_charge.yml +45 -133
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/all.yml +44 -55
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_params.yml +37 -52
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_root.yml +39 -53
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/valid.yml +43 -70
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/find.yml +40 -55
- data/spec/fixtures/vcr_cassettes/resources/discharge/all.yml +64 -33
- data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_params.yml +70 -0
- data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_root.yml +69 -0
- data/spec/fixtures/vcr_cassettes/resources/discharge/create/valid.yml +84 -0
- data/spec/fixtures/vcr_cassettes/resources/discharge/find.yml +71 -0
- data/spec/fixtures/vcr_cassettes/resources/email_delivery/all.yml +40 -43
- data/spec/fixtures/vcr_cassettes/resources/event/all.yml +490 -166
- data/spec/fixtures/vcr_cassettes/resources/installment/all.yml +418 -52
- data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_params.yml +41 -52
- data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_root.yml +36 -48
- data/spec/fixtures/vcr_cassettes/resources/installment/create/valid.yml +48 -53
- data/spec/fixtures/vcr_cassettes/resources/installment/find.yml +44 -52
- data/spec/fixtures/vcr_cassettes/resources/remittance/all.yml +53 -33
- data/spec/fixtures/vcr_cassettes/resources/sns_delivery/all.yml +73 -0
- data/spec/fixtures/vcr_cassettes/resources/transaction/all.yml +34 -22
- data/spec/fixtures/vcr_cassettes/resources/web_hook/all.yml +42 -33
- data/spec/fixtures/vcr_cassettes/resources/webhook_delivery/all.yml +1232 -54
- data/spec/spec_helper.rb +3 -20
- data/spec/support/stub_env.rb +7 -0
- data/spec/support/vcr.rb +3 -4
- metadata +87 -52
- data/.coveralls.yml +0 -2
- data/.travis.yml +0 -46
- data/gemfiles/rails_42.gemfile +0 -8
- data/gemfiles/rails_50.gemfile +0 -8
- data/gemfiles/rails_51.gemfile +0 -8
- data/gemfiles/rails_52.gemfile +0 -9
- data/lib/boletosimples/extra.rb +0 -8
- data/lib/boletosimples/resources/partner/user.rb +0 -7
- data/lib/oauth2_patch.rb +0 -24
- data/spec/boletosimples/extra_spec.rb +0 -31
- data/spec/boletosimples/resources/partner/user_spec.rb +0 -19
- data/spec/fixtures/vcr_cassettes/configuration/client_credentials/invalid.yml +0 -64
- data/spec/fixtures/vcr_cassettes/configuration/client_credentials/valid.yml +0 -56
- data/spec/fixtures/vcr_cassettes/extra/userinfo/authenticated.yml +0 -58
- data/spec/fixtures/vcr_cassettes/extra/userinfo/not_authenticated.yml +0 -54
- data/spec/fixtures/vcr_cassettes/last_request/userinfo.yml +0 -58
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/failure.yml +0 -118
- data/spec/fixtures/vcr_cassettes/resources/partner/user/create.yml +0 -60
- data/spec/spec.opts +0 -8
@@ -0,0 +1,70 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://sandbox.boletosimples.com.br/api/v1/discharges
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: '{"discharge":{"content":""}}'
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- email@minhaempresa.com.br
|
12
|
+
Authorization:
|
13
|
+
- Bearer BOLETOSIMPLES_API_TOKEN
|
14
|
+
Content-Type:
|
15
|
+
- application/json
|
16
|
+
Accept:
|
17
|
+
- application/json
|
18
|
+
Accept-Encoding:
|
19
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 422
|
23
|
+
message: Unprocessable Entity
|
24
|
+
headers:
|
25
|
+
Server:
|
26
|
+
- Cowboy
|
27
|
+
Connection:
|
28
|
+
- keep-alive
|
29
|
+
X-Frame-Options:
|
30
|
+
- DENY
|
31
|
+
X-Xss-Protection:
|
32
|
+
- 1; mode=block
|
33
|
+
X-Content-Type-Options:
|
34
|
+
- nosniff
|
35
|
+
X-Download-Options:
|
36
|
+
- noopen
|
37
|
+
X-Permitted-Cross-Domain-Policies:
|
38
|
+
- none
|
39
|
+
Referrer-Policy:
|
40
|
+
- strict-origin-when-cross-origin
|
41
|
+
Content-Type:
|
42
|
+
- application/json; charset=utf-8
|
43
|
+
X-Ratelimit-Limit:
|
44
|
+
- '1000'
|
45
|
+
X-Ratelimit-Remaining:
|
46
|
+
- '981'
|
47
|
+
Cache-Control:
|
48
|
+
- no-cache
|
49
|
+
X-Request-Id:
|
50
|
+
- 904c5219-a4ce-4a81-9249-72a63a9eebc0
|
51
|
+
X-Runtime:
|
52
|
+
- '0.026695'
|
53
|
+
Date:
|
54
|
+
- Tue, 13 Apr 2021 17:18:49 GMT
|
55
|
+
X-Rack-Cache:
|
56
|
+
- invalidate, pass
|
57
|
+
Strict-Transport-Security:
|
58
|
+
- max-age=2629746
|
59
|
+
Vary:
|
60
|
+
- Origin,Accept-Encoding
|
61
|
+
Transfer-Encoding:
|
62
|
+
- chunked
|
63
|
+
Via:
|
64
|
+
- 1.1 vegur
|
65
|
+
body:
|
66
|
+
encoding: UTF-8
|
67
|
+
string: '{"errors":{"content":["não pode ficar em branco"],"filename":["não
|
68
|
+
pode ficar em branco"]}}'
|
69
|
+
recorded_at: Tue, 13 Apr 2021 17:18:49 GMT
|
70
|
+
recorded_with: VCR 6.0.0
|
@@ -0,0 +1,69 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://sandbox.boletosimples.com.br/api/v1/discharges
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: '{"discharge":{}}'
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- email@minhaempresa.com.br
|
12
|
+
Authorization:
|
13
|
+
- Bearer BOLETOSIMPLES_API_TOKEN
|
14
|
+
Content-Type:
|
15
|
+
- application/json
|
16
|
+
Accept:
|
17
|
+
- application/json
|
18
|
+
Accept-Encoding:
|
19
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 422
|
23
|
+
message: Unprocessable Entity
|
24
|
+
headers:
|
25
|
+
Server:
|
26
|
+
- Cowboy
|
27
|
+
Connection:
|
28
|
+
- keep-alive
|
29
|
+
X-Frame-Options:
|
30
|
+
- DENY
|
31
|
+
X-Xss-Protection:
|
32
|
+
- 1; mode=block
|
33
|
+
X-Content-Type-Options:
|
34
|
+
- nosniff
|
35
|
+
X-Download-Options:
|
36
|
+
- noopen
|
37
|
+
X-Permitted-Cross-Domain-Policies:
|
38
|
+
- none
|
39
|
+
Referrer-Policy:
|
40
|
+
- strict-origin-when-cross-origin
|
41
|
+
Content-Type:
|
42
|
+
- application/json; charset=utf-8
|
43
|
+
X-Ratelimit-Limit:
|
44
|
+
- '1000'
|
45
|
+
X-Ratelimit-Remaining:
|
46
|
+
- '982'
|
47
|
+
Cache-Control:
|
48
|
+
- no-cache
|
49
|
+
X-Request-Id:
|
50
|
+
- f9519ee6-1ff5-45d2-a0a5-0dddaec31060
|
51
|
+
X-Runtime:
|
52
|
+
- '0.022960'
|
53
|
+
Date:
|
54
|
+
- Tue, 13 Apr 2021 17:18:48 GMT
|
55
|
+
X-Rack-Cache:
|
56
|
+
- invalidate, pass
|
57
|
+
Strict-Transport-Security:
|
58
|
+
- max-age=2629746
|
59
|
+
Vary:
|
60
|
+
- Origin,Accept-Encoding
|
61
|
+
Transfer-Encoding:
|
62
|
+
- chunked
|
63
|
+
Via:
|
64
|
+
- 1.1 vegur
|
65
|
+
body:
|
66
|
+
encoding: UTF-8
|
67
|
+
string: '{"errors":[{"title":"discharge não pode ficar em branco","status":422,"code":422}]}'
|
68
|
+
recorded_at: Tue, 13 Apr 2021 17:18:48 GMT
|
69
|
+
recorded_with: VCR 6.0.0
|
@@ -0,0 +1,84 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://sandbox.boletosimples.com.br/api/v1/discharges
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: "-------------RubyMultipartPost-b54f557c3434e9dd5ea8f333d6da7fa3\r\nContent-Disposition:
|
9
|
+
form-data; name=\"discharge[file]\"; filename=\"discharge.RET\"\r\nContent-Length:
|
10
|
+
1206\r\nContent-Type: text/plain\r\nContent-Transfer-Encoding: binary\r\n\r\n02RETORNO01COBRANCA
|
11
|
+
\ 16511300049999999999 SISTEMAS S.A 033SANTANDER 20032000000000009483012
|
12
|
+
\ 325000001\r\n1027879661300014165199000999990009999
|
13
|
+
\ 04958535 510200320495853
|
14
|
+
\ 0495853500 12111900000000300350331651901000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
15
|
+
N 200320 SOLUCOES DIGITAIS L 00000000000000000000000000000000000000000C
|
16
|
+
\ 325000002\r\n9201033 000025050000053763329700000518 000000000000000000000000000000
|
17
|
+
\ 000000000000000000000000000000 325000632\r\n\r\n-------------RubyMultipartPost-b54f557c3434e9dd5ea8f333d6da7fa3--\r\n"
|
18
|
+
headers:
|
19
|
+
User-Agent:
|
20
|
+
- email@minhaempresa.com.br
|
21
|
+
Authorization:
|
22
|
+
- Bearer BOLETOSIMPLES_API_TOKEN
|
23
|
+
Content-Type:
|
24
|
+
- multipart/form-data; boundary=-----------RubyMultipartPost-b54f557c3434e9dd5ea8f333d6da7fa3
|
25
|
+
Content-Length:
|
26
|
+
- '1507'
|
27
|
+
Accept:
|
28
|
+
- application/json
|
29
|
+
Accept-Encoding:
|
30
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
31
|
+
response:
|
32
|
+
status:
|
33
|
+
code: 201
|
34
|
+
message: Created
|
35
|
+
headers:
|
36
|
+
Server:
|
37
|
+
- Cowboy
|
38
|
+
Connection:
|
39
|
+
- keep-alive
|
40
|
+
X-Frame-Options:
|
41
|
+
- DENY
|
42
|
+
X-Xss-Protection:
|
43
|
+
- 1; mode=block
|
44
|
+
X-Content-Type-Options:
|
45
|
+
- nosniff
|
46
|
+
X-Download-Options:
|
47
|
+
- noopen
|
48
|
+
X-Permitted-Cross-Domain-Policies:
|
49
|
+
- none
|
50
|
+
Referrer-Policy:
|
51
|
+
- strict-origin-when-cross-origin
|
52
|
+
Location:
|
53
|
+
- https://sandbox.boletosimples.com.br/api/v1/discharges/3192
|
54
|
+
Content-Type:
|
55
|
+
- application/json; charset=utf-8
|
56
|
+
X-Ratelimit-Limit:
|
57
|
+
- '1000'
|
58
|
+
X-Ratelimit-Remaining:
|
59
|
+
- '983'
|
60
|
+
Etag:
|
61
|
+
- W/"e077f7fad4f8c1d2e95d90396adb0b16"
|
62
|
+
Cache-Control:
|
63
|
+
- max-age=0, private, must-revalidate
|
64
|
+
X-Request-Id:
|
65
|
+
- 797fe79a-7db2-4e07-86a7-0e05dd8945be
|
66
|
+
X-Runtime:
|
67
|
+
- '0.076282'
|
68
|
+
Date:
|
69
|
+
- Tue, 13 Apr 2021 17:18:46 GMT
|
70
|
+
X-Rack-Cache:
|
71
|
+
- invalidate, pass
|
72
|
+
Strict-Transport-Security:
|
73
|
+
- max-age=2629746
|
74
|
+
Vary:
|
75
|
+
- Origin,Accept-Encoding
|
76
|
+
Transfer-Encoding:
|
77
|
+
- chunked
|
78
|
+
Via:
|
79
|
+
- 1.1 vegur
|
80
|
+
body:
|
81
|
+
encoding: UTF-8
|
82
|
+
string: '{"id":3192,"filename":"discharge.RET","processed_at":null,"created_via_api":true,"status":"unprocessed","bank_billet_account_id":null,"created_via_integration":null,"bank_billet_discharges":[]}'
|
83
|
+
recorded_at: Tue, 13 Apr 2021 17:18:46 GMT
|
84
|
+
recorded_with: VCR 6.0.0
|
@@ -0,0 +1,71 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://sandbox.boletosimples.com.br/api/v1/discharges/3192
|
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
|
+
Location:
|
40
|
+
- https://sandbox.boletosimples.com.br/api/v1/discharges/3192
|
41
|
+
Content-Type:
|
42
|
+
- application/json; charset=utf-8
|
43
|
+
X-Ratelimit-Limit:
|
44
|
+
- '60'
|
45
|
+
X-Ratelimit-Remaining:
|
46
|
+
- '43'
|
47
|
+
Etag:
|
48
|
+
- W/"e077f7fad4f8c1d2e95d90396adb0b16"
|
49
|
+
Cache-Control:
|
50
|
+
- must-revalidate, private, max-age=0
|
51
|
+
X-Request-Id:
|
52
|
+
- d8c0eaf7-ce3b-49f6-a980-8d870931e2ed
|
53
|
+
X-Runtime:
|
54
|
+
- '0.029146'
|
55
|
+
Date:
|
56
|
+
- Tue, 13 Apr 2021 17:18:47 GMT
|
57
|
+
X-Rack-Cache:
|
58
|
+
- miss
|
59
|
+
Strict-Transport-Security:
|
60
|
+
- max-age=2629746
|
61
|
+
Vary:
|
62
|
+
- Origin,Accept-Encoding
|
63
|
+
Transfer-Encoding:
|
64
|
+
- chunked
|
65
|
+
Via:
|
66
|
+
- 1.1 vegur
|
67
|
+
body:
|
68
|
+
encoding: UTF-8
|
69
|
+
string: '{"id":3192,"filename":"discharge.RET","processed_at":null,"created_via_api":true,"status":"unprocessed","bank_billet_account_id":null,"created_via_integration":null,"bank_billet_discharges":[]}'
|
70
|
+
recorded_at: Tue, 13 Apr 2021 17:18:47 GMT
|
71
|
+
recorded_with: VCR 6.0.0
|
@@ -2,75 +2,72 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sandbox.boletosimples.com.br/api/v1/email_deliveries
|
5
|
+
uri: https://sandbox.boletosimples.com.br/api/v1/email_deliveries
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
-
|
11
|
+
- email@minhaempresa.com.br
|
12
12
|
Authorization:
|
13
|
-
-
|
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
|
25
|
-
|
26
|
-
-
|
27
|
-
Transfer-Encoding:
|
28
|
-
- chunked
|
29
|
-
Status:
|
30
|
-
- 200 OK
|
31
|
-
Cache-Control:
|
32
|
-
- must-revalidate, private, max-age=0
|
33
|
-
Date:
|
34
|
-
- Fri, 14 Dec 2018 19:44:02 GMT
|
35
|
-
Vary:
|
36
|
-
- Origin,Accept-Encoding
|
37
|
-
Strict-Transport-Security:
|
38
|
-
- max-age=2629746
|
39
|
-
Referrer-Policy:
|
40
|
-
- strict-origin-when-cross-origin
|
41
|
-
X-Permitted-Cross-Domain-Policies:
|
42
|
-
- none
|
27
|
+
X-Frame-Options:
|
28
|
+
- DENY
|
43
29
|
X-Xss-Protection:
|
44
30
|
- 1; mode=block
|
45
|
-
X-
|
46
|
-
-
|
47
|
-
Link:
|
48
|
-
- <https://sandbox.boletosimples.com.br/api/v1/email_deliveries?access_token=BOLETOSIMPLES_ACCESS_TOKEN&page=0>;
|
49
|
-
rel="last", <https://sandbox.boletosimples.com.br/api/v1/email_deliveries?access_token=BOLETOSIMPLES_ACCESS_TOKEN&page=2>;
|
50
|
-
rel="next"
|
31
|
+
X-Content-Type-Options:
|
32
|
+
- nosniff
|
51
33
|
X-Download-Options:
|
52
34
|
- noopen
|
53
|
-
|
54
|
-
-
|
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
|
+
- '34'
|
55
49
|
Etag:
|
56
50
|
- W/"4f53cda18c2baa0c0354bb5f9a3ecbe5"
|
57
|
-
|
58
|
-
-
|
51
|
+
Cache-Control:
|
52
|
+
- must-revalidate, private, max-age=0
|
53
|
+
X-Request-Id:
|
54
|
+
- 13cbd42f-95e9-4bd2-8fa8-e3b418ce23d6
|
59
55
|
X-Runtime:
|
60
|
-
- '0.
|
61
|
-
|
62
|
-
-
|
56
|
+
- '0.032018'
|
57
|
+
Date:
|
58
|
+
- Tue, 13 Apr 2021 17:19:03 GMT
|
63
59
|
X-Rack-Cache:
|
64
60
|
- miss
|
65
|
-
|
66
|
-
-
|
67
|
-
|
68
|
-
-
|
61
|
+
Strict-Transport-Security:
|
62
|
+
- max-age=2629746
|
63
|
+
Vary:
|
64
|
+
- Origin,Accept-Encoding
|
65
|
+
Transfer-Encoding:
|
66
|
+
- chunked
|
69
67
|
Via:
|
70
68
|
- 1.1 vegur
|
71
69
|
body:
|
72
70
|
encoding: UTF-8
|
73
71
|
string: "[]"
|
74
|
-
|
75
|
-
|
76
|
-
recorded_with: VCR 4.0.0
|
72
|
+
recorded_at: Tue, 13 Apr 2021 17:19:03 GMT
|
73
|
+
recorded_with: VCR 6.0.0
|
@@ -2,196 +2,520 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sandbox.boletosimples.com.br/api/v1/events
|
5
|
+
uri: https://sandbox.boletosimples.com.br/api/v1/events
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
-
|
11
|
+
- email@minhaempresa.com.br
|
12
12
|
Authorization:
|
13
|
-
-
|
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/events?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
|
-
- '
|
35
|
-
Date:
|
36
|
-
- Mon, 24 Aug 2015 18:10:09 GMT
|
37
|
-
Strict-Transport-Security:
|
38
|
-
- max-age=2592000
|
48
|
+
- '60'
|
39
49
|
X-Ratelimit-Remaining:
|
40
|
-
- '
|
41
|
-
Vary:
|
42
|
-
- Accept-Encoding
|
43
|
-
X-Request-Id:
|
44
|
-
- 125f2efb-ea36-479d-bca9-bca1de938e20
|
45
|
-
Link:
|
46
|
-
- <https://sandbox.boletosimples.com.br/api/v1/events?access_token=BOLETOSIMPLES_ACCESS_TOKEN&page=4>;
|
47
|
-
rel="last", <https://sandbox.boletosimples.com.br/api/v1/events?access_token=BOLETOSIMPLES_ACCESS_TOKEN&page=2>;
|
48
|
-
rel="next"
|
49
|
-
Total:
|
50
|
-
- '89'
|
50
|
+
- '53'
|
51
51
|
Etag:
|
52
|
-
- W/"
|
52
|
+
- W/"2e73e4980a35e3469b130e08fc0679a8"
|
53
|
+
Cache-Control:
|
54
|
+
- must-revalidate, private, max-age=0
|
55
|
+
X-Request-Id:
|
56
|
+
- 25f0804b-a281-4a77-96db-e15e6d6b715e
|
53
57
|
X-Runtime:
|
54
|
-
- '0.
|
58
|
+
- '0.167597'
|
59
|
+
Date:
|
60
|
+
- Tue, 13 Apr 2021 17:18:28 GMT
|
55
61
|
X-Rack-Cache:
|
56
62
|
- miss
|
57
|
-
|
58
|
-
-
|
59
|
-
|
60
|
-
-
|
63
|
+
Strict-Transport-Security:
|
64
|
+
- max-age=2629746
|
65
|
+
Vary:
|
66
|
+
- Origin,Accept-Encoding
|
67
|
+
Transfer-Encoding:
|
68
|
+
- chunked
|
61
69
|
Via:
|
62
70
|
- 1.1 vegur
|
63
71
|
body:
|
64
72
|
encoding: UTF-8
|
65
|
-
string: '[{"id":
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
de
|
139
|
-
|
140
|
-
|
141
|
-
do contrato 0012","status":"opened","shorten_url":"https://bole.to/3/
|
142
|
-
da Silva","customer_cnpj_cpf":"
|
143
|
-
Francisco","customer_zipcode":"
|
144
|
-
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","created_via_api":true,"customer_city_name":"Rio
|
145
|
-
de Janeiro","paid_amount":0.0,"amount":9.01,"url":"https://bole.to/3/
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
Silva"
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
73
|
+
string: '[{"id":1886229,"code":"customer.created","data":{"object":{"id":80822,"city_name":"Rio
|
74
|
+
de Janeiro","person_name":"Maria José","nickname":null,"address":"Rua quinhentos","address_complement":"Sala
|
75
|
+
4","address_number":"111","mobile_number":null,"cnpj_cpf":"01.588.073/0001-09","email":"cliente@example.com","neighborhood":"bairro","phone_number":"2112123434","zipcode":"12312123","mobile_local_code":null,"notes":null,"state":"RJ","created_via_api":true,"email_cc":null,"contact_person":null,"truncated_address":"Rua
|
76
|
+
quinhentos, 111","external_code":null,"tags":[],"tag_list":"","custom_data":null}},"occurred_at":"2021-04-13T11:44:36-03:00","bank_billet_account_id":null,"created_at":"2021-04-13T11:44:36-03:00","updated_at":"2021-04-13T11:44:36-03:00"},{"id":1886228,"code":"bank_billet_remittance.created","data":{"object":{"id":348198,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382350,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
|
77
|
+
de Título","created_at":"2021-04-13T11:44:34-03:00"}},"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":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
|
78
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
79
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
80
|
+
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
|
81
|
+
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
|
82
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
83
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
84
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
85
|
+
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
|
86
|
+
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":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
|
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":[]},"changes":{"status":["generating","opened"],"updated_at":["2021-04-13
|
96
|
+
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":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
|
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=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
|
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: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":1886224,"code":"customer_subscription.updated","data":{"object":{"id":2639,"amount":1120.4,"cycle":"monthly","next_billing":"2021-06-13","end_at":null,"instructions":null,"customer_id":80703,"customer_person_name":"Joao
|
106
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
107
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
108
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
109
|
+
de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"description":"Hospedagem","created_at":"2021-04-13T11:44:24-03:00","updated_at":"2021-04-13T11:44:32-03:00","created_via_api":true,"days_in_advance":7,"bank_billet_account_id":3547,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"email":null,"bank_billet_layout_id":null,"bank_billet_ids":[382350],"notes":null,"payment_count":1,"tags":[],"tag_list":"","prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null},"changes":{"next_billing":["2021-05-13","2021-06-13"],"updated_at":["2021-04-13
|
110
|
+
11:44:24 -0300","2021-04-13 11:44:32 -0300"]}},"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":1886223,"code":"customer_subscription.created","data":{"object":{"id":2639,"amount":1120.4,"cycle":"monthly","next_billing":"2021-05-13","end_at":null,"instructions":null,"customer_id":80703,"customer_person_name":"Joao
|
111
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
112
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
113
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
114
|
+
de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"description":"Hospedagem","created_at":"2021-04-13T11:44:24-03:00","updated_at":"2021-04-13T11:44:24-03:00","created_via_api":true,"days_in_advance":7,"bank_billet_account_id":3547,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"email":null,"bank_billet_layout_id":null,"bank_billet_ids":[],"notes":null,"payment_count":1,"tags":[],"tag_list":"","prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null}},"occurred_at":"2021-04-13T11:44:24-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:24-03:00","updated_at":"2021-04-13T11:44:24-03:00"},{"id":1886222,"code":"bank_billet_discharge.created","data":{"object":{"id":19809,"occurrence":"10","date_of_occurrence":"2020-03-20","discharge_id":3191,"bank_billet_id":null,"occurrence_error":"00","line_parsed":{"cnpj_cpf":"78796613000141","agency_number":"6519","account_number":"90009999","conta_cobranca":"90009999","control_number":"","our_number":"04958535","event_type":"10","paid_at":"2020-03-20","document_number":"495853","error_code":"00","banco_recebedor":"033","agencia_recebedora":"1651","bank_rate":"30","iof":"0","value_rebate":"0","discount":"0","paid_amount":"0","billet_fine":"0","other_credit":"0","credit_at":"2020-03-20","credit_amount":"0"},"line_raw":{"line_raw":"1027879661300014165199000999990009999 04958535 510200320495853 0495853500 12111900000000300350331651901000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
115
|
+
N 200320 SOLUCOES DIGITAIS L 00000000000000000000000000000000000000000C 325000002"},"processed_at":"2021-04-13T11:44:18-03:00","occurrence_detail":"Título
|
116
|
+
Baixado Conforme Instrução Ou Por Título Protestado 11 = Em Ser","occurrence_error_detail":null,"our_occurrence":"2074","bank_billet_account_id":null,"bank_number":"033","created_at":"2021-04-13T11:44:18-03:00","kind":"400"}},"occurred_at":"2021-04-13T11:44:18-03:00","bank_billet_account_id":null,"created_at":"2021-04-13T11:44:20-03:00","updated_at":"2021-04-13T11:44:20-03:00"},{"id":1886221,"code":"discharge.created","data":{"object":{"id":3191,"filename":"discharge.RET","processed_at":null,"created_via_api":true,"status":"unprocessed","bank_billet_account_id":null,"created_via_integration":null,"bank_billet_discharges":[]}},"occurred_at":"2021-04-13T11:44:18-03:00","bank_billet_account_id":null,"created_at":"2021-04-13T11:44:18-03:00","updated_at":"2021-04-13T11:44:18-03:00"},{"id":1886220,"code":"account.updated","data":{"object":{"id":2237,"email":"kivanio+sandbox@boletosimples.com.br","account_type":null,"gender":null,"cpf":null,"address_street_name":null,"address_state":null,"address_neighborhood":null,"address_postal_code":null,"address_number":null,"address_complement":null,"phone_number":null,"first_name":null,"middle_name":null,"last_name":null,"date_of_birth":null,"business_category":null,"business_subcategory":null,"business_website":null,"business_name":null,"business_legal_name":null,"business_type":null,"business_cnpj":null,"address_city_name":null,"full_name":null,"login_url":"https://sandbox.boletosimples.com.br/welcome?email=kivanio%2Bsandbox%40boletosimples.com.br\u0026token=sZoc6rCx59efBPBwg3VN","checkout_url":"http://dev.checkout.boletosimples.com.br:5002/#boletosimples;3eb54694f2d6b1f6f601f5698714111b","mother_name":null,"father_name":null,"account_level":1,"billing_email":null,"configuration":null,"simple_opting":false,"subscription":null},"changes":{"bank_billet_accounts_count":[12,13],"updated_at":["2021-04-13
|
117
|
+
11:39:42 -0300","2021-04-13 11:44:13 -0300"]}},"occurred_at":"2021-04-13T11:44:13-03:00","bank_billet_account_id":null,"created_at":"2021-04-13T11:44:14-03:00","updated_at":"2021-04-13T11:44:14-03:00"},{"id":1886219,"code":"bank_billet_account.created","data":{"object":{"id":3561,"bank_contract_slug":"sicoob-02","next_our_number":1,"agency_number":"4327","agency_digit":"3","account_number":"00003666","account_digit":"8","extra1":"1234567","extra1_digit":null,"extra2":null,"extra2_digit":null,"extra3":null,"beneficiary_name":"XPTO
|
118
|
+
S.A.","beneficiary_cnpj_cpf":"22.622.867/0001-11","beneficiary_address":"Rua
|
119
|
+
S, , - Moema, São Paulo - SP, 04524030","name":"Bancoob/Sicoob 02 CC: 00003666-8
|
120
|
+
1234567","status":"pending","bank_contract":{"bank":{"code":"sicoob","name":"Bancoob/Sicoob","number":"756"},"slug":"sicoob-02","code":"2","sufix":"02","variation":null,"name":"1/02
|
121
|
+
- Simples Sem Registro"},"integration":false,"created_via_api":true,"homologated_at":null,"next_remittance_number":1,"configuration":null,"default":false,"custom_name":"Bancoob/Sicoob
|
122
|
+
02 CC: 3666-8 1234567","kind":"cnab400","beneficiary_address_street":"Rua
|
123
|
+
S","beneficiary_address_street_number":null,"beneficiary_address_complement":null,"beneficiary_address_city":"São
|
124
|
+
Paulo","beneficiary_address_neighborhood":"Moema","beneficiary_address_state":"SP","beneficiary_address_zipcode":"04524030","allow_expiration_on_weekends":false}},"occurred_at":"2021-04-13T11:44:13-03:00","bank_billet_account_id":null,"created_at":"2021-04-13T11:44:13-03:00","updated_at":"2021-04-13T11:44:13-03:00"},{"id":1886218,"code":"bank_billet_remittance.deleted","data":{"object":{"id":348197,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382349,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
|
125
|
+
de Título","created_at":"2021-04-13T11:44:03-03:00"}},"occurred_at":"2021-04-13T11:44:04-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:07-03:00","updated_at":"2021-04-13T11:44:07-03:00"},{"id":1886217,"code":"bank_billet_remittance.created","data":{"object":{"id":348197,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382349,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
|
126
|
+
de Título","created_at":"2021-04-13T11:44:03-03:00"}},"occurred_at":"2021-04-13T11:44:03-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:44:06-03:00","updated_at":"2021-04-13T11:44:06-03:00"},{"id":1886216,"code":"bank_billet.canceled","data":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
|
127
|
+
do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
|
128
|
+
da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
|
129
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
130
|
+
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
|
131
|
+
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
|
132
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
133
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
134
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
135
|
+
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
|
136
|
+
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
|
137
|
+
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":1886215,"code":"bank_billet.updated","data":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
|
138
|
+
do contrato 0012","status":"canceled","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
|
139
|
+
da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
|
140
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
141
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":true,"customer_city_name":"Rio
|
142
|
+
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
|
143
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
144
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
145
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
146
|
+
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
|
147
|
+
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
|
148
|
+
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":1886214,"code":"bank_billet.updated","data":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
|
149
|
+
do contrato 0012","status":"opened","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
|
150
|
+
da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
|
151
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
152
|
+
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
|
153
|
+
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
|
154
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
155
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
156
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
157
|
+
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
|
158
|
+
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
|
159
|
+
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":1886213,"code":"bank_billet.created","data":{"object":{"id":382349,"expire_at":"2022-01-03","paid_at":null,"description":"Despesas
|
160
|
+
do contrato 0012","status":"generating","shorten_url":"https://sandbox.bole.to/3/qzgbqn","customer_person_name":"Joao
|
161
|
+
da Silva","customer_cnpj_cpf":"34.565.715/0001-03","customer_address":"Rua
|
162
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
163
|
+
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
|
164
|
+
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
|
165
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
166
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
167
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
168
|
+
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
|
169
|
+
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":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
|
170
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","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":false,"customer_city_name":"Rio
|
173
|
+
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
|
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/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
|
178
|
+
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
|
179
|
+
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":1886211,"code":"bank_billet_remittance.created","data":{"object":{"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
|
180
|
+
de Título","created_at":"2021-04-13T11:43:57-03:00"}},"occurred_at":"2021-04-13T11:43:57-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":1886210,"code":"installment.generated","data":{"object":{"id":12419,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-16","instructions":null,"customer_id":80703,"description":"Hospedagem","created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:56-03:00","customer_person_name":"Joao
|
181
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
182
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
183
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
184
|
+
de Janeiro","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,"total":3,"bank_billet_account_id":3547,"status":"generated","fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/lkgbzz/carne","bank_billet_ids":[382348,382346,382347],"bank_billets":[{"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
|
185
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
186
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
187
|
+
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
|
188
|
+
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
|
189
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
190
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
191
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
192
|
+
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
|
193
|
+
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},{"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
|
194
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
195
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
196
|
+
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
|
197
|
+
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
|
198
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
199
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
200
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
201
|
+
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
|
202
|
+
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},{"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
|
203
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
204
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
205
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
|
206
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/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
|
207
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
208
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
209
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
210
|
+
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
|
211
|
+
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}],"notes":null,"payment_count":1,"tags":[],"tag_list":"","prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"document_number":null,"document_date":null},"changes":{"status":["processed","generated"],"updated_at":["2021-04-13
|
212
|
+
11:43:53 -0300","2021-04-13 11:43:56 -0300"]}},"occurred_at":"2021-04-13T11:43:56-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":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
|
213
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
214
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
215
|
+
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
|
216
|
+
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
|
217
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
218
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
219
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
220
|
+
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
|
221
|
+
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
|
222
|
+
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":1886208,"code":"bank_billet_remittance.created","data":{"object":{"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
|
223
|
+
de Título","created_at":"2021-04-13T11:43:55-03:00"}},"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":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
|
224
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
225
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
226
|
+
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
|
227
|
+
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
|
228
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
229
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
230
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
231
|
+
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
|
232
|
+
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
|
233
|
+
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":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
|
234
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
235
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
236
|
+
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
|
237
|
+
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
|
238
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
239
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
240
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
241
|
+
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
|
242
|
+
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":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
|
243
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
244
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
245
|
+
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
|
246
|
+
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
|
247
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
248
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
249
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
250
|
+
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
|
251
|
+
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
|
252
|
+
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":1886204,"code":"installment.created","data":{"object":{"id":12419,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-16","instructions":null,"customer_id":80703,"description":"Hospedagem","created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:53-03:00","customer_person_name":"Joao
|
253
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
254
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
255
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
256
|
+
de Janeiro","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,"total":3,"bank_billet_account_id":3547,"status":"processed","fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/lkgbzz/carne","bank_billet_ids":[382347,382348,382346],"bank_billets":[{"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
|
257
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
258
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
259
|
+
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
|
260
|
+
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
|
261
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
262
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
263
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
264
|
+
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
|
265
|
+
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},{"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
|
266
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
267
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
268
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
|
269
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/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
|
270
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
271
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
272
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
273
|
+
em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/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
|
274
|
+
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},{"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
|
275
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
276
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
277
|
+
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
|
278
|
+
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
|
279
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
280
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
281
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
282
|
+
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
|
283
|
+
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}],"notes":null,"payment_count":1,"tags":[],"tag_list":"","prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"document_number":null,"document_date":null}},"occurred_at":"2021-04-13T11:43:51-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":1886203,"code":"installment.processed","data":{"object":{"id":12419,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-16","instructions":null,"customer_id":80703,"description":"Hospedagem","created_at":"2021-04-13T11:43:51-03:00","updated_at":"2021-04-13T11:43:53-03:00","customer_person_name":"Joao
|
284
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
285
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
286
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
287
|
+
de Janeiro","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,"total":3,"bank_billet_account_id":3547,"status":"processed","fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/lkgbzz/carne","bank_billet_ids":[382347,382348,382346],"bank_billets":[{"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
|
288
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
289
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
290
|
+
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
|
291
|
+
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
|
292
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
293
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
294
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
295
|
+
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
|
296
|
+
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},{"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
|
297
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
298
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
299
|
+
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
|
300
|
+
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
|
301
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
302
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
303
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
304
|
+
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
|
305
|
+
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},{"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
|
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/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
|
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/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
|
314
|
+
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}],"notes":null,"payment_count":1,"tags":[],"tag_list":"","prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"document_number":null,"document_date":null},"changes":{"status":["created","processed"],"updated_at":["2021-04-13
|
315
|
+
11:43:51 -0300","2021-04-13 11:43:53 -0300"]}},"occurred_at":"2021-04-13T11:43:53-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":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
|
316
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
317
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
318
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
|
319
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/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
|
320
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
321
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
322
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
323
|
+
em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/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
|
324
|
+
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":1886201,"code":"bank_billet_remittance.created","data":{"object":{"id":348194,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382346,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
|
325
|
+
de Título","created_at":"2021-04-13T11:43:53-03:00"}},"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":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
|
326
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
327
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
328
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
|
329
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/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
|
330
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
331
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
332
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
333
|
+
em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/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
|
334
|
+
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":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
|
335
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
336
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
337
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
|
338
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/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
|
339
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
340
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
341
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
342
|
+
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
|
343
|
+
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
|
344
|
+
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":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
|
345
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
346
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
347
|
+
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
|
348
|
+
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
|
349
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
350
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
351
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
352
|
+
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
|
353
|
+
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":1886197,"code":"customer.created","data":{"object":{"id":80821,"city_name":"Rio
|
354
|
+
de Janeiro","person_name":"Maria José","nickname":null,"address":"Rua quinhentos","address_complement":"Sala
|
355
|
+
4","address_number":"111","mobile_number":null,"cnpj_cpf":"74.286.849/0001-00","email":"cliente@example.com","neighborhood":"bairro","phone_number":"2112123434","zipcode":"12312123","mobile_local_code":null,"notes":null,"state":"RJ","created_via_api":true,"email_cc":null,"contact_person":null,"truncated_address":"Rua
|
356
|
+
quinhentos, 111","external_code":null,"tags":[],"tag_list":"","custom_data":null}},"occurred_at":"2021-04-13T11:40:23-03:00","bank_billet_account_id":null,"created_at":"2021-04-13T11:40:28-03:00","updated_at":"2021-04-13T11:40:28-03:00"},{"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
|
357
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
358
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
359
|
+
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
|
360
|
+
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
|
361
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
362
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
363
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
364
|
+
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
|
365
|
+
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
|
366
|
+
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":1886195,"code":"bank_billet_remittance.created","data":{"object":{"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
|
367
|
+
de Título","created_at":"2021-04-13T11:40:22-03:00"}},"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":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
|
368
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
369
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
370
|
+
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
|
371
|
+
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
|
372
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
373
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
374
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
375
|
+
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
|
376
|
+
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
|
377
|
+
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":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
|
378
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
379
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
380
|
+
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
|
381
|
+
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
|
382
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
383
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
384
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
385
|
+
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
|
386
|
+
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":1886192,"code":"customer_subscription.updated","data":{"object":{"id":2638,"amount":1120.4,"cycle":"monthly","next_billing":"2021-06-13","end_at":null,"instructions":null,"customer_id":80703,"customer_person_name":"Joao
|
387
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
388
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
389
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
390
|
+
de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"description":"Hospedagem","created_at":"2021-04-13T11:40:16-03:00","updated_at":"2021-04-13T11:40:18-03:00","created_via_api":true,"days_in_advance":7,"bank_billet_account_id":3547,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"email":null,"bank_billet_layout_id":null,"bank_billet_ids":[382345],"notes":null,"payment_count":1,"tags":[],"tag_list":"","prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null},"changes":{"next_billing":["2021-05-13","2021-06-13"],"updated_at":["2021-04-13
|
391
|
+
11:40:16 -0300","2021-04-13 11:40:18 -0300"]}},"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":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
|
392
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
393
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
394
|
+
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
|
395
|
+
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
|
396
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
397
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
398
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
399
|
+
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
|
400
|
+
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
|
401
|
+
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":1886190,"code":"customer_subscription.created","data":{"object":{"id":2638,"amount":1120.4,"cycle":"monthly","next_billing":"2021-05-13","end_at":null,"instructions":null,"customer_id":80703,"customer_person_name":"Joao
|
402
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
403
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
404
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
405
|
+
de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"description":"Hospedagem","created_at":"2021-04-13T11:40:16-03:00","updated_at":"2021-04-13T11:40:16-03:00","created_via_api":true,"days_in_advance":7,"bank_billet_account_id":3547,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"email":null,"bank_billet_layout_id":null,"bank_billet_ids":[],"notes":null,"payment_count":1,"tags":[],"tag_list":"","prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null}},"occurred_at":"2021-04-13T11:40:16-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:22-03:00","updated_at":"2021-04-13T11:40:22-03:00"},{"id":1886189,"code":"bank_billet_remittance.created","data":{"object":{"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
|
406
|
+
de Título","created_at":"2021-04-13T11:40:16-03:00"}},"occurred_at":"2021-04-13T11:40:16-03:00","bank_billet_account_id":3547,"created_at":"2021-04-13T11:40:22-03:00","updated_at":"2021-04-13T11:40:22-03:00"},{"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
|
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/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
|
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/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
|
415
|
+
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
|
416
|
+
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":1886187,"code":"installment.generated","data":{"object":{"id":12418,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-16","instructions":null,"customer_id":80703,"description":"Hospedagem","created_at":"2021-04-13T11:40:08-03:00","updated_at":"2021-04-13T11:40:13-03:00","customer_person_name":"Joao
|
417
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
418
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
419
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
420
|
+
de Janeiro","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,"total":3,"bank_billet_account_id":3547,"status":"generated","fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/zdbnwz/carne","bank_billet_ids":[382342,382344,382343],"bank_billets":[{"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
|
421
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
422
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
423
|
+
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
|
424
|
+
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
|
425
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
426
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
427
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
428
|
+
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
|
429
|
+
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},{"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
|
430
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
431
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
432
|
+
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
|
433
|
+
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
|
434
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
435
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
436
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
437
|
+
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
|
438
|
+
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},{"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
|
439
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
440
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
441
|
+
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
|
442
|
+
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
|
443
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
444
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
445
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
446
|
+
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
|
447
|
+
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}],"notes":null,"payment_count":1,"tags":[],"tag_list":"","prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"document_number":null,"document_date":null},"changes":{"status":["processed","generated"],"updated_at":["2021-04-13
|
448
|
+
11:40:11 -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:19-03:00","updated_at":"2021-04-13T11:40:19-03:00"},{"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
|
449
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
450
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
451
|
+
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
|
452
|
+
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
|
453
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
454
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
455
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
456
|
+
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
|
457
|
+
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
|
458
|
+
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":1886185,"code":"bank_billet_remittance.created","data":{"object":{"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
|
459
|
+
de Título","created_at":"2021-04-13T11:40:13-03:00"}},"occurred_at":"2021-04-13T11:40:13-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":1886184,"code":"bank_billet_remittance.created","data":{"object":{"id":348190,"our_code":"1001","occurrence":"01","remittance_id":null,"bank_billet_id":382342,"bank_billet_account_id":3547,"processed_at":null,"occurrence_detail":"Entrada
|
460
|
+
de Título","created_at":"2021-04-13T11:40:13-03:00"}},"occurred_at":"2021-04-13T11:40:13-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":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
|
461
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
462
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
463
|
+
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
|
464
|
+
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
|
465
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
466
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
467
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
468
|
+
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
|
469
|
+
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":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
|
470
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
471
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
472
|
+
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
|
473
|
+
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
|
474
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
475
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
476
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
477
|
+
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
|
478
|
+
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
|
479
|
+
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":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
|
480
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
481
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
482
|
+
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
|
483
|
+
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
|
484
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
485
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
486
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
487
|
+
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
|
488
|
+
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":1886180,"code":"installment.created","data":{"object":{"id":12418,"amount":1120.4,"cycle":"monthly","start_at":"2022-09-15","end_at":"2022-11-16","instructions":null,"customer_id":80703,"description":"Hospedagem","created_at":"2021-04-13T11:40:08-03:00","updated_at":"2021-04-13T11:40:11-03:00","customer_person_name":"Joao
|
489
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
490
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
491
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
492
|
+
de Janeiro","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,"total":3,"bank_billet_account_id":3547,"status":"processed","fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"bank_billet_layout_id":null,"url":"https://sandbox.bole.to/3/zdbnwz/carne","bank_billet_ids":[382343,382342,382344],"bank_billets":[{"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
|
493
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
494
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
495
|
+
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
|
496
|
+
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
|
497
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
498
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
499
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
500
|
+
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
|
501
|
+
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},{"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
|
502
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
503
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
504
|
+
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
|
505
|
+
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
|
506
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
507
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
508
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
509
|
+
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
|
510
|
+
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},{"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
|
511
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
512
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
513
|
+
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
|
514
|
+
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
|
515
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
516
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
517
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
518
|
+
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
|
519
|
+
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}],"notes":null,"payment_count":1,"tags":[],"tag_list":"","prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"document_number":null,"document_date":null}},"occurred_at":"2021-04-13T11:40:08-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"}]'
|
520
|
+
recorded_at: Tue, 13 Apr 2021 17:18:28 GMT
|
521
|
+
recorded_with: VCR 6.0.0
|