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
@@ -2,82 +2,448 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://sandbox.boletosimples.com.br/api/v1/installments
|
5
|
+
uri: https://sandbox.boletosimples.com.br/api/v1/installments
|
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
|
-
X-Ratelimit-Limit:
|
34
|
-
- '500'
|
35
|
-
Date:
|
36
|
-
- Mon, 15 Aug 2016 19:16:33 GMT
|
37
|
-
Strict-Transport-Security:
|
38
|
-
- max-age=631138519
|
39
|
-
X-Ratelimit-Remaining:
|
40
|
-
- '490'
|
41
|
-
Vary:
|
42
|
-
- Accept-Encoding
|
43
|
-
X-Permitted-Cross-Domain-Policies:
|
44
|
-
- none
|
27
|
+
X-Frame-Options:
|
28
|
+
- DENY
|
45
29
|
X-Xss-Protection:
|
46
30
|
- 1; mode=block
|
47
|
-
X-
|
48
|
-
-
|
49
|
-
Content-Security-Policy-Report-Only:
|
50
|
-
- 'default-src ''self''; child-src ''self'' www.googleadservices.com googleads.g.doubleclick.net
|
51
|
-
www.google.com; connect-src ws: wss: *.intercom.io ws.pusherapp.com hn.inspectlet.com
|
52
|
-
stats.pusher.com; font-src ''self'' fonts.googleapis.com fonts.gstatic.com
|
53
|
-
data:; img-src ''self'' https: data:; script-src ''self'' static.intercomcdn.com
|
54
|
-
cdn.inspectlet.com widget.intercom.io js.intercomcdn.com js.pusher.com stats.pusher.com
|
55
|
-
zapier.com www.google-analytics.com www.googleadservices.com i.kissmetrics.com
|
56
|
-
doug1izaerwt3.cloudfront.net app.popupdomination.com cdn.ywxi.net www.draw.io;
|
57
|
-
style-src ''self'' fonts.googleapis.com; report-uri https://boletosimples.report-uri.io/r/default/csp/reportOnly'
|
58
|
-
Total:
|
59
|
-
- '1'
|
31
|
+
X-Content-Type-Options:
|
32
|
+
- nosniff
|
60
33
|
X-Download-Options:
|
61
34
|
- noopen
|
35
|
+
X-Permitted-Cross-Domain-Policies:
|
36
|
+
- none
|
37
|
+
Referrer-Policy:
|
38
|
+
- strict-origin-when-cross-origin
|
39
|
+
Per-Page:
|
40
|
+
- '50'
|
41
|
+
Page:
|
42
|
+
- ''
|
43
|
+
Content-Type:
|
44
|
+
- application/json; charset=utf-8
|
45
|
+
X-Ratelimit-Limit:
|
46
|
+
- '60'
|
47
|
+
X-Ratelimit-Remaining:
|
48
|
+
- '44'
|
62
49
|
Etag:
|
63
|
-
- W/"
|
50
|
+
- W/"3d5c942823931afed388c8629ad82cdb"
|
51
|
+
Cache-Control:
|
52
|
+
- must-revalidate, private, max-age=0
|
53
|
+
X-Request-Id:
|
54
|
+
- 6f1c379f-4ee6-4492-8a96-1ccf2036b977
|
64
55
|
X-Runtime:
|
65
|
-
- '0.
|
66
|
-
|
67
|
-
-
|
68
|
-
X-Content-Type-Options:
|
69
|
-
- nosniff
|
56
|
+
- '0.152345'
|
57
|
+
Date:
|
58
|
+
- Tue, 13 Apr 2021 17:18:44 GMT
|
70
59
|
X-Rack-Cache:
|
71
60
|
- miss
|
72
|
-
|
73
|
-
-
|
74
|
-
|
75
|
-
-
|
61
|
+
Strict-Transport-Security:
|
62
|
+
- max-age=2629746
|
63
|
+
Vary:
|
64
|
+
- Origin,Accept-Encoding
|
65
|
+
Transfer-Encoding:
|
66
|
+
- chunked
|
76
67
|
Via:
|
77
68
|
- 1.1 vegur
|
78
69
|
body:
|
79
70
|
encoding: UTF-8
|
80
|
-
string: '[{"id":
|
81
|
-
|
82
|
-
|
83
|
-
|
71
|
+
string: '[{"id":12421,"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-13T14:18:42-03:00","updated_at":"2021-04-13T14:18:42-03:00","customer_person_name":"Joao
|
72
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
73
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
74
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
75
|
+
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":"created","fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_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":null,"bank_billet_ids":[],"bank_billets":[],"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},{"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
|
76
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
77
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
78
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
79
|
+
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":[382346,382347,382348],"bank_billets":[{"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
|
80
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
81
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
82
|
+
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
|
83
|
+
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
|
84
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
85
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
86
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
87
|
+
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
|
88
|
+
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
|
89
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
90
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
91
|
+
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
|
92
|
+
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
|
93
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
94
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
95
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
96
|
+
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
|
97
|
+
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},{"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
|
98
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
99
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
100
|
+
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
|
101
|
+
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
|
102
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
103
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
104
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
105
|
+
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
|
106
|
+
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}],"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},{"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
|
107
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
108
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
109
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
110
|
+
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,382343,382344],"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
|
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_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
|
114
|
+
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
|
115
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
116
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
117
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
118
|
+
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
|
119
|
+
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":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
|
120
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
121
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
122
|
+
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
|
123
|
+
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
|
124
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
125
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
126
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
127
|
+
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
|
128
|
+
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},{"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
|
129
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
130
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
131
|
+
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
|
132
|
+
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
|
133
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
134
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
135
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
136
|
+
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
|
137
|
+
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}],"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},{"id":12417,"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:38:04-03:00","updated_at":"2021-04-13T11:38:07-03:00","customer_person_name":"Joao
|
138
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
139
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
140
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
141
|
+
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/ojkzgw/carne","bank_billet_ids":[382335,382336,382338],"bank_billets":[{"id":382335,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ojkzgw","customer_person_name":"Joao
|
142
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
143
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
144
|
+
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
|
145
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkzgw","formats":{"default":"https://sandbox.bole.to/3/ojkzgw","png":"https://sandbox.bole.to/3/ojkzgw.png?r=1618324684","pdf":"https://sandbox.bole.to/3/ojkzgw.pdf?r=1618324684","boleto_hibrido":"https://sandbox.bole.to/3/ojkzgw/boleto_hibrido?r=1618324684","boleto_pix":"https://sandbox.bole.to/3/ojkzgw/boleto_pix?r=1618324684","barcode":"https://sandbox.bole.to/3/ojkzgw/barcode","envelope":"https://sandbox.bole.to/3/ojkzgw/envelope","letter":"https://sandbox.bole.to/3/ojkzgw/letter","line":"https://sandbox.bole.to/3/ojkzgw/line","recibo":"https://sandbox.bole.to/3/ojkzgw/recibo","carne":"https://sandbox.bole.to/3/ojkzgw/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
|
146
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
147
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
148
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
149
|
+
em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000054-9","processed_our_number_raw":"109000000549","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
|
150
|
+
00005.492335 21231.200003 9 91090000112040","our_number":"00000054","customer_subscription_id":null,"installment_number":1,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/ojkzgw/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:04-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34199910900001120401090000005492332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null},{"id":382336,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/vxovlg","customer_person_name":"Joao
|
151
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
152
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
153
|
+
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
|
154
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxovlg","formats":{"default":"https://sandbox.bole.to/3/vxovlg","png":"https://sandbox.bole.to/3/vxovlg.png?r=1618324685","pdf":"https://sandbox.bole.to/3/vxovlg.pdf?r=1618324685","boleto_hibrido":"https://sandbox.bole.to/3/vxovlg/boleto_hibrido?r=1618324685","boleto_pix":"https://sandbox.bole.to/3/vxovlg/boleto_pix?r=1618324685","barcode":"https://sandbox.bole.to/3/vxovlg/barcode","envelope":"https://sandbox.bole.to/3/vxovlg/envelope","letter":"https://sandbox.bole.to/3/vxovlg/letter","line":"https://sandbox.bole.to/3/vxovlg/line","recibo":"https://sandbox.bole.to/3/vxovlg/recibo","carne":"https://sandbox.bole.to/3/vxovlg/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
|
155
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
156
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
157
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
158
|
+
em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000055-6","processed_our_number_raw":"109000000556","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
|
159
|
+
00005.562335 21231.200003 5 91410000112040","our_number":"00000055","customer_subscription_id":null,"installment_number":2,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/vxovlg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:04-03:00","updated_at":"2021-04-13T11:38:05-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195914100001120401090000005562332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null},{"id":382338,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/wkvxge","customer_person_name":"Joao
|
160
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
161
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
162
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
|
163
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvxge","formats":{"default":"https://sandbox.bole.to/3/wkvxge","png":"https://sandbox.bole.to/3/wkvxge.png?r=1618324686","pdf":"https://sandbox.bole.to/3/wkvxge.pdf?r=1618324686","boleto_hibrido":"https://sandbox.bole.to/3/wkvxge/boleto_hibrido?r=1618324686","boleto_pix":"https://sandbox.bole.to/3/wkvxge/boleto_pix?r=1618324686","barcode":"https://sandbox.bole.to/3/wkvxge/barcode","envelope":"https://sandbox.bole.to/3/wkvxge/envelope","letter":"https://sandbox.bole.to/3/wkvxge/letter","line":"https://sandbox.bole.to/3/wkvxge/line","recibo":"https://sandbox.bole.to/3/wkvxge/recibo","carne":"https://sandbox.bole.to/3/wkvxge/carne"},"meta":null,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"discount_limit_date":null,"discount_value":null,"discount_percentage":null,"days_for_revoke":null,"notes":null,"payment_count":1,"bank_billet_account_id":3547,"beneficiary_name":"J
|
164
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
165
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
166
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
167
|
+
em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000056-4","processed_our_number_raw":"109000000564","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
|
168
|
+
00005.642335 21231.200003 4 91710000112040","our_number":"00000056","customer_subscription_id":null,"installment_number":3,"installment_id":12417,"carne_url":"https://sandbox.bole.to/3/wkvxge/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:38:05-03:00","updated_at":"2021-04-13T11:38:06-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34194917100001120401090000005642332123120000","registered_at":null,"prevent_registration":false,"customer_id":80703,"control_number":null,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_discount":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"split_payment":false,"dispatch_type":1,"charge_type":1,"custom_data":null}],"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},{"id":12416,"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:35:22-03:00","updated_at":"2021-04-13T11:35:25-03:00","customer_person_name":"Joao
|
169
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
170
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
171
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
172
|
+
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/lkgbjz/carne","bank_billet_ids":[382330,382331,382329],"bank_billets":[{"id":382330,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/jzdxwq","customer_person_name":"Joao
|
173
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
174
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
175
|
+
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
|
176
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/jzdxwq","formats":{"default":"https://sandbox.bole.to/3/jzdxwq","png":"https://sandbox.bole.to/3/jzdxwq.png?r=1618324524","pdf":"https://sandbox.bole.to/3/jzdxwq.pdf?r=1618324524","boleto_hibrido":"https://sandbox.bole.to/3/jzdxwq/boleto_hibrido?r=1618324524","boleto_pix":"https://sandbox.bole.to/3/jzdxwq/boleto_pix?r=1618324524","barcode":"https://sandbox.bole.to/3/jzdxwq/barcode","envelope":"https://sandbox.bole.to/3/jzdxwq/envelope","letter":"https://sandbox.bole.to/3/jzdxwq/letter","line":"https://sandbox.bole.to/3/jzdxwq/line","recibo":"https://sandbox.bole.to/3/jzdxwq/recibo","carne":"https://sandbox.bole.to/3/jzdxwq/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
|
177
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
178
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
179
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
180
|
+
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/00000050-7","processed_our_number_raw":"109000000507","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
|
181
|
+
00005.072335 21231.200003 5 91410000112040","our_number":"00000050","customer_subscription_id":null,"installment_number":2,"installment_id":12416,"carne_url":"https://sandbox.bole.to/3/jzdxwq/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:22-03:00","updated_at":"2021-04-13T11:35:24-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34195914100001120401090000005072332123120000","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":382331,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/gqwegm","customer_person_name":"Joao
|
182
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
183
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
184
|
+
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
|
185
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/gqwegm","formats":{"default":"https://sandbox.bole.to/3/gqwegm","png":"https://sandbox.bole.to/3/gqwegm.png?r=1618324525","pdf":"https://sandbox.bole.to/3/gqwegm.pdf?r=1618324525","boleto_hibrido":"https://sandbox.bole.to/3/gqwegm/boleto_hibrido?r=1618324525","boleto_pix":"https://sandbox.bole.to/3/gqwegm/boleto_pix?r=1618324525","barcode":"https://sandbox.bole.to/3/gqwegm/barcode","envelope":"https://sandbox.bole.to/3/gqwegm/envelope","letter":"https://sandbox.bole.to/3/gqwegm/letter","line":"https://sandbox.bole.to/3/gqwegm/line","recibo":"https://sandbox.bole.to/3/gqwegm/recibo","carne":"https://sandbox.bole.to/3/gqwegm/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
|
186
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
187
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
188
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
189
|
+
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/00000051-5","processed_our_number_raw":"109000000515","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
|
190
|
+
00005.152335 21231.200003 4 91710000112040","our_number":"00000051","customer_subscription_id":null,"installment_number":3,"installment_id":12416,"carne_url":"https://sandbox.bole.to/3/gqwegm/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:24-03:00","updated_at":"2021-04-13T11:35:25-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":"34194917100001120401090000005152332123120000","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":382329,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/lkgbjz","customer_person_name":"Joao
|
191
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
192
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
193
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_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
|
194
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgbjz","formats":{"default":"https://sandbox.bole.to/3/lkgbjz","png":"https://sandbox.bole.to/3/lkgbjz.png?r=1618324523","pdf":"https://sandbox.bole.to/3/lkgbjz.pdf?r=1618324523","boleto_hibrido":"https://sandbox.bole.to/3/lkgbjz/boleto_hibrido?r=1618324523","boleto_pix":"https://sandbox.bole.to/3/lkgbjz/boleto_pix?r=1618324523","barcode":"https://sandbox.bole.to/3/lkgbjz/barcode","envelope":"https://sandbox.bole.to/3/lkgbjz/envelope","letter":"https://sandbox.bole.to/3/lkgbjz/letter","line":"https://sandbox.bole.to/3/lkgbjz/line","recibo":"https://sandbox.bole.to/3/lkgbjz/recibo","carne":"https://sandbox.bole.to/3/lkgbjz/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
|
195
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
196
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
197
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
198
|
+
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/00000049-9","processed_our_number_raw":"109000000499","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
|
199
|
+
00004.992335 21231.200003 1 91090000112040","our_number":"00000049","customer_subscription_id":null,"installment_number":1,"installment_id":12416,"carne_url":"https://sandbox.bole.to/3/lkgbjz/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:35:22-03:00","updated_at":"2021-04-13T11:35:23-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":"34191910900001120401090000004992332123120000","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},{"id":12415,"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:26:38-03:00","updated_at":"2021-04-13T11:26:41-03:00","customer_person_name":"Joao
|
200
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
201
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
202
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
203
|
+
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/rzgyky/carne","bank_billet_ids":[382326,382327,382328],"bank_billets":[{"id":382326,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/rzgyky","customer_person_name":"Joao
|
204
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
205
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
206
|
+
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
|
207
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/rzgyky","formats":{"default":"https://sandbox.bole.to/3/rzgyky","png":"https://sandbox.bole.to/3/rzgyky.png?r=1618323999","pdf":"https://sandbox.bole.to/3/rzgyky.pdf?r=1618323999","boleto_hibrido":"https://sandbox.bole.to/3/rzgyky/boleto_hibrido?r=1618323999","boleto_pix":"https://sandbox.bole.to/3/rzgyky/boleto_pix?r=1618323999","barcode":"https://sandbox.bole.to/3/rzgyky/barcode","envelope":"https://sandbox.bole.to/3/rzgyky/envelope","letter":"https://sandbox.bole.to/3/rzgyky/letter","line":"https://sandbox.bole.to/3/rzgyky/line","recibo":"https://sandbox.bole.to/3/rzgyky/recibo","carne":"https://sandbox.bole.to/3/rzgyky/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
|
208
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
209
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
210
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
211
|
+
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/00000046-5","processed_our_number_raw":"109000000465","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
|
212
|
+
00004.652335 21231.200003 8 91090000112040","our_number":"00000046","customer_subscription_id":null,"installment_number":1,"installment_id":12415,"carne_url":"https://sandbox.bole.to/3/rzgyky/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:26:39-03:00","updated_at":"2021-04-13T11:26:39-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":"34198910900001120401090000004652332123120000","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":382327,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/mkqngo","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/mkqngo","formats":{"default":"https://sandbox.bole.to/3/mkqngo","png":"https://sandbox.bole.to/3/mkqngo.png?r=1618324001","pdf":"https://sandbox.bole.to/3/mkqngo.pdf?r=1618324001","boleto_hibrido":"https://sandbox.bole.to/3/mkqngo/boleto_hibrido?r=1618324001","boleto_pix":"https://sandbox.bole.to/3/mkqngo/boleto_pix?r=1618324001","barcode":"https://sandbox.bole.to/3/mkqngo/barcode","envelope":"https://sandbox.bole.to/3/mkqngo/envelope","letter":"https://sandbox.bole.to/3/mkqngo/letter","line":"https://sandbox.bole.to/3/mkqngo/line","recibo":"https://sandbox.bole.to/3/mkqngo/recibo","carne":"https://sandbox.bole.to/3/mkqngo/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/00000047-3","processed_our_number_raw":"109000000473","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
|
+
00004.732335 21231.200003 8 91410000112040","our_number":"00000047","customer_subscription_id":null,"installment_number":2,"installment_id":12415,"carne_url":"https://sandbox.bole.to/3/mkqngo/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:26:39-03:00","updated_at":"2021-04-13T11:26:41-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":"34198914100001120401090000004732332123120000","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":382328,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ymwbyy","customer_person_name":"Joao
|
222
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
223
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
224
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
|
225
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwbyy","formats":{"default":"https://sandbox.bole.to/3/ymwbyy","png":"https://sandbox.bole.to/3/ymwbyy.png?r=1618324001","pdf":"https://sandbox.bole.to/3/ymwbyy.pdf?r=1618324001","boleto_hibrido":"https://sandbox.bole.to/3/ymwbyy/boleto_hibrido?r=1618324001","boleto_pix":"https://sandbox.bole.to/3/ymwbyy/boleto_pix?r=1618324001","barcode":"https://sandbox.bole.to/3/ymwbyy/barcode","envelope":"https://sandbox.bole.to/3/ymwbyy/envelope","letter":"https://sandbox.bole.to/3/ymwbyy/letter","line":"https://sandbox.bole.to/3/ymwbyy/line","recibo":"https://sandbox.bole.to/3/ymwbyy/recibo","carne":"https://sandbox.bole.to/3/ymwbyy/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
|
226
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
227
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
228
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
229
|
+
em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000048-1","processed_our_number_raw":"109000000481","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
|
230
|
+
00004.812335 21231.200003 7 91710000112040","our_number":"00000048","customer_subscription_id":null,"installment_number":3,"installment_id":12415,"carne_url":"https://sandbox.bole.to/3/ymwbyy/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:26:40-03:00","updated_at":"2021-04-13T11:26:41-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":"34197917100001120401090000004812332123120000","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},{"id":12414,"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:21:41-03:00","updated_at":"2021-04-13T11:21:48-03:00","customer_person_name":"Joao
|
231
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
232
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
233
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
234
|
+
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/vxovzg/carne","bank_billet_ids":[382320,382319,382321],"bank_billets":[{"id":382320,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/xdxwmy","customer_person_name":"Joao
|
235
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
236
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
237
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
|
238
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/xdxwmy","formats":{"default":"https://sandbox.bole.to/3/xdxwmy","png":"https://sandbox.bole.to/3/xdxwmy.png?r=1618323705","pdf":"https://sandbox.bole.to/3/xdxwmy.pdf?r=1618323705","boleto_hibrido":"https://sandbox.bole.to/3/xdxwmy/boleto_hibrido?r=1618323705","boleto_pix":"https://sandbox.bole.to/3/xdxwmy/boleto_pix?r=1618323705","barcode":"https://sandbox.bole.to/3/xdxwmy/barcode","envelope":"https://sandbox.bole.to/3/xdxwmy/envelope","letter":"https://sandbox.bole.to/3/xdxwmy/letter","line":"https://sandbox.bole.to/3/xdxwmy/line","recibo":"https://sandbox.bole.to/3/xdxwmy/recibo","carne":"https://sandbox.bole.to/3/xdxwmy/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
|
239
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
240
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
241
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
242
|
+
em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000040-8","processed_our_number_raw":"109000000408","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
|
243
|
+
00004.082335 21231.200003 7 91410000112040","our_number":"00000040","customer_subscription_id":null,"installment_number":2,"installment_id":12414,"carne_url":"https://sandbox.bole.to/3/xdxwmy/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:21:42-03:00","updated_at":"2021-04-13T11:21:45-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34197914100001120401090000004082332123120000","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":382319,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/vxovzg","customer_person_name":"Joao
|
244
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
245
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
246
|
+
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
|
247
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxovzg","formats":{"default":"https://sandbox.bole.to/3/vxovzg","png":"https://sandbox.bole.to/3/vxovzg.png?r=1618323702","pdf":"https://sandbox.bole.to/3/vxovzg.pdf?r=1618323702","boleto_hibrido":"https://sandbox.bole.to/3/vxovzg/boleto_hibrido?r=1618323702","boleto_pix":"https://sandbox.bole.to/3/vxovzg/boleto_pix?r=1618323702","barcode":"https://sandbox.bole.to/3/vxovzg/barcode","envelope":"https://sandbox.bole.to/3/vxovzg/envelope","letter":"https://sandbox.bole.to/3/vxovzg/letter","line":"https://sandbox.bole.to/3/vxovzg/line","recibo":"https://sandbox.bole.to/3/vxovzg/recibo","carne":"https://sandbox.bole.to/3/vxovzg/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
|
248
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
249
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
250
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
251
|
+
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/00000039-0","processed_our_number_raw":"109000000390","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
|
252
|
+
00003.902335 21231.200003 6 91090000112040","our_number":"00000039","customer_subscription_id":null,"installment_number":1,"installment_id":12414,"carne_url":"https://sandbox.bole.to/3/vxovzg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:21:41-03:00","updated_at":"2021-04-13T11:21:42-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":"34196910900001120401090000003902332123120000","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":382321,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/wkvxre","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_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
|
256
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/wkvxre","formats":{"default":"https://sandbox.bole.to/3/wkvxre","png":"https://sandbox.bole.to/3/wkvxre.png?r=1618323707","pdf":"https://sandbox.bole.to/3/wkvxre.pdf?r=1618323707","boleto_hibrido":"https://sandbox.bole.to/3/wkvxre/boleto_hibrido?r=1618323707","boleto_pix":"https://sandbox.bole.to/3/wkvxre/boleto_pix?r=1618323707","barcode":"https://sandbox.bole.to/3/wkvxre/barcode","envelope":"https://sandbox.bole.to/3/wkvxre/envelope","letter":"https://sandbox.bole.to/3/wkvxre/letter","line":"https://sandbox.bole.to/3/wkvxre/line","recibo":"https://sandbox.bole.to/3/wkvxre/recibo","carne":"https://sandbox.bole.to/3/wkvxre/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
|
257
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
258
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
259
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
260
|
+
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/00000041-6","processed_our_number_raw":"109000000416","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
|
261
|
+
00004.162335 21231.200003 6 91710000112040","our_number":"00000041","customer_subscription_id":null,"installment_number":3,"installment_id":12414,"carne_url":"https://sandbox.bole.to/3/wkvxre/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:21:44-03:00","updated_at":"2021-04-13T11:21:47-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34196917100001120401090000004162332123120000","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},{"id":12413,"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:10:52-03:00","updated_at":"2021-04-13T11:10:58-03:00","customer_person_name":"Joao
|
262
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
263
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
264
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
265
|
+
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/kyzwld/carne","bank_billet_ids":[382316,382317,382318],"bank_billets":[{"id":382316,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/kyzwld","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/kyzwld","formats":{"default":"https://sandbox.bole.to/3/kyzwld","png":"https://sandbox.bole.to/3/kyzwld.png?r=1618323052","pdf":"https://sandbox.bole.to/3/kyzwld.pdf?r=1618323052","boleto_hibrido":"https://sandbox.bole.to/3/kyzwld/boleto_hibrido?r=1618323052","boleto_pix":"https://sandbox.bole.to/3/kyzwld/boleto_pix?r=1618323052","barcode":"https://sandbox.bole.to/3/kyzwld/barcode","envelope":"https://sandbox.bole.to/3/kyzwld/envelope","letter":"https://sandbox.bole.to/3/kyzwld/letter","line":"https://sandbox.bole.to/3/kyzwld/line","recibo":"https://sandbox.bole.to/3/kyzwld/recibo","carne":"https://sandbox.bole.to/3/kyzwld/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/00000036-6","processed_our_number_raw":"109000000366","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
|
+
00003.662335 21231.200003 1 91090000112040","our_number":"00000036","customer_subscription_id":null,"installment_number":1,"installment_id":12413,"carne_url":"https://sandbox.bole.to/3/kyzwld/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:10:52-03:00","updated_at":"2021-04-13T11:10:52-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":"34191910900001120401090000003662332123120000","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":382317,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ervynr","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/ervynr","formats":{"default":"https://sandbox.bole.to/3/ervynr","png":"https://sandbox.bole.to/3/ervynr.png?r=1618323054","pdf":"https://sandbox.bole.to/3/ervynr.pdf?r=1618323054","boleto_hibrido":"https://sandbox.bole.to/3/ervynr/boleto_hibrido?r=1618323054","boleto_pix":"https://sandbox.bole.to/3/ervynr/boleto_pix?r=1618323054","barcode":"https://sandbox.bole.to/3/ervynr/barcode","envelope":"https://sandbox.bole.to/3/ervynr/envelope","letter":"https://sandbox.bole.to/3/ervynr/letter","line":"https://sandbox.bole.to/3/ervynr/line","recibo":"https://sandbox.bole.to/3/ervynr/recibo","carne":"https://sandbox.bole.to/3/ervynr/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/00000037-4","processed_our_number_raw":"109000000374","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
|
+
00003.742335 21231.200003 1 91410000112040","our_number":"00000037","customer_subscription_id":null,"installment_number":2,"installment_id":12413,"carne_url":"https://sandbox.bole.to/3/ervynr/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:10:52-03:00","updated_at":"2021-04-13T11:10: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":"34191914100001120401090000003742332123120000","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":382318,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ojkzow","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_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
|
287
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkzow","formats":{"default":"https://sandbox.bole.to/3/ojkzow","png":"https://sandbox.bole.to/3/ojkzow.png?r=1618323057","pdf":"https://sandbox.bole.to/3/ojkzow.pdf?r=1618323057","boleto_hibrido":"https://sandbox.bole.to/3/ojkzow/boleto_hibrido?r=1618323057","boleto_pix":"https://sandbox.bole.to/3/ojkzow/boleto_pix?r=1618323057","barcode":"https://sandbox.bole.to/3/ojkzow/barcode","envelope":"https://sandbox.bole.to/3/ojkzow/envelope","letter":"https://sandbox.bole.to/3/ojkzow/letter","line":"https://sandbox.bole.to/3/ojkzow/line","recibo":"https://sandbox.bole.to/3/ojkzow/recibo","carne":"https://sandbox.bole.to/3/ojkzow/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
|
288
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
289
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
290
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
291
|
+
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/00000038-2","processed_our_number_raw":"109000000382","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
|
292
|
+
00003.822335 21231.200003 9 91710000112040","our_number":"00000038","customer_subscription_id":null,"installment_number":3,"installment_id":12413,"carne_url":"https://sandbox.bole.to/3/ojkzow/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T11:10:54-03:00","updated_at":"2021-04-13T11:10:57-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":"34199917100001120401090000003822332123120000","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},{"id":12412,"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-13T10:57:38-03:00","updated_at":"2021-04-13T10:57:51-03:00","customer_person_name":"Joao
|
293
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
294
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
295
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
296
|
+
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/bryzky/carne","bank_billet_ids":[382305,382307,382306],"bank_billets":[{"id":382305,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/bryzky","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/bryzky","formats":{"default":"https://sandbox.bole.to/3/bryzky","png":"https://sandbox.bole.to/3/bryzky.png?r=1618322260","pdf":"https://sandbox.bole.to/3/bryzky.pdf?r=1618322260","boleto_hibrido":"https://sandbox.bole.to/3/bryzky/boleto_hibrido?r=1618322260","boleto_pix":"https://sandbox.bole.to/3/bryzky/boleto_pix?r=1618322260","barcode":"https://sandbox.bole.to/3/bryzky/barcode","envelope":"https://sandbox.bole.to/3/bryzky/envelope","letter":"https://sandbox.bole.to/3/bryzky/letter","line":"https://sandbox.bole.to/3/bryzky/line","recibo":"https://sandbox.bole.to/3/bryzky/recibo","carne":"https://sandbox.bole.to/3/bryzky/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/00000030-9","processed_our_number_raw":"109000000309","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
|
+
00003.092335 21231.200003 4 91090000112040","our_number":"00000030","customer_subscription_id":null,"installment_number":1,"installment_id":12412,"carne_url":"https://sandbox.bole.to/3/bryzky/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T10:57:39-03:00","updated_at":"2021-04-13T10:57:40-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":"34194910900001120401090000003092332123120000","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":382307,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/dromnl","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/dromnl","formats":{"default":"https://sandbox.bole.to/3/dromnl","png":"https://sandbox.bole.to/3/dromnl.png?r=1618322269","pdf":"https://sandbox.bole.to/3/dromnl.pdf?r=1618322269","boleto_hibrido":"https://sandbox.bole.to/3/dromnl/boleto_hibrido?r=1618322269","boleto_pix":"https://sandbox.bole.to/3/dromnl/boleto_pix?r=1618322269","barcode":"https://sandbox.bole.to/3/dromnl/barcode","envelope":"https://sandbox.bole.to/3/dromnl/envelope","letter":"https://sandbox.bole.to/3/dromnl/letter","line":"https://sandbox.bole.to/3/dromnl/line","recibo":"https://sandbox.bole.to/3/dromnl/recibo","carne":"https://sandbox.bole.to/3/dromnl/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/00000032-5","processed_our_number_raw":"109000000325","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
|
+
00003.252335 21231.200003 3 91710000112040","our_number":"00000032","customer_subscription_id":null,"installment_number":3,"installment_id":12412,"carne_url":"https://sandbox.bole.to/3/dromnl/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T10:57:42-03:00","updated_at":"2021-04-13T10:57:49-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34193917100001120401090000003252332123120000","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":382306,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/nkgdvn","customer_person_name":"Joao
|
315
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
316
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
317
|
+
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
|
318
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/nkgdvn","formats":{"default":"https://sandbox.bole.to/3/nkgdvn","png":"https://sandbox.bole.to/3/nkgdvn.png?r=1618322262","pdf":"https://sandbox.bole.to/3/nkgdvn.pdf?r=1618322262","boleto_hibrido":"https://sandbox.bole.to/3/nkgdvn/boleto_hibrido?r=1618322262","boleto_pix":"https://sandbox.bole.to/3/nkgdvn/boleto_pix?r=1618322262","barcode":"https://sandbox.bole.to/3/nkgdvn/barcode","envelope":"https://sandbox.bole.to/3/nkgdvn/envelope","letter":"https://sandbox.bole.to/3/nkgdvn/letter","line":"https://sandbox.bole.to/3/nkgdvn/line","recibo":"https://sandbox.bole.to/3/nkgdvn/recibo","carne":"https://sandbox.bole.to/3/nkgdvn/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
|
319
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
320
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
321
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
322
|
+
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/00000031-7","processed_our_number_raw":"109000000317","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
|
323
|
+
00003.172335 21231.200003 4 91410000112040","our_number":"00000031","customer_subscription_id":null,"installment_number":2,"installment_id":12412,"carne_url":"https://sandbox.bole.to/3/nkgdvn/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T10:57:40-03:00","updated_at":"2021-04-13T10:57:42-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":"34194914100001120401090000003172332123120000","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},{"id":12411,"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-13T10:55:08-03:00","updated_at":"2021-04-13T10:55:13-03:00","customer_person_name":"Joao
|
324
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
325
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
326
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
327
|
+
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/ervydr/carne","bank_billet_ids":[382300,382301,382302],"bank_billets":[{"id":382300,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ervydr","customer_person_name":"Joao
|
328
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
329
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
330
|
+
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
|
331
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ervydr","formats":{"default":"https://sandbox.bole.to/3/ervydr","png":"https://sandbox.bole.to/3/ervydr.png?r=1618322109","pdf":"https://sandbox.bole.to/3/ervydr.pdf?r=1618322109","boleto_hibrido":"https://sandbox.bole.to/3/ervydr/boleto_hibrido?r=1618322109","boleto_pix":"https://sandbox.bole.to/3/ervydr/boleto_pix?r=1618322109","barcode":"https://sandbox.bole.to/3/ervydr/barcode","envelope":"https://sandbox.bole.to/3/ervydr/envelope","letter":"https://sandbox.bole.to/3/ervydr/letter","line":"https://sandbox.bole.to/3/ervydr/line","recibo":"https://sandbox.bole.to/3/ervydr/recibo","carne":"https://sandbox.bole.to/3/ervydr/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
|
332
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
333
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
334
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
335
|
+
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/00000025-9","processed_our_number_raw":"109000000259","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
|
336
|
+
00002.592335 21231.200003 6 91090000112040","our_number":"00000025","customer_subscription_id":null,"installment_number":1,"installment_id":12411,"carne_url":"https://sandbox.bole.to/3/ervydr/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T10:55:08-03:00","updated_at":"2021-04-13T10:55: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":"34196910900001120401090000002592332123120000","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":382301,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ojkzxw","customer_person_name":"Joao
|
337
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
338
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
339
|
+
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
|
340
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ojkzxw","formats":{"default":"https://sandbox.bole.to/3/ojkzxw","png":"https://sandbox.bole.to/3/ojkzxw.png?r=1618322110","pdf":"https://sandbox.bole.to/3/ojkzxw.pdf?r=1618322110","boleto_hibrido":"https://sandbox.bole.to/3/ojkzxw/boleto_hibrido?r=1618322110","boleto_pix":"https://sandbox.bole.to/3/ojkzxw/boleto_pix?r=1618322110","barcode":"https://sandbox.bole.to/3/ojkzxw/barcode","envelope":"https://sandbox.bole.to/3/ojkzxw/envelope","letter":"https://sandbox.bole.to/3/ojkzxw/letter","line":"https://sandbox.bole.to/3/ojkzxw/line","recibo":"https://sandbox.bole.to/3/ojkzxw/recibo","carne":"https://sandbox.bole.to/3/ojkzxw/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
|
341
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
342
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
343
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
344
|
+
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/00000026-7","processed_our_number_raw":"109000000267","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
|
345
|
+
00002.672335 21231.200003 6 91410000112040","our_number":"00000026","customer_subscription_id":null,"installment_number":2,"installment_id":12411,"carne_url":"https://sandbox.bole.to/3/ojkzxw/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T10:55:09-03:00","updated_at":"2021-04-13T10:55: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":"34196914100001120401090000002672332123120000","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":382302,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/vxovmg","customer_person_name":"Joao
|
346
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
347
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
348
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"created_via_api":false,"customer_city_name":"Rio
|
349
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/vxovmg","formats":{"default":"https://sandbox.bole.to/3/vxovmg","png":"https://sandbox.bole.to/3/vxovmg.png?r=1618322113","pdf":"https://sandbox.bole.to/3/vxovmg.pdf?r=1618322113","boleto_hibrido":"https://sandbox.bole.to/3/vxovmg/boleto_hibrido?r=1618322113","boleto_pix":"https://sandbox.bole.to/3/vxovmg/boleto_pix?r=1618322113","barcode":"https://sandbox.bole.to/3/vxovmg/barcode","envelope":"https://sandbox.bole.to/3/vxovmg/envelope","letter":"https://sandbox.bole.to/3/vxovmg/letter","line":"https://sandbox.bole.to/3/vxovmg/line","recibo":"https://sandbox.bole.to/3/vxovmg/recibo","carne":"https://sandbox.bole.to/3/vxovmg/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
|
350
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
351
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
352
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
353
|
+
em qualquer banco até a data de vencimento.","instructions":null,"document_date":null,"document_type":"02","document_number":null,"acceptance":"N","processed_our_number":"109/00000027-5","processed_our_number_raw":"109000000275","bank_contract_slug":"itau-bs-109","agency_number":"2332","agency_digit":"3","account_number":"12312","account_digit":"2","extra1":null,"extra1_digit":null,"extra2":null,"extra2_digit":null,"line":"34191.09008
|
354
|
+
00002.752335 21231.200003 5 91710000112040","our_number":"00000027","customer_subscription_id":null,"installment_number":3,"installment_id":12411,"carne_url":"https://sandbox.bole.to/3/vxovmg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T10:55:10-03:00","updated_at":"2021-04-13T10:55: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":"34195917100001120401090000002752332123120000","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},{"id":12410,"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-13T10:00:29-03:00","updated_at":"2021-04-13T10:00:33-03:00","customer_person_name":"Joao
|
355
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
356
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
357
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
358
|
+
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/ymwbbg/carne","bank_billet_ids":[382279,382280,382281],"bank_billets":[{"id":382279,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/ymwbbg","customer_person_name":"Joao
|
359
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
360
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
361
|
+
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
|
362
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwbbg","formats":{"default":"https://sandbox.bole.to/3/ymwbbg","png":"https://sandbox.bole.to/3/ymwbbg.png?r=1618318829","pdf":"https://sandbox.bole.to/3/ymwbbg.pdf?r=1618318829","boleto_hibrido":"https://sandbox.bole.to/3/ymwbbg/boleto_hibrido?r=1618318829","boleto_pix":"https://sandbox.bole.to/3/ymwbbg/boleto_pix?r=1618318829","barcode":"https://sandbox.bole.to/3/ymwbbg/barcode","envelope":"https://sandbox.bole.to/3/ymwbbg/envelope","letter":"https://sandbox.bole.to/3/ymwbbg/letter","line":"https://sandbox.bole.to/3/ymwbbg/line","recibo":"https://sandbox.bole.to/3/ymwbbg/recibo","carne":"https://sandbox.bole.to/3/ymwbbg/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
|
363
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
364
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
365
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
366
|
+
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/00000020-0","processed_our_number_raw":"109000000200","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
|
367
|
+
00002.002335 21231.200003 1 91090000112040","our_number":"00000020","customer_subscription_id":null,"installment_number":1,"installment_id":12410,"carne_url":"https://sandbox.bole.to/3/ymwbbg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T10:00:29-03:00","updated_at":"2021-04-13T10:00:29-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":"34191910900001120401090000002002332123120000","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":382280,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/lkgbbv","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/lkgbbv","formats":{"default":"https://sandbox.bole.to/3/lkgbbv","png":"https://sandbox.bole.to/3/lkgbbv.png?r=1618318832","pdf":"https://sandbox.bole.to/3/lkgbbv.pdf?r=1618318832","boleto_hibrido":"https://sandbox.bole.to/3/lkgbbv/boleto_hibrido?r=1618318832","boleto_pix":"https://sandbox.bole.to/3/lkgbbv/boleto_pix?r=1618318832","barcode":"https://sandbox.bole.to/3/lkgbbv/barcode","envelope":"https://sandbox.bole.to/3/lkgbbv/envelope","letter":"https://sandbox.bole.to/3/lkgbbv/letter","line":"https://sandbox.bole.to/3/lkgbbv/line","recibo":"https://sandbox.bole.to/3/lkgbbv/recibo","carne":"https://sandbox.bole.to/3/lkgbbv/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
|
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/00000021-8","processed_our_number_raw":"109000000218","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
|
+
00002.182335 21231.200003 6 91410000112040","our_number":"00000021","customer_subscription_id":null,"installment_number":2,"installment_id":12410,"carne_url":"https://sandbox.bole.to/3/lkgbbv/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T10:00:29-03:00","updated_at":"2021-04-13T10:00: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":"34196914100001120401090000002182332123120000","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":382281,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/jzdxxe","customer_person_name":"Joao
|
377
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
378
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
379
|
+
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
|
380
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/jzdxxe","formats":{"default":"https://sandbox.bole.to/3/jzdxxe","png":"https://sandbox.bole.to/3/jzdxxe.png?r=1618318833","pdf":"https://sandbox.bole.to/3/jzdxxe.pdf?r=1618318833","boleto_hibrido":"https://sandbox.bole.to/3/jzdxxe/boleto_hibrido?r=1618318833","boleto_pix":"https://sandbox.bole.to/3/jzdxxe/boleto_pix?r=1618318833","barcode":"https://sandbox.bole.to/3/jzdxxe/barcode","envelope":"https://sandbox.bole.to/3/jzdxxe/envelope","letter":"https://sandbox.bole.to/3/jzdxxe/letter","line":"https://sandbox.bole.to/3/jzdxxe/line","recibo":"https://sandbox.bole.to/3/jzdxxe/recibo","carne":"https://sandbox.bole.to/3/jzdxxe/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
|
381
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
382
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
383
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
384
|
+
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/00000022-6","processed_our_number_raw":"109000000226","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
|
385
|
+
00002.262335 21231.200003 5 91710000112040","our_number":"00000022","customer_subscription_id":null,"installment_number":3,"installment_id":12410,"carne_url":"https://sandbox.bole.to/3/jzdxxe/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T10:00:31-03:00","updated_at":"2021-04-13T10:00: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":"34195917100001120401090000002262332123120000","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},{"id":12407,"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-13T09:27:21-03:00","updated_at":"2021-04-13T09:27:24-03:00","customer_person_name":"Joao
|
386
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
387
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
388
|
+
4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
|
389
|
+
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/mkqnzm/carne","bank_billet_ids":[382262,382261,382263],"bank_billets":[{"id":382262,"expire_at":"2022-10-17","paid_at":"2021-04-13","description":"Hospedagem","status":"paid","shorten_url":"https://sandbox.bole.to/3/ymwbdg","customer_person_name":"Joao
|
390
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
391
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
392
|
+
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
|
393
|
+
de Janeiro","paid_amount":1120.4,"amount":1120.4,"url":"https://sandbox.bole.to/3/ymwbdg","formats":{"default":"https://sandbox.bole.to/3/ymwbdg","png":"https://sandbox.bole.to/3/ymwbdg.png?r=1618317030","pdf":"https://sandbox.bole.to/3/ymwbdg.pdf?r=1618317030","boleto_hibrido":"https://sandbox.bole.to/3/ymwbdg/boleto_hibrido?r=1618317030","boleto_pix":"https://sandbox.bole.to/3/ymwbdg/boleto_pix?r=1618317030","barcode":"https://sandbox.bole.to/3/ymwbdg/barcode","envelope":"https://sandbox.bole.to/3/ymwbdg/envelope","letter":"https://sandbox.bole.to/3/ymwbdg/letter","line":"https://sandbox.bole.to/3/ymwbdg/line","recibo":"https://sandbox.bole.to/3/ymwbdg/recibo","carne":"https://sandbox.bole.to/3/ymwbdg/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
|
394
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
395
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
396
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
397
|
+
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/00000017-6","processed_our_number_raw":"109000000176","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
|
398
|
+
00001.762335 21231.200003 3 91410000112040","our_number":"00000017","customer_subscription_id":null,"installment_number":2,"installment_id":12407,"carne_url":"https://sandbox.bole.to/3/ymwbdg/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T09:27:21-03:00","updated_at":"2021-04-13T09:30:30-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34193914100001120401090000001762332123120000","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":382261,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/mkqnzm","customer_person_name":"Joao
|
399
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
400
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
401
|
+
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
|
402
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/mkqnzm","formats":{"default":"https://sandbox.bole.to/3/mkqnzm","png":"https://sandbox.bole.to/3/mkqnzm.png?r=1618316841","pdf":"https://sandbox.bole.to/3/mkqnzm.pdf?r=1618316841","boleto_hibrido":"https://sandbox.bole.to/3/mkqnzm/boleto_hibrido?r=1618316841","boleto_pix":"https://sandbox.bole.to/3/mkqnzm/boleto_pix?r=1618316841","barcode":"https://sandbox.bole.to/3/mkqnzm/barcode","envelope":"https://sandbox.bole.to/3/mkqnzm/envelope","letter":"https://sandbox.bole.to/3/mkqnzm/letter","line":"https://sandbox.bole.to/3/mkqnzm/line","recibo":"https://sandbox.bole.to/3/mkqnzm/recibo","carne":"https://sandbox.bole.to/3/mkqnzm/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
|
403
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
404
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
405
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
406
|
+
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/00000016-8","processed_our_number_raw":"109000000168","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
|
407
|
+
00001.682335 21231.200003 3 91090000112040","our_number":"00000016","customer_subscription_id":null,"installment_number":1,"installment_id":12407,"carne_url":"https://sandbox.bole.to/3/mkqnzm/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T09:27:21-03:00","updated_at":"2021-04-13T09:27:21-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":"34193910900001120401090000001682332123120000","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":382263,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/lkgbnv","customer_person_name":"Joao
|
408
|
+
da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
|
409
|
+
quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
|
410
|
+
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
|
411
|
+
de Janeiro","paid_amount":0.0,"amount":1120.4,"url":"https://sandbox.bole.to/3/lkgbnv","formats":{"default":"https://sandbox.bole.to/3/lkgbnv","png":"https://sandbox.bole.to/3/lkgbnv.png?r=1618316843","pdf":"https://sandbox.bole.to/3/lkgbnv.pdf?r=1618316843","boleto_hibrido":"https://sandbox.bole.to/3/lkgbnv/boleto_hibrido?r=1618316843","boleto_pix":"https://sandbox.bole.to/3/lkgbnv/boleto_pix?r=1618316843","barcode":"https://sandbox.bole.to/3/lkgbnv/barcode","envelope":"https://sandbox.bole.to/3/lkgbnv/envelope","letter":"https://sandbox.bole.to/3/lkgbnv/letter","line":"https://sandbox.bole.to/3/lkgbnv/line","recibo":"https://sandbox.bole.to/3/lkgbnv/recibo","carne":"https://sandbox.bole.to/3/lkgbnv/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
|
412
|
+
Calçados","beneficiary_cnpj_cpf":"74.766.527/0001-68","beneficiary_address":"Praça
|
413
|
+
dos Três Poderes, 171, - Zona Cívico-Administrativa, Brasília - DF, 70165900","beneficiary_assignor_code":"2332
|
414
|
+
/ 12312-0","guarantor_name":null,"guarantor_cnpj_cpf":null,"payment_place":"Pagável
|
415
|
+
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/00000018-4","processed_our_number_raw":"109000000184","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
|
416
|
+
00001.842335 21231.200003 2 91710000112040","our_number":"00000018","customer_subscription_id":null,"installment_number":3,"installment_id":12407,"carne_url":"https://sandbox.bole.to/3/lkgbnv/carne","bank_billet_layout_id":null,"created_at":"2021-04-13T09:27:23-03:00","updated_at":"2021-04-13T09:27:23-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":"34192917100001120401090000001842332123120000","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},{"id":12392,"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-12T11:55:14-03:00","updated_at":"2021-04-12T11:55:18-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/xdxwqz/carne","bank_billet_ids":[382120,382121,382122],"bank_billets":[{"id":382120,"expire_at":"2022-09-15","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/xdxwqz","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/xdxwqz","formats":{"default":"https://sandbox.bole.to/3/xdxwqz","png":"https://sandbox.bole.to/3/xdxwqz.png?r=1618239315","pdf":"https://sandbox.bole.to/3/xdxwqz.pdf?r=1618239315","boleto_hibrido":"https://sandbox.bole.to/3/xdxwqz/boleto_hibrido?r=1618239315","boleto_pix":"https://sandbox.bole.to/3/xdxwqz/boleto_pix?r=1618239315","barcode":"https://sandbox.bole.to/3/xdxwqz/barcode","envelope":"https://sandbox.bole.to/3/xdxwqz/envelope","letter":"https://sandbox.bole.to/3/xdxwqz/letter","line":"https://sandbox.bole.to/3/xdxwqz/line","recibo":"https://sandbox.bole.to/3/xdxwqz/recibo","carne":"https://sandbox.bole.to/3/xdxwqz/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/00000011-9","processed_our_number_raw":"109000000119","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
|
+
00001.192335 21231.200003 3 91090000112040","our_number":"00000011","customer_subscription_id":null,"installment_number":1,"installment_id":12392,"carne_url":"https://sandbox.bole.to/3/xdxwqz/carne","bank_billet_layout_id":null,"created_at":"2021-04-12T11:55:14-03:00","updated_at":"2021-04-12T11:55:15-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34193910900001120401090000001192332123120000","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":382121,"expire_at":"2022-10-17","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/wkvxnb","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/wkvxnb","formats":{"default":"https://sandbox.bole.to/3/wkvxnb","png":"https://sandbox.bole.to/3/wkvxnb.png?r=1618239317","pdf":"https://sandbox.bole.to/3/wkvxnb.pdf?r=1618239317","boleto_hibrido":"https://sandbox.bole.to/3/wkvxnb/boleto_hibrido?r=1618239317","boleto_pix":"https://sandbox.bole.to/3/wkvxnb/boleto_pix?r=1618239317","barcode":"https://sandbox.bole.to/3/wkvxnb/barcode","envelope":"https://sandbox.bole.to/3/wkvxnb/envelope","letter":"https://sandbox.bole.to/3/wkvxnb/letter","line":"https://sandbox.bole.to/3/wkvxnb/line","recibo":"https://sandbox.bole.to/3/wkvxnb/recibo","carne":"https://sandbox.bole.to/3/wkvxnb/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/00000012-7","processed_our_number_raw":"109000000127","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
|
+
00001.272335 21231.200003 3 91410000112040","our_number":"00000012","customer_subscription_id":null,"installment_number":2,"installment_id":12392,"carne_url":"https://sandbox.bole.to/3/wkvxnb/carne","bank_billet_layout_id":null,"created_at":"2021-04-12T11:55:15-03:00","updated_at":"2021-04-12T11:55:17-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34193914100001120401090000001272332123120000","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":382122,"expire_at":"2022-11-16","paid_at":null,"description":"Hospedagem","status":"opened","shorten_url":"https://sandbox.bole.to/3/bryznz","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/bryznz","formats":{"default":"https://sandbox.bole.to/3/bryznz","png":"https://sandbox.bole.to/3/bryznz.png?r=1618239317","pdf":"https://sandbox.bole.to/3/bryznz.pdf?r=1618239317","boleto_hibrido":"https://sandbox.bole.to/3/bryznz/boleto_hibrido?r=1618239317","boleto_pix":"https://sandbox.bole.to/3/bryznz/boleto_pix?r=1618239317","barcode":"https://sandbox.bole.to/3/bryznz/barcode","envelope":"https://sandbox.bole.to/3/bryznz/envelope","letter":"https://sandbox.bole.to/3/bryznz/letter","line":"https://sandbox.bole.to/3/bryznz/line","recibo":"https://sandbox.bole.to/3/bryznz/recibo","carne":"https://sandbox.bole.to/3/bryznz/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/00000013-5","processed_our_number_raw":"109000000135","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
|
+
00001.352335 21231.200003 2 91710000112040","our_number":"00000013","customer_subscription_id":null,"installment_number":3,"installment_id":12392,"carne_url":"https://sandbox.bole.to/3/bryznz/carne","bank_billet_layout_id":null,"created_at":"2021-04-12T11:55:16-03:00","updated_at":"2021-04-12T11:55:17-03:00","tags":[],"tag_list":"","document_type_label":"DM","addons":null,"ignore_email":false,"sue_code":null,"revoke_code":null,"first_instruction":null,"second_instruction":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null,"barcode":"34192917100001120401090000001352332123120000","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}]'
|
448
|
+
recorded_at: Tue, 13 Apr 2021 17:18:44 GMT
|
449
|
+
recorded_with: VCR 6.0.0
|