Sign in

Create Boleto Batch

documented

Create a batch of boletos (path shown in docs).

POST /v1/bank_billets/…Cobrançasno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl 'https://api.kobana.com.br/v1/bank_billet_batches' \
  -X POST \
  -H 'Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -d '{"bank_billet_account_id": "{{$bank_billet_account_id}}", "payments": [ {"amount": {{$payment0_amount}}, "expire_at": "{{$payment0_expire_at}}", "customer_person_name": "{{$payment0_customer_name}}", "customer_cnpj_cpf": "{{$payment0_customer_cpf}}", "description": "{{$payment0_description}}"}, {"amount": {{$payment1_amount}}, "expire_at": "{{$payment1_expire_at}}", "customer_person_name": "{{$payment1_customer_name}}", "customer_cnpj_cpf": "{{$payment1_customer_cpf}}", "description": "{{$payment1_description}}"} ] }'